diff options
author | kris <kris@FreeBSD.org> | 2004-03-17 20:25:04 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-17 20:25:04 +0800 |
commit | 2d470f3f516a440f1b997d7f647afebf1c2f4121 (patch) | |
tree | a078635e2db44cbb4811b06ab135878f3e8b5341 /www | |
parent | cdae93fc5f62980a5103baf075d973b2064dc09c (diff) | |
download | freebsd-ports-gnome-2d470f3f516a440f1b997d7f647afebf1c2f4121.tar.gz freebsd-ports-gnome-2d470f3f516a440f1b997d7f647afebf1c2f4121.tar.zst freebsd-ports-gnome-2d470f3f516a440f1b997d7f647afebf1c2f4121.zip |
Fix build on amd64 by linking against shared libraries instead of trying
to link static libraries into a shared library.
Reviewed by: maintainer
Diffstat (limited to 'www')
-rw-r--r-- | www/oops/files/patch-configure.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/www/oops/files/patch-configure.in b/www/oops/files/patch-configure.in index 8d77e9ee874c..5106642221b5 100644 --- a/www/oops/files/patch-configure.in +++ b/www/oops/files/patch-configure.in @@ -1,13 +1,15 @@ ---- configure.in.orig Thu Feb 12 13:38:59 2004 -+++ configure.in Thu Feb 12 13:44:17 2004 -@@ -315,7 +315,6 @@ +--- configure.in.orig Tue Oct 14 00:49:36 2003 ++++ configure.in Mon Mar 15 03:38:44 2004 +@@ -315,8 +315,7 @@ ;; freebsd*) CFLAGS="$CFLAGS -D_REENTRANT -DFREEBSD -D_THREAD_SAFE -DFD_SETSIZE=2048 -I." - CXX=g++ - CXXSOFLAGS="-shared -Xlinker -Bstatic" +- CXXSOFLAGS="-shared -Xlinker -Bstatic" ++ CXXSOFLAGS="-shared" LIBS="$LEXLIB $LIBS" if test "$large_files" = "yes" ; then + ## FreeBSD need no any special flags for 64bit files @@ -328,14 +327,14 @@ rel=`uname -r` case "$rel" in |