view Makefile.am @ 57:4554518224d7 src

Fix the test of whether disk names should be raw devices This is a side port of a fix from the original libdvdread 0.9.7 release. Darwin and BSD platforms disk device names might have to be converted to raw device names. There is a check for this in the code. But it is missing a very important 'r'. This fix made it into the 0.9.7 release but did not make the commit to this repo when this repo was given the API changes for 0.9.7 because it was not clear whether the fix was still relevant. Thanks to John Stebbins we now have this confirmation and we can go ahead and commit this fix.
author erik
date Sat, 31 Jul 2010 00:10:28 +0000
parents c743d79f187b
children
line wrap: on
line source

include $(top_srcdir)/misc/Makefile.common

includedir = ${prefix}/include/dvdread

AM_CPPFLAGS = -I$(top_srcdir)/src

lib_LTLIBRARIES = libdvdread.la

libdvdread_la_SOURCES = dvd_reader.c nav_read.c ifo_read.c \
	dvd_input.c dvd_udf.c md5.c nav_print.c ifo_print.c bitreader.c \
	bswap.h dvd_input.h dvdread_internal.h dvd_udf.h md5.h bitreader.h

libdvdread_la_LIBADD = $(DYNAMIC_LD_LIBS)

libdvdread_la_LDFLAGS = -version-info $(DVDREAD_LT_CURRENT):$(DVDREAD_LT_REVISION):$(DVDREAD_LT_AGE) \
	-export-symbols-regex "(^dvd.*|^nav.*|^ifo.*|^DVD.*|^UDF.*)"

include_HEADERS = dvdread/dvd_reader.h dvdread/nav_read.h dvdread/ifo_read.h \
	dvdread/nav_print.h dvdread/ifo_print.h dvdread/ifo_types.h dvdread/nav_types.h dvdread/dvd_udf.h dvdread/bitreader.h