diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-23 12:09:26 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-23 12:09:26 +0800 |
commit | b4a41c87306fb8c6d54d9a0f665f3498deb1ae3c (patch) | |
tree | a2dd792267f4ea207e03ca3d8db5d036e50d5f6d | |
parent | a46bfb63b8733014a0540d951c1687ca7605ddb7 (diff) | |
download | marcuscom-ports-b4a41c87306fb8c6d54d9a0f665f3498deb1ae3c.tar marcuscom-ports-b4a41c87306fb8c6d54d9a0f665f3498deb1ae3c.tar.gz marcuscom-ports-b4a41c87306fb8c6d54d9a0f665f3498deb1ae3c.tar.bz2 marcuscom-ports-b4a41c87306fb8c6d54d9a0f665f3498deb1ae3c.tar.lz marcuscom-ports-b4a41c87306fb8c6d54d9a0f665f3498deb1ae3c.tar.xz marcuscom-ports-b4a41c87306fb8c6d54d9a0f665f3498deb1ae3c.tar.zst marcuscom-ports-b4a41c87306fb8c6d54d9a0f665f3498deb1ae3c.zip |
Use GCC 3.4 when building with mozilla-devel on 4.X.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3463 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | www/epiphany-extensions/Makefile | 6 | ||||
-rw-r--r-- | www/epiphany/Makefile | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/www/epiphany-extensions/Makefile b/www/epiphany-extensions/Makefile index 3d5a7d309..5c39476d4 100644 --- a/www/epiphany-extensions/Makefile +++ b/www/epiphany-extensions/Makefile @@ -66,6 +66,12 @@ CONFIGURE_ARGS+= --enable-opensp=yes CONFIGURE_ARGS+= --disable-opensp .endif +.if ${OSVERSION} < 500000 +.if ${MOZILLA}=="mozilla-devel" +USE_GCC= 3.4 +.endif +.endif + pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} " By default epiphany-extensions builds with www/mozilla support, but you can" diff --git a/www/epiphany/Makefile b/www/epiphany/Makefile index ecae910ee..d09eb6200 100644 --- a/www/epiphany/Makefile +++ b/www/epiphany/Makefile @@ -61,6 +61,12 @@ NO_WERROR= yes CONFIGURE_ARGS+= --enable-compile-warnings=no .endif +.if ${OSVERSION} < 500000 +.if ${MOZILLA}=="mozilla-devel" +USE_GCC= 3.4 +.endif +.endif + pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} " By default epiphany uses www/mozilla for html rendering, but you can" |