[DVDnav-discuss] r872 - trunk/libdvdnav/configure2

nicodvb subversion at mplayerhq.hu
Mon Apr 16 00:24:00 CEST 2007


Author: nicodvb
Date: Mon Apr 16 00:24:00 2007
New Revision: 872

Modified:
   trunk/libdvdnav/configure2

Log:
10l: double definition of enable-static/enable-shared that prevented disabling each of them

Modified: trunk/libdvdnav/configure2
==============================================================================
--- trunk/libdvdnav/configure2	(original)
+++ trunk/libdvdnav/configure2	Mon Apr 16 00:24:00 2007
@@ -21,7 +21,6 @@ show_help(){
   exit 1
 }
 
-
 SHARED=yes
 STATIC=yes
 PREFIX=/usr/local/
@@ -34,11 +33,11 @@ for opt do
   ;;
   --enable-shared) SHARED=yes
   ;;
-  --enable-shared) SHARED=no
+  --disable-shared) SHARED=no
   ;;
   --enable-static) STATIC=yes
   ;;
-  --enable-static) STATIC=no
+  --disable-static) STATIC=no
   ;;
   --prefix=*) PREFIX="$optval"
   ;;



More information about the DVDnav-discuss mailing list