From: lilo_booter Date: Tue, 22 Nov 2005 13:54:50 +0000 (+0000) Subject: + Allow LDFLAGS to be inherited from the environment X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=a74e033e9d2433c4b339a2d708c78ced8d0e6020;p=melted + 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 --- 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