[DVDnav-discuss] r1059 - in trunk/libdvdread: Makefile.am configure.ac m4/Makefile.am m4/dvdread.m4 misc/Makefile.am misc/libdvdnav.spec.in src/Makefile.am

nicodvb subversion at mplayerhq.hu
Mon Jun 2 11:27:49 CEST 2008


Author: nicodvb
Date: Mon Jun  2 11:27:49 2008
New Revision: 1059

Log:
fixed building with autoshit

Removed:
   trunk/libdvdread/misc/libdvdnav.spec.in
Modified:
   trunk/libdvdread/Makefile.am
   trunk/libdvdread/configure.ac
   trunk/libdvdread/m4/Makefile.am
   trunk/libdvdread/m4/dvdread.m4
   trunk/libdvdread/misc/Makefile.am
   trunk/libdvdread/src/Makefile.am

Modified: trunk/libdvdread/Makefile.am
==============================================================================
--- trunk/libdvdread/Makefile.am	(original)
+++ trunk/libdvdread/Makefile.am	Mon Jun  2 11:27:49 2008
@@ -2,7 +2,7 @@ include $(top_srcdir)/misc/Makefile.comm
 
 AUTOMAKE_OPTIONS = 1.3
 
-SUBDIRS = src examples doc misc m4
+SUBDIRS = src misc m4
 
 EXTRA_DIST = autogen.sh \
 	     AUTHORS \

Modified: trunk/libdvdread/configure.ac
==============================================================================
--- trunk/libdvdread/configure.ac	(original)
+++ trunk/libdvdread/configure.ac	Mon Jun  2 11:27:49 2008
@@ -1,9 +1,9 @@
 dnl --------------------------------------------------------------
-dnl Configure.ac for libdvdnav
+dnl Configure.ac for libdvdread
 dnl --------------------------------------------------------------
 
 AC_INIT
-AC_CONFIG_SRCDIR([src/dvdnav.c])
+AC_CONFIG_SRCDIR([src/dvd_reader.h])
 
 dnl --------------------------------------------------------------
 dnl Require autoconf version 2.53
@@ -11,26 +11,26 @@ dnl ------------------------------------
 AC_PREREQ(2.53)
 
 dnl --------------------------------------------------------------
-dnl Making releases: DVDNAV_SUB += 1; change DVDNAV_LT_* accordingly
+dnl Making releases: DVDREAD_SUB += 1; change DVDREAD_LT_* accordingly
 dnl --------------------------------------------------------------
-DVDNAV_MAJOR=0
-DVDNAV_MINOR=2
-DVDNAV_SUB=1
-DVDNAV_PRE="cvs"
+DVDREAD_MAJOR=0
+DVDREAD_MINOR=2
+DVDREAD_SUB=1
+DVDREAD_PRE="cvs"
 
-AC_SUBST(DVDNAV_MAJOR)
-AC_SUBST(DVDNAV_MINOR)
-AC_SUBST(DVDNAV_SUB)
+AC_SUBST(DVDREAD_MAJOR)
+AC_SUBST(DVDREAD_MINOR)
+AC_SUBST(DVDREAD_SUB)
 
-dnl The libtool version numbers (DVDNAV_LT_*); Don't even think about faking this!
+dnl The libtool version numbers (DVDREAD_LT_*); Don't even think about faking this!
 dnl 
 dnl immediately before every release do:
 dnl ===================================
 dnl if (the interface is totally unchanged from previous release)
-dnl    DVDNAV_LT_REVISION ++;
+dnl    DVDREAD_LT_REVISION ++;
 dnl else { /* interfaces have been added, removed or changed */
-dnl    DVDNAV_LT_REVISION = 0;
-dnl    DVDNAV_LT_CURRENT ++;
+dnl    DVDREAD_LT_REVISION = 0;
+dnl    DVDREAD_LT_CURRENT ++;
 dnl    if (any interfaces have been _added_ since last release)
 dnl       AGE ++;
 dnl    if (any interfaces have been _removed_ or _incompatibly changed_)
@@ -38,47 +38,47 @@ dnl       AGE = 0;
 dnl }
 dnl 
 dnl If you want to know more about what you are doing, here are some details:
-dnl  * DVDNAV_LT_CURRENT is the current API version
-dnl  * DVDNAV_LT_REVISION is an internal revision number which is increased when the API
+dnl  * DVDREAD_LT_CURRENT is the current API version
+dnl  * DVDREAD_LT_REVISION is an internal revision number which is increased when the API
 dnl    itself did not change
-dnl  * DVDNAV_LT_AGE is the number of previous API versions still supported by this library
+dnl  * DVDREAD_LT_AGE is the number of previous API versions still supported by this library
 dnl  * libtool has its own numbering scheme, because local library numbering schemes
 dnl    are platform dependent
 dnl  * in Linux, the library will be named
-dnl    libname.so.(DVDNAV_LT_CURRENT - DVDNAV_LT_AGE).DVDNAV_LT_AGE.DVDNAV_LT_REVISION
+dnl    libname.so.(DVDREAD_LT_CURRENT - DVDREAD_LT_AGE).DVDREAD_LT_AGE.DVDREAD_LT_REVISION
 
-DVDNAV_LT_CURRENT=5
-DVDNAV_LT_AGE=1
-DVDNAV_LT_REVISION=1
+DVDREAD_LT_CURRENT=5
+DVDREAD_LT_AGE=1
+DVDREAD_LT_REVISION=1
 
-AC_SUBST(DVDNAV_LT_CURRENT)
-AC_SUBST(DVDNAV_LT_AGE)
-AC_SUBST(DVDNAV_LT_REVISION)
+AC_SUBST(DVDREAD_LT_CURRENT)
+AC_SUBST(DVDREAD_LT_AGE)
+AC_SUBST(DVDREAD_LT_REVISION)
 
 PACKAGE="libdvdread"
 RELEASE="1"
-TAR_NAME=$PACKAGE-$DVDNAV_MAJOR.$DVDNAV_MINOR.$DVDNAV_SUB$DVDNAV_PRE
-SPEC_VERSION=$DVDNAV_MAJOR.$DVDNAV_MINOR.$DVDNAV_SUB$DVDNAV_PRE
+TAR_NAME=$PACKAGE-$DVDREAD_MAJOR.$DVDREAD_MINOR.$DVDREAD_SUB$DVDREAD_PRE
+SPEC_VERSION=$DVDREAD_MAJOR.$DVDREAD_MINOR.$DVDREAD_SUB$DVDREAD_PRE
 
 AC_SUBST(TAR_NAME)
 AC_SUBST(SPEC_VERSION)
 AC_SUBST(PACKAGE)
 AC_SUBST(RELEASE)
 
-LIBNAME=libdvdnav$DVDNAV_MAJOR
+LIBNAME=libdvdread$DVDREAD_MAJOR
 AC_SUBST(LIBNAME)
 
 AC_CANONICAL_TARGET
 
-AM_INIT_AUTOMAKE("libdvdnav", $DVDNAV_MAJOR.$DVDNAV_MINOR.$DVDNAV_SUB$DVDNAV_PRE)
+AM_INIT_AUTOMAKE("libdvdread", $DVDREAD_MAJOR.$DVDREAD_MINOR.$DVDREAD_SUB$DVDREAD_PRE)
 
 dnl --------------------------------------------------------------
 dnl Make possible to build for another arch.
 dnl --------------------------------------------------------------
-if test x$DVDNAV_BUILD != "x"; then
-  AC_MSG_RESULT(*** build forced to $DVDNAV_BUILD ***)
-  build=$DVDNAV_BUILD
-  host=$DVDNAV_BUILD
+if test x$DVDREAD_BUILD != "x"; then
+  AC_MSG_RESULT(*** build forced to $DVDREAD_BUILD ***)
+  build=$DVDREAD_BUILD
+  host=$DVDREAD_BUILD
 else
   check_athlon=yes
 fi
@@ -130,26 +130,6 @@ dnl AC_CHECK_TYPES([ptrdiff_t])
 AC_C_BIGENDIAN
 
 dnl ---------------------------------------------
-dnl threads
-dnl ---------------------------------------------
-case $host in
-  *-*-freebsd*)
-    THREAD_LIBS="-L/usr/local/lib -pthread"
-    THREAD_CFLAGS="-I/usr/local/include -D_THREAD_SAFE"
-    CFLAGS="$THREAD_CFLAGS $CFLAGS"
-    ;;
-  *mingw32* | *cygwin*)
-    ;;
-  *)
-    AC_CHECK_LIB(pthread, pthread_create,
-	[THREAD_LIBS="-lpthread"],
-	AC_MSG_ERROR(pthread needed))
-    ;;
-esac
-AC_SUBST(THREAD_LIBS)
-AC_SUBST(THREAD_CFLAGS)
-
-dnl ---------------------------------------------
 dnl dynamic linker
 dnl ---------------------------------------------
 case $host in
@@ -207,7 +187,7 @@ AC_CHECK_PROG(DOXYGEN, doxygen, doxygen,
 dnl ---------------------------------------------
 dnl Some include paths ( !!! DO NOT REMOVE !!! )
 dnl ---------------------------------------------
-INCLUDES='-I$(top_srcdir) $(DVDNAV_CFLAGS)'
+INCLUDES='-I$(top_srcdir) $(DVDREAD_CFLAGS)'
 AC_SUBST(INCLUDES)
 
 dnl ---------------------------------------------
@@ -224,13 +204,9 @@ dnl ------------------------------------
 AC_OUTPUT([
 Makefile 
 src/Makefile
-src/libdvdread/Makefile
-src/vm/Makefile
 misc/Makefile
-misc/dvdnav-config
-misc/libdvdnav.spec
+misc/dvdread-config
+misc/libdvdread.spec
 misc/relchk.sh
 m4/Makefile
-doc/Makefile
-examples/Makefile
 ])

Modified: trunk/libdvdread/m4/Makefile.am
==============================================================================
--- trunk/libdvdread/m4/Makefile.am	(original)
+++ trunk/libdvdread/m4/Makefile.am	Mon Jun  2 11:27:49 2008
@@ -1,6 +1,6 @@
 include $(top_srcdir)/misc/Makefile.common
 
-EXTRA_DIST = dvdnav.m4
+EXTRA_DIST = dvdread.m4
 
 if INSTALL_M4
 m4datadir = @ACLOCAL_DIR@
@@ -8,4 +8,4 @@ else
 m4datadir = $(datadir)/aclocal
 endif
 
-m4data_DATA = dvdnav.m4
+m4data_DATA = dvdread.m4

Modified: trunk/libdvdread/m4/dvdread.m4
==============================================================================
--- trunk/libdvdread/m4/dvdread.m4	(original)
+++ trunk/libdvdread/m4/dvdread.m4	Mon Jun  2 11:27:49 2008
@@ -1,4 +1,4 @@
-dnl Configure paths for DVDNAV
+dnl Configure paths for DVDREAD
 dnl
 dnl Copyright (C) 2001 Daniel Caujolle-Bert <segfault at club-internet.fr>
 dnl  
@@ -23,68 +23,68 @@ dnl script generated by Autoconf, you ma
 dnl distribution terms that you use for the rest of that program.
 dnl  
 
-dnl AM_PATH_DVDNAV([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])
-dnl Test for DVDNAV, and define DVDNAV_CFLAGS and DVDNAV_LIBS
+dnl AM_PATH_DVDREAD([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])
+dnl Test for DVDREAD, and define DVDREAD_CFLAGS and DVDREAD_LIBS
 dnl
-AC_DEFUN([AM_PATH_DVDNAV],
+AC_DEFUN([AM_PATH_DVDREAD],
 [dnl 
-dnl Get the cflags and libraries from the dvdnav-config script
+dnl Get the cflags and libraries from the dvdread-config script
 dnl
-AC_ARG_WITH(dvdnav-prefix,
-    AC_HELP_STRING([--with-dvdnav-prefix=DIR], [prefix where DVDNAV is installed (optional)]),
-            dvdnav_config_prefix="$withval", dvdnav_config_prefix="")
-AC_ARG_WITH(dvdnav-exec-prefix,
-    AC_HELP_STRING([--with-dvdnav-exec-prefix=DIR], [exec prefix where DVDNAV is installed (optional)]),
-            dvdnav_config_exec_prefix="$withval", dvdnav_config_exec_prefix="")
-AC_ARG_ENABLE(dvdnavtest, 
-    AC_HELP_STRING([--disable-dvdnavtest], [do not try to compile and run a test DVDNAV program]),
-            enable_dvdnavtest=$enableval, enable_dvdnavtest=yes)
+AC_ARG_WITH(dvdread-prefix,
+    AC_HELP_STRING([--with-dvdread-prefix=DIR], [prefix where DVDREAD is installed (optional)]),
+            dvdread_config_prefix="$withval", dvdread_config_prefix="")
+AC_ARG_WITH(dvdread-exec-prefix,
+    AC_HELP_STRING([--with-dvdread-exec-prefix=DIR], [exec prefix where DVDREAD is installed (optional)]),
+            dvdread_config_exec_prefix="$withval", dvdread_config_exec_prefix="")
+AC_ARG_ENABLE(dvdreadtest, 
+    AC_HELP_STRING([--disable-dvdreadtest], [do not try to compile and run a test DVDREAD program]),
+            enable_dvdreadtest=$enableval, enable_dvdreadtest=yes)
 
-  if test x$dvdnav_config_exec_prefix != x ; then
-     dvdnav_config_args="$dvdnav_config_args --exec-prefix=$dvdnav_config_exec_prefix"
-     if test x${DVDNAV_CONFIG+set} != xset ; then
-        DVDNAV_CONFIG=$dvdnav_config_exec_prefix/bin/dvdnav-config
+  if test x$dvdread_config_exec_prefix != x ; then
+     dvdread_config_args="$dvdread_config_args --exec-prefix=$dvdread_config_exec_prefix"
+     if test x${DVDREAD_CONFIG+set} != xset ; then
+        DVDREAD_CONFIG=$dvdread_config_exec_prefix/bin/dvdread-config
      fi
   fi
-  if test x$dvdnav_config_prefix != x ; then
-     dvdnav_config_args="$dvdnav_config_args --prefix=$dvdnav_config_prefix"
-     if test x${DVDNAV_CONFIG+set} != xset ; then
-        DVDNAV_CONFIG=$dvdnav_config_prefix/bin/dvdnav-config
+  if test x$dvdread_config_prefix != x ; then
+     dvdread_config_args="$dvdread_config_args --prefix=$dvdread_config_prefix"
+     if test x${DVDREAD_CONFIG+set} != xset ; then
+        DVDREAD_CONFIG=$dvdread_config_prefix/bin/dvdread-config
      fi
   fi
 
-  min_dvdnav_version=ifelse([$1], ,0.0.0,$1)
-  if test "x$enable_dvdnavtest" != "xyes" ; then
-    AC_MSG_CHECKING([for DVDNAV-LIB version >= $min_dvdnav_version])
+  min_dvdread_version=ifelse([$1], ,0.0.0,$1)
+  if test "x$enable_dvdreadtest" != "xyes" ; then
+    AC_MSG_CHECKING([for DVDREAD-LIB version >= $min_dvdread_version])
   else
-    AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no)
-    AC_MSG_CHECKING([for DVDNAV-LIB version >= $min_dvdnav_version])
-    no_dvdnav=""
-    if test "$DVDNAV_CONFIG" = "no" ; then
-      no_dvdnav=yes
+    AC_PATH_PROG(DVDREAD_CONFIG, dvdread-config, no)
+    AC_MSG_CHECKING([for DVDREAD-LIB version >= $min_dvdread_version])
+    no_dvdread=""
+    if test "$DVDREAD_CONFIG" = "no" ; then
+      no_dvdread=yes
     else
-      DVDNAV_CFLAGS=`$DVDNAV_CONFIG $dvdnav_config_args --cflags`
-      DVDNAV_LIBS=`$DVDNAV_CONFIG $dvdnav_config_args --libs`
-      dvdnav_config_major_version=`$DVDNAV_CONFIG $dvdnav_config_args --version | \
+      DVDREAD_CFLAGS=`$DVDREAD_CONFIG $dvdread_config_args --cflags`
+      DVDREAD_LIBS=`$DVDREAD_CONFIG $dvdread_config_args --libs`
+      dvdread_config_major_version=`$DVDREAD_CONFIG $dvdread_config_args --version | \
              sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
-      dvdnav_config_minor_version=`$DVDNAV_CONFIG $dvdnav_config_args --version | \
+      dvdread_config_minor_version=`$DVDREAD_CONFIG $dvdread_config_args --version | \
              sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
-      dvdnav_config_sub_version=`$DVDNAV_CONFIG $dvdnav_config_args --version | \
+      dvdread_config_sub_version=`$DVDREAD_CONFIG $dvdread_config_args --version | \
              sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
-      dnl    if test "x$enable_dvdnavtest" = "xyes" ; then
+      dnl    if test "x$enable_dvdreadtest" = "xyes" ; then
       ac_save_CFLAGS="$CFLAGS"
       ac_save_LIBS="$LIBS"
-      CFLAGS="$CFLAGS $DVDNAV_CFLAGS"
-      LIBS="$DVDNAV_LIBS $LIBS"
+      CFLAGS="$CFLAGS $DVDREAD_CFLAGS"
+      LIBS="$DVDREAD_LIBS $LIBS"
 dnl
-dnl Now check if the installed DVDNAV is sufficiently new. (Also sanity
-dnl checks the results of dvdnav-config to some extent
+dnl Now check if the installed DVDREAD is sufficiently new. (Also sanity
+dnl checks the results of dvdread-config to some extent
 dnl
       AC_LANG_SAVE()
       AC_LANG_C()
-      rm -f conf.dvdnavtest
+      rm -f conf.dvdreadtest
       AC_TRY_RUN([
-#include <dvdnav.h>
+#include <dvdread.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -95,66 +95,66 @@ main ()
   int major, minor, sub;
    char *tmp_version;
 
-  system ("touch conf.dvdnavtest");
+  system ("touch conf.dvdreadtest");
 
   /* HP/UX 9 (%@#!) writes to sscanf strings */
-  tmp_version = (char *) strdup("$min_dvdnav_version");
+  tmp_version = (char *) strdup("$min_dvdread_version");
   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &sub) != 3) {
-     printf("%s, bad version string\n", "$min_dvdnav_version");
+     printf("%s, bad version string\n", "$min_dvdread_version");
      exit(1);
    }
 
-  if (($dvdnav_config_major_version > major) ||
-     (($dvdnav_config_major_version == major) && ($dvdnav_config_minor_version > minor)) ||
-     (($dvdnav_config_major_version == major) && ($dvdnav_config_minor_version == minor) && ($dvdnav_config_sub_version >= sub))) {
+  if (($dvdread_config_major_version > major) ||
+     (($dvdread_config_major_version == major) && ($dvdread_config_minor_version > minor)) ||
+     (($dvdread_config_major_version == major) && ($dvdread_config_minor_version == minor) && ($dvdread_config_sub_version >= sub))) {
     return 0;
   } else {
-    printf("\n*** An old version of libdvdnav (%d.%d.%d) was found.\n",
-      $dvdnav_config_major_version, $dvdnav_config_minor_version, $dvdnav_config_sub_version);
-    printf("*** You need a version of libdvdnav newer than %d.%d.%d. The latest version of\n",
+    printf("\n*** An old version of libdvdread (%d.%d.%d) was found.\n",
+      $dvdread_config_major_version, $dvdread_config_minor_version, $dvdread_config_sub_version);
+    printf("*** You need a version of libdvdread newer than %d.%d.%d. The latest version of\n",
       major, minor, sub);
-    printf("*** libdvdnav is always available from:\n");
+    printf("*** libdvdread is always available from:\n");
     printf("***        http://dvd.sourceforge.net\n");
     printf("***\n");
     printf("*** If you have already installed a sufficiently new version, this error\n");
-    printf("*** probably means that the wrong copy of the dvdnav-config shell script is\n");
+    printf("*** probably means that the wrong copy of the dvdread-config shell script is\n");
     printf("*** being found. The easiest way to fix this is to remove the old version\n");
-    printf("*** of libdvdnav, but you can also set the DVDNAV_CONFIG environment to point to the\n");
-    printf("*** correct copy of dvdnav-config. (In this case, you will have to\n");
+    printf("*** of libdvdread, but you can also set the DVDREAD_CONFIG environment to point to the\n");
+    printf("*** correct copy of dvdread-config. (In this case, you will have to\n");
     printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
     printf("*** so that the correct libraries are found at run-time))\n");
   }
   return 1;
 }
-],, no_dvdnav=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+],, no_dvdread=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
        CFLAGS="$ac_save_CFLAGS"
        LIBS="$ac_save_LIBS"
      fi
     fi
-    if test "x$no_dvdnav" = x ; then
+    if test "x$no_dvdread" = x ; then
        AC_MSG_RESULT(yes)
        ifelse([$2], , :, [$2])     
     else
       AC_MSG_RESULT(no)
-      if test "$DVDNAV_CONFIG" = "no" ; then
-        echo "*** The dvdnav-config script installed by DVDNAV could not be found"
-        echo "*** If DVDNAV was installed in PREFIX, make sure PREFIX/bin is in"
-        echo "*** your path, or set the DVDNAV_CONFIG environment variable to the"
-        echo "*** full path to dvdnav-config."
+      if test "$DVDREAD_CONFIG" = "no" ; then
+        echo "*** The dvdread-config script installed by DVDREAD could not be found"
+        echo "*** If DVDREAD was installed in PREFIX, make sure PREFIX/bin is in"
+        echo "*** your path, or set the DVDREAD_CONFIG environment variable to the"
+        echo "*** full path to dvdread-config."
       else
-        if test -f conf.dvdnavtest ; then
+        if test -f conf.dvdreadtest ; then
           :
         else
-          echo "*** Could not run DVDNAV test program, checking why..."
-          CFLAGS="$CFLAGS $DVDNAV_CFLAGS"
-          LIBS="$LIBS $DVDNAV_LIBS"
+          echo "*** Could not run DVDREAD test program, checking why..."
+          CFLAGS="$CFLAGS $DVDREAD_CFLAGS"
+          LIBS="$LIBS $DVDREAD_LIBS"
           AC_TRY_LINK([
-#include <dvdnav.h>
+#include <dvdread.h>
 #include <stdio.h>
 ],      [ return 0; ],
         [ echo "*** The test program compiled, but did not run. This usually means"
-          echo "*** that the run-time linker is not finding DVDNAV or finding the wrong"
-          echo "*** version of DVDNAV. If it is not finding DVDNAV, you'll need to set your"
+          echo "*** that the run-time linker is not finding DVDREAD or finding the wrong"
+          echo "*** version of DVDREAD. If it is not finding DVDREAD, you'll need to set your"
           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
           echo "*** is required on your system"
@@ -163,19 +163,19 @@ main ()
           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
           echo "***"],
         [ echo "*** The test program failed to compile or link. See the file config.log for the"
-          echo "*** exact error that occured. This usually means DVDNAV was incorrectly installed"
-          echo "*** or that you have moved DVDNAV since it was installed. In the latter case, you"
-          echo "*** may want to edit the dvdnav-config script: $DVDNAV_CONFIG" ])
+          echo "*** exact error that occured. This usually means DVDREAD was incorrectly installed"
+          echo "*** or that you have moved DVDREAD since it was installed. In the latter case, you"
+          echo "*** may want to edit the dvdread-config script: $DVDREAD_CONFIG" ])
           CFLAGS="$ac_save_CFLAGS"
           LIBS="$ac_save_LIBS"
         fi
       fi
-    DVDNAV_CFLAGS=""
-    DVDNAV_LIBS=""
+    DVDREAD_CFLAGS=""
+    DVDREAD_LIBS=""
     ifelse([$3], , :, [$3])
   fi
-  AC_SUBST(DVDNAV_CFLAGS)
-  AC_SUBST(DVDNAV_LIBS)
+  AC_SUBST(DVDREAD_CFLAGS)
+  AC_SUBST(DVDREAD_LIBS)
   AC_LANG_RESTORE()
-  rm -f conf.dvdnavtest
+  rm -f conf.dvdreadtest
 ])

Modified: trunk/libdvdread/misc/Makefile.am
==============================================================================
--- trunk/libdvdread/misc/Makefile.am	(original)
+++ trunk/libdvdread/misc/Makefile.am	Mon Jun  2 11:27:49 2008
@@ -1,5 +1,5 @@
 include $(top_srcdir)/misc/Makefile.common
 
-EXTRA_DIST = dvdnav-config.in libdvdnav.spec.in libdvdnav.spec Makefile.common relchk.sh relchk.sh.in
+EXTRA_DIST = libdvdread.spec.in libdvdread.spec Makefile.common relchk.sh relchk.sh.in
 
-bin_SCRIPTS = dvdnav-config
+bin_SCRIPTS = dvdread-config

Modified: trunk/libdvdread/src/Makefile.am
==============================================================================
--- trunk/libdvdread/src/Makefile.am	(original)
+++ trunk/libdvdread/src/Makefile.am	Mon Jun  2 11:27:49 2008
@@ -2,7 +2,7 @@ include $(top_srcdir)/misc/Makefile.comm
 
 includedir = ${prefix}/include/libdvdread
 
-AM_CPPFLAGS = -DDVDNAV_COMPILE -I$(top_srcdir)/src/vm
+AM_CPPFLAGS = -I$(top_srcdir)/src
 
 lib_LTLIBRARIES = libdvdread.la
 
@@ -12,7 +12,7 @@ libdvdread_la_SOURCES = dvd_reader.c nav
 
 libdvdread_la_LIBADD = $(DYNAMIC_LD_LIBS)
 
-libdvdread_la_LDFLAGS = -version-info $(DVDNAV_LT_CURRENT):$(DVDNAV_LT_REVISION):$(DVDNAV_LT_AGE) \
+libdvdread_la_LDFLAGS = -version-info $(DVDREAD_LT_CURRENT):$(DVDREAD_LT_REVISION):$(DVDREAD_LT_AGE) \
 	-export-symbols-regex "(^dvd.*|^nav.*|^ifo.*|^DVD.*|^UDF.*)"
 
 include_HEADERS = dvd_reader.h nav_read.h ifo_read.h \



More information about the DVDnav-discuss mailing list