From 086a3bc3ee6dc48b4398d8e75036528b2cf926fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 7 Jun 2008 21:18:20 +0300 Subject: [PATCH] SRTP: try to fix dependent libraries --- libs/srtp/Makefile.am | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/srtp/Makefile.am b/libs/srtp/Makefile.am index 901003cc34..4c0fd5d866 100644 --- a/libs/srtp/Makefile.am +++ b/libs/srtp/Makefile.am @@ -16,11 +16,6 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA AM_CPPFLAGS = @LIBGCRYPT_CFLAGS@ -AM_LDFLAGS = @LIBGCRYPT_LIBS@ - -if !HAVE_WIN32 -AM_LDFLAGS += -lpthread -endif noinst_HEADERS = srtp.h @@ -30,6 +25,11 @@ check_PROGRAMS = test-aes test-recv TESTS = $(check_PROGRAMS) libvlc_srtp_la_SOURCES = srtp.c +libvlc_srtp_la_LIBADD = @LIBGCRYPT_LIBS@ +if !HAVE_WIN32 +libvlc_srtp_la_LIBADD += -lpthread +endif + srtp_SOURCES = recv.c srtp_LDADD = libvlc_srtp.la test_recv_LDADD = libvlc_srtp.la -- 2.39.2