diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2005-01-22 00:05:52 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2005-01-22 00:05:52 +0000 |
commit | dfedea1e4d117814a0d0056f8de8d65ed97c88c7 (patch) | |
tree | 3cdbb937fb29f3b02b4c40a6c34e666f82b94c64 /www/galeon | |
parent | Fix build on 4.x (diff) |
Use GCC 3.4 if we're building on 4.x against mozilla-devel.
Reminded by: marcus
Diffstat (limited to 'www/galeon')
-rw-r--r-- | www/galeon/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/www/galeon/Makefile b/www/galeon/Makefile index 4f84383b25bb..450fa3641cda 100644 --- a/www/galeon/Makefile +++ b/www/galeon/Makefile @@ -67,6 +67,12 @@ NO_WERROR= yes CONFIGURE_ARGS+= --disable-werror .endif +.if ${OSVERSION} < 500000 +.if ${MOZILLA}=="mozilla-devel" +USE_GCC= 3.4 +.endif +.endif + pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} " By default the port uses www/mozilla for html rendering, but you can" |