summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2010-02-02 19:58:05 +0000
committerReinhard Tartler <siretart@tauware.de>2010-02-02 19:58:05 +0000
commit49549033fda91134d442a276c7326bd26f09c8ba (patch)
tree58f7e2fedf63ef87d157901ef411a1d3f56ba269
parent15dfbc503dec612ab79aa891284f875bdd0ecd6a (diff)
unbreak compilation with vhook enabled
the backported introduced a regression that prevents successfully linking vhook shared objects on systems with gnu linkers. As the version scripts only apply to shared objects against that applications are being linked, this commit unties the VHOOKSHFLAGS and SHFLAGS variable. Originally committed as revision 21609 to svn://svn.ffmpeg.org/ffmpeg/branches/0.5
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 229b84d21f..04fc73d0ce 100755
--- a/configure
+++ b/configure
@@ -1201,7 +1201,7 @@ vhook="default"
# build settings
add_cflags -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112
SHFLAGS='-shared -Wl,-soname,$$(@F)'
-VHOOKSHFLAGS='$(SHFLAGS)'
+VHOOKSHFLAGS='-shared -Wl,-soname,$$(@F)'
FFSERVERLDFLAGS=-Wl,-E
LIBPREF="lib"
LIBSUF=".a"