[mythtv-commits] Ticket #3833: Mythtv should allow linking with -ldca, instead of forced -ldts.

MythTV mythtv at cvs.mythtv.org
Wed Aug 15 19:53:50 UTC 2007


#3833: Mythtv should allow linking with -ldca, instead of forced -ldts.
-----------------------------------------------+----------------------------
 Reporter:  Samuli Suominen <drac at gentoo.org>  |       Owner:  ijr    
     Type:  patch                              |      Status:  new    
 Priority:  trivial                            |   Milestone:  unknown
Component:  mythtv                             |     Version:  unknown
 Severity:  medium                             |     Mlocked:  0      
-----------------------------------------------+----------------------------
 libdts development has stopped, and new name for library is libdca. It's
 API compatible
 with libdts, libdca also installs libdts.pc (same as libdca.pc), dts.h
 (same as dca.h) but does not install libdts, but libdca instead. So
 trivial fix would be to allow linking also with -ldca.

 [1] http://download.videolan.org/pub/videolan/libdca/0.0.5/
 [2] http://www.videolan.org/developers/libdca.html

 Untested / suggested patch:

 --- configure.orig      2007-08-15 19:52:13.000000000 +0300
 +++ configure   2007-08-15 19:55:52.000000000 +0300
 @@ -2322,7 +2322,9 @@
      die "Only one of amr_nb and amr_nb_fixed may be enabled."

  if enabled libdts; then
 -    if has_library libdts_pic; then
 +    if has_library libdca; then
 +        dtslib="-ldca"
 +    elif has_library libdts_pic; then
          dtslib="-ldts_pic"
      elif has_library libdts; then
          dtslib="-ldts"

 (janneg said he will look at this issue, but opening this so we can track
 it more easily.)

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/3833>
MythTV <http://svn.mythtv.org/trac>
MythTV


More information about the mythtv-commits mailing list