Commit 8e1733ae authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

modplug: force linking as C++

modplug is a C++ library (including a C API). So we need the C++ linker,
at least when linking statically.
parent a902512e
Makefile.am Makefile.am
dummy.cpp
...@@ -12,7 +12,7 @@ SOURCES_nsv = nsv.c ...@@ -12,7 +12,7 @@ SOURCES_nsv = nsv.c
SOURCES_real = real.c SOURCES_real = real.c
SOURCES_ts = ts.c ../mux/mpeg/csa.c SOURCES_ts = ts.c ../mux/mpeg/csa.c
SOURCES_ps = ps.c ps.h SOURCES_ps = ps.c ps.h
SOURCES_mod = mod.c SOURCES_mod = mod.c dummy.cpp
SOURCES_pva = pva.c SOURCES_pva = pva.c
SOURCES_aiff = aiff.c SOURCES_aiff = aiff.c
SOURCES_mjpeg = mjpeg.c SOURCES_mjpeg = mjpeg.c
...@@ -59,3 +59,8 @@ libvlc_LTLIBRARIES += \ ...@@ -59,3 +59,8 @@ libvlc_LTLIBRARIES += \
libwav_plugin.la \ libwav_plugin.la \
libxa_plugin.la \ libxa_plugin.la \
$(NULL) $(NULL)
BUILT_SOURCES += dummy.cpp
dummy.cpp:
touch dummy.cpp
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment