mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
eb1f861012
Makes it clearer which files are actually used in libcheck and which are used for cross-platform compatibility. This is going to be especially useful when we add all the libcompat fallback code that upstream libcheck has which will add about 6 new files. https://bugzilla.gnome.org/show_bug.cgi?id=775870
60 lines
1.1 KiB
Makefile
60 lines
1.1 KiB
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 \
|
|
libcompat/libcompat.c
|
|
|
|
if !HAVE_ALARM
|
|
CFILES += libcompat/alarm.c
|
|
endif
|
|
|
|
if !HAVE_CLOCK_GETTIME
|
|
CFILES += libcompat/clock_gettime.c
|
|
endif
|
|
|
|
if !HAVE_STRSIGNAL
|
|
CFILES += libcompat/strsignal.c
|
|
endif
|
|
|
|
if !HAVE_TIMER_CREATE_SETTIME_DELETE
|
|
CFILES +=\
|
|
libcompat/timer_create.c \
|
|
libcompat/timer_settime.c \
|
|
libcompat/timer_delete.c
|
|
endif
|
|
|
|
HFILES =\
|
|
check_error.h \
|
|
check_impl.h \
|
|
check_list.h \
|
|
check_log.h \
|
|
check_msg.h \
|
|
check_pack.h \
|
|
check_print.h \
|
|
check_str.h \
|
|
libcompat/libcompat.h
|
|
|
|
noinst_HEADERS = $(HFILES)
|
|
|
|
libcheckinternal_la_SOURCES = $(CFILES) $(HFILES)
|
|
|
|
libcheckinternal_la_CFLAGS = -I$(top_builddir)/libs/gst/check
|
|
libcheckinternal_la_LIBADD =
|
|
|
|
# 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
|
|
endif
|