[MPlayer-dev-eng] [PATCH] use dvdnav-config to find libdvdnav

Christian Ohm chr.ohm at gmx.net
Sun Jun 16 00:45:50 CEST 2002


hi.

i've made a small patch to configure so it uses dvdnav-config if it's
available to locate libdvdnav.

bye
christian ohm

-- 
There will be big changes for you but you will be happy.
-------------- next part --------------
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.512
diff -u -r1.512 configure
--- configure	15 Jun 2002 10:08:33 -0000	1.512
+++ configure	15 Jun 2002 22:44:09 -0000
@@ -240,6 +240,7 @@
   --with-sdl-config=PATH   path to sdl*-config (e.g.: /opt/bin/sdl-config)
   --with-gtk-config=PATH   path to gtk*-config (e.g.: /opt/bin/gtk-config)
   --with-glib-config=PATH  path to glib*-config (e.g.: /opt/bin/glib-config)
+  --with-dvdnav-config=PATH  path to dvdnav-config
 
 EOF
     exit 0
@@ -1209,6 +1210,9 @@
   --with-glib-config=*)
     _glibconfig=`echo $ac_option | cut -d '=' -f 2`
     ;;
+  --with-dvdnav-config=*)
+    _dvdnavconfig=`echo $ac_option | cut -d '=' -f 2`
+    ;;
   --with-madlibdir=*)
     _ld_mad=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
     ;;
@@ -3057,6 +3061,12 @@
 EOF
   _dvdnav=no
   test -n "$_dvdnavdir" && _legal_dvdnavdir=-L$_dvdnavdir/.libs
+  if test -z "$_dvdnavconfig" ; then
+    if ( dvdnav-config --version ) >/dev/null 2>&1 ; then
+      _dvdnavconfig="dvdnav-config"
+    fi
+  fi
+  test -z "$_dvdnavdir" && test -n "$_dvdnavconfig" && _dvdnavdir=`$_dvdnavconfig --cflags`
   _used_css=
   test "$_dvdkit" = no && _used_css=$_ld_css
   cc_check $_inc_extra -I$_dvdnavdir $_legal_dvdnavdir -ldvdnav $_used_css $_ld_dl && _dvdnav=yes
@@ -3064,7 +3074,13 @@
 if test "$_dvdnav" = yes ; then
   _largefiles=yes
   _def_dvdnav='#define USE_DVDNAV 1'
-  _ld_css="$_ld_css $_legal_dvdnavdir -ldvdnav"
+  if test -n "$_legal_dvdnavdir" ; then
+   _ld_css="$_ld_css $_legal_dvdnavdir -ldvdnav"
+  elif test -n "$_dvdnavconfig" ; then
+   _ld_css="$_ld_css `$_dvdnavconfig --libs`"
+  else
+   _ld_css="$_ld_css -ldvdnav"
+  fi
   if test -n "$_dvdnavdir" ; then
    _inc_extra="$_inc_extra -I$_dvdnavdir"
   fi


More information about the MPlayer-dev-eng mailing list