diff options
author | Reinhard Tartler <siretart@tauware.de> | 2010-02-02 19:58:05 +0000 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2010-02-02 19:58:05 +0000 |
commit | 49549033fda91134d442a276c7326bd26f09c8ba (patch) | |
tree | 58f7e2fedf63ef87d157901ef411a1d3f56ba269 | |
parent | 15dfbc503dec612ab79aa891284f875bdd0ecd6a (diff) | |
download | ffmpeg-49549033fda91134d442a276c7326bd26f09c8ba.tar.gz |
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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |