[FFmpeg-cvslog] r21609 - branches/0.5/configure
siretart
subversion
Tue Feb 2 20:58:05 CET 2010
Author: siretart
Date: Tue Feb 2 20:58:05 2010
New Revision: 21609
Log:
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.
Modified:
branches/0.5/configure
Modified: branches/0.5/configure
==============================================================================
--- branches/0.5/configure Tue Feb 2 20:57:40 2010 (r21608)
+++ branches/0.5/configure Tue Feb 2 20:58:05 2010 (r21609)
@@ -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"
More information about the ffmpeg-cvslog
mailing list