view vm/Makefile.am @ 434:264c5b900bfb src

Pass return value of vm_jump_up back to the caller. dvdnav_go_up ignores the return value of vm_jump_up, and always returns DVDNAV_STATUS_OK, the calling code cannot therefore determine whether the jump was successful or not. The attached patch evaluates the return value from vm_jump_up and passes this back to the caller. Patch by Richard Hulme.
author rathann
date Sun, 06 Oct 2013 21:56:26 +0000
parents bba82ef5d75a
children
line wrap: on
line source

include $(top_srcdir)/misc/Makefile.common

includedir = ${prefix}/include/dvdnav

AM_CPPFLAGS = -DDVDNAV_COMPILE $(THREAD_CFLAGS) $(DVDREAD_CFLAGS) \
	-I$(top_srcdir)/src

noinst_LTLIBRARIES = libdvdvm.la

libdvdvm_la_SOURCES = decoder.c vm.c vmcmd.c

libdvdvm_la_LDFLAGS = $(THREAD_LIBS)

include_HEADERS =

noinst_HEADERS = decoder.h vm.h vmcmd.h