From 49549033fda91134d442a276c7326bd26f09c8ba Mon Sep 17 00:00:00 2001 From: Reinhard Tartler Date: Tue, 2 Feb 2010 19:58:05 +0000 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"