view vm/Makefile.am @ 407:51be513f1a1d src

Prevent deadlock in dvdnav_reset dvdnav_reset takes a lock and then calls dvdnav_clear (which also takes the same lock). This causes a deadlock. If the lock is released before dvdnav_clear is called, all is well. Derived from a patch submitted by John Stebbins. Thanks!
author erik
date Fri, 30 Jul 2010 23:34:11 +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