From a74e033e9d2433c4b339a2d708c78ced8d0e6020 Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Tue, 22 Nov 2005 13:54:50 +0000 Subject: [PATCH] + Allow LDFLAGS to be inherited from the environment git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt++@865 d19143bc-622f-0410-bfdd-b5b2a6649095 --- mlt++/configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mlt++/configure b/mlt++/configure index 8c02c98..c1310fc 100755 --- a/mlt++/configure +++ b/mlt++/configure @@ -21,12 +21,12 @@ case $targetos in Darwin) echo LIBSUF=.dylib echo "CXXFLAGS+=-D__DARWIN__ -Wall -fPIC `mlt-config --cflags`" - echo "LDFLAGS=-dynamiclib `mlt-config --libs` `mlt-config miracle --libs` `mlt-config valerie --libs` -single_module" + echo "LDFLAGS+=-dynamiclib `mlt-config --libs` `mlt-config miracle --libs` `mlt-config valerie --libs` -single_module" ;; Linux) echo LIBSUF=.so echo "CXXFLAGS+=-pthread -Wall -fPIC `mlt-config --cflags`" - echo "LDFLAGS=-shared `mlt-config --libs` `mlt-config miracle --libs`" + echo "LDFLAGS+=-shared `mlt-config --libs` `mlt-config miracle --libs`" ;; esac >> config.mak -- 1.7.4.4