diff options
author | reg <reg@FreeBSD.org> | 2000-12-22 03:40:44 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-12-22 03:40:44 +0800 |
commit | b1d46a5dc5b8919dca6008339364cc28a29d57c8 (patch) | |
tree | f6de3c0fd2938dcfe9f7150f0a1b36c65a9fb492 /www/seamonkey/Makefile | |
parent | d4f034e7df36091a3241f4bbff4d31b70b71664e (diff) | |
download | freebsd-ports-gnome-b1d46a5dc5b8919dca6008339364cc28a29d57c8.tar.gz freebsd-ports-gnome-b1d46a5dc5b8919dca6008339364cc28a29d57c8.tar.zst freebsd-ports-gnome-b1d46a5dc5b8919dca6008339364cc28a29d57c8.zip |
Explictly link against libgcc_r, to work around bugs in 4.2-RELEASE onwards
and -CURRENT. I'm still not sure why the bug was exposed only recently, but
it is due to libstdc++ being linked without the -nostdlib option (causing it
to be statically linked against libgcc even for the threaded case).
Thanks to Andrew Bliznak <andrew@ort.lviv.net> for testing this.
Diffstat (limited to 'www/seamonkey/Makefile')
-rw-r--r-- | www/seamonkey/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index 0d7e8dd3226d..7fc63621219b 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -49,7 +49,7 @@ CONFIGURE_ARGS= \ --with-jpeg=${LOCALBASE} \ --with-png=${LOCALBASE} MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CC_ONLY_FLAGS="${FLAGS}" CCC_ONLY_FLAGS="${CXXFLAGS}" + CC_ONLY_FLAGS="${CFLAGS}" CCC_ONLY_FLAGS="${CXXFLAGS}" post-build: @${SED} -e "s;@PREFIX@;${PREFIX};g" \ |