diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-11-12 23:43:33 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-11-12 23:43:33 +0000 |
commit | 72a1382d2dd8854884f7dc5c5c442a2bb46001aa (patch) | |
tree | 14adfefd06c04eb84c5ad7a7ee4e80a04f79bdcd | |
parent | bad2bd6c81d49fd765dc5179ced169985cd207c6 (diff) | |
download | ports-72a1382d2dd8854884f7dc5c5c442a2bb46001aa.tar.gz ports-72a1382d2dd8854884f7dc5c5c442a2bb46001aa.zip |
Notes
-rw-r--r-- | databases/mysql-query-browser/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/databases/mysql-query-browser/Makefile b/databases/mysql-query-browser/Makefile index ddb77ae98a93..edff7df27916 100644 --- a/databases/mysql-query-browser/Makefile +++ b/databases/mysql-query-browser/Makefile @@ -47,6 +47,14 @@ MAIN_BUILD_COOKIE= ${WRKDIR}/.main_build_done GUI_DIR= ${WRKSRC}/mysql-gui-common MAIN_DIR= ${WRKSRC}/mysql-query-browser +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + do-configure: @${DO_NADA} @@ -76,4 +84,4 @@ do-install: @cd ${MAIN_DIR}; \ ${GMAKE} ${INSTALL_TARGET} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |