[vlc-commits] test: fix linking (with --disable-shared)

Rémi Denis-Courmont git at videolan.org
Fri Oct 28 20:59:55 CEST 2016


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Oct 28 21:59:35 2016 +0300| [ca5dd4d0a1fd063676027427fb1768cd3b473868] | committer: Rémi Denis-Courmont

test: fix linking (with --disable-shared)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ca5dd4d0a1fd063676027427fb1768cd3b473868
---

 test/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/Makefile.am b/test/Makefile.am
index 7731782..e47430e 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -69,8 +69,8 @@ samples/meta.sample:
 
 AM_CFLAGS = -DSRCDIR=\"$(srcdir)\"
 AM_LDFLAGS = -no-install
-LIBVLCCORE = ../src/libvlccore.la
-LIBVLC = ../lib/libvlc.la
+LIBVLCCORE = -L../src/ -lvlccore
+LIBVLC = -L../lib -lvlc
 
 test_libvlc_core_SOURCES = libvlc/core.c
 test_libvlc_core_LDADD = $(LIBVLC)



More information about the vlc-commits mailing list