mirror of
https://github.com/videolan/vlc.git
synced 2024-12-14 12:14:42 +08:00
b6968b7d36
We detect whether math functions are located in -lm in configure.ac. Reuse the deliberable of this check and link libcompat with $(LIBM). This is required at least for sincos() functions and it has been reported as required on NetBSD 8.0. Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
22 lines
471 B
Makefile
22 lines
471 B
Makefile
pkglib_LTLIBRARIES = libcompat.la
|
|
libcompat_la_SOURCES = dummy.c
|
|
libcompat_la_LIBADD = $(LTLIBOBJS) $(LIBRT) $(LIBM)
|
|
libcompat_la_LDFLAGS = -no-undefined -static
|
|
|
|
BUILT_SOURCES = dummy.c
|
|
CLEANFILES = dummy.c
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
dummy.c:
|
|
$(AM_V_at)rm -f dummy.c
|
|
$(AM_V_GEN)echo '/* Automatically generated */' > dummy.c
|
|
|
|
|
|
check_PROGRAMS = \
|
|
test_strnstr
|
|
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
test_strnstr_SOURCES = test/strnstr.c
|
|
test_strnstr_LDADD = libcompat.la
|