gstreamer/libs/gst/check/libcheck/Makefile.am
Sebastian Dröge 1042857f33 configure: Properly check for pthread
The old check failed on Android for example.
2012-10-22 15:05:24 +02:00

38 lines
740 B
Makefile

noinst_LTLIBRARIES = libcheckinternal.la
EXTRA_DIST = check.h.in
CFILES =\
check.c \
check_error.c \
check_list.c \
check_log.c \
check_msg.c \
check_pack.c \
check_print.c \
check_run.c \
check_str.c
HFILES =\
check.h \
check_error.h \
check_impl.h \
check_list.h \
check_log.h \
check_msg.h \
check_pack.h \
check_print.h \
check_str.h
noinst_HEADERS = $(HFILES)
libcheckinternal_la_SOURCES = $(CFILES) $(HFILES)
# define HAVE_PTHREAD here as well so we keep changes to the code to a minimum
if HAVE_PTHREAD
libcheckinternal_la_CFLAGS = $(PTHREAD_CFLAGS) -D_GNU_SOURCE -DHAVE_PTHREAD
libcheckinternal_la_LIBADD = $(PTHREAD_LIBS)
else
libcheckinternal_la_CFLAGS = -D_GNU_SOURCE
libcheckinternal_la_LIBADD =
endif