view vm/Makefile.am @ 402:3776e1559236 src

Fix pthread_mutex_destroy macro for Win32 Win32 has a DestroyCriticalSection call that is the equivalent to pthread_mutex_destroy. The macro for the Win32 port should have this. The VLC project fixed the Win32 macro for pthread_mutex_destroy about 3 years ago. So this is a well tested patch according to them. Thanks goes to Jean-Baptiste for submitting this patch to the dvdnav-discuss list. Patch by Jean-Baptiste Kempf /jb*videolan#org\
author erik
date Thu, 27 May 2010 15:26:27 +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