From 0600d30ae471a0b70959bf2e476cff270bade8b1 Mon Sep 17 00:00:00 2001 From: Michael Kostylev Date: Mon, 26 Oct 2009 10:18:35 +0000 Subject: [PATCH] Avoid "-z text" diversion on SunOS x86, needed to make FATE happy. patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 20373 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index af1fa13e86..b3d99a135b 100755 --- a/configure +++ b/configure @@ -1880,6 +1880,7 @@ case $target_os in sunos) FFSERVERLDFLAGS="" SHFLAGS='-shared -Wl,-h,$$(@F)' + enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS" network_extralibs="-lsocket -lnsl" add_cppflags -D__EXTENSIONS__ ;;