# HG changeset patch # User nicodvb # Date 1212237265 0 # Node ID 62dd6af82d7bafd066fb0ae8f6e2e34d700eba08 # Parent 1274107d0eaca8af5f370f6a4004ff2152291df9 adapted the tree to the dvdread->libdvdread transition diff -r 1274107d0eac -r 62dd6af82d7b Makefile.am --- a/Makefile.am Sat May 31 12:29:19 2008 +0000 +++ b/Makefile.am Sat May 31 12:34:25 2008 +0000 @@ -1,11 +1,11 @@ include $(top_srcdir)/misc/Makefile.common -SUBDIRS = dvdread vm +SUBDIRS = libdvdread vm includedir = ${prefix}/include/dvdnav AM_CPPFLAGS = -DDVDNAV_COMPILE $(THREAD_CFLAGS) \ - -I$(top_srcdir)/src/dvdread -I$(top_srcdir)/src/vm + -I$(top_srcdir)/src/libdvdread -I$(top_srcdir)/src/vm EXTRA_DIST = README.MAP FELLOWSHIP.map @@ -17,7 +17,7 @@ dvdnav_internal.h read_cache.h remap.h libdvdnav_la_LIBADD = $(THREAD_LIBS) \ - $(top_builddir)/src/dvdread/libdvdread.la \ + $(top_builddir)/src/libdvdread/libdvdread.la \ $(top_builddir)/src/vm/libdvdvm.la libdvdnav_la_LDFLAGS = \ diff -r 1274107d0eac -r 62dd6af82d7b dvdnav.h --- a/dvdnav.h Sat May 31 12:29:19 2008 +0000 +++ b/dvdnav.h Sat May 31 12:34:25 2008 +0000 @@ -37,9 +37,9 @@ #ifndef DVDNAV_COMPILE # include -# include -# include -# include /* For vm_cmd_t */ +# include +# include +# include /* For vm_cmd_t */ # include #endif diff -r 1274107d0eac -r 62dd6af82d7b libdvdread/Makefile.am --- a/libdvdread/Makefile.am Sat May 31 12:29:19 2008 +0000 +++ b/libdvdread/Makefile.am Sat May 31 12:34:25 2008 +0000 @@ -1,6 +1,6 @@ include $(top_srcdir)/misc/Makefile.common -includedir = ${prefix}/include/dvdread +includedir = ${prefix}/include/libdvdread AM_CPPFLAGS = -DDVDNAV_COMPILE -I$(top_srcdir)/src/vm diff -r 1274107d0eac -r 62dd6af82d7b libdvdread/ifo_print.h --- a/libdvdread/ifo_print.h Sat May 31 12:29:19 2008 +0000 +++ b/libdvdread/ifo_print.h Sat May 31 12:34:25 2008 +0000 @@ -24,7 +24,7 @@ #ifdef DVDNAV_COMPILE # include "ifo_types.h" #else -# include /* Only for vm_cmd_t */ +# include /* Only for vm_cmd_t */ #endif void ifo_print(dvd_reader_t *dvd, int title); diff -r 1274107d0eac -r 62dd6af82d7b vm/Makefile.am --- a/vm/Makefile.am Sat May 31 12:29:19 2008 +0000 +++ b/vm/Makefile.am Sat May 31 12:34:25 2008 +0000 @@ -3,7 +3,7 @@ includedir = ${prefix}/include/dvdnav AM_CPPFLAGS = -DDVDNAV_COMPILE $(THREAD_CFLAGS) \ - -I$(top_srcdir)/src -I$(top_srcdir)/src/dvdread + -I$(top_srcdir)/src -I$(top_srcdir)/src/libdvdread noinst_LTLIBRARIES = libdvdvm.la