diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-10-14 21:02:49 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-10-14 21:02:49 +0000 |
commit | aa8ce5cc024286308e299e755b5a3a93c303af77 (patch) | |
tree | 3b08154a1793e56f4a8419d0be99ed81a4ec3651 /misc | |
parent | 7ffb37f7bcce7dbd6364f78b3f4a0586eca3da68 (diff) |
- it doesn't work with MySQL below 4.1.x because it uses sub-selects
- also fix broken INDEX if Mysql 3.23.x is installed [1]
Submitted by: vd [1]
Approved by: portmgr (marcus)
Notes
Notes:
svn path=/head/; revision=175313
Diffstat (limited to 'misc')
-rw-r--r-- | misc/tinderbox/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/misc/tinderbox/Makefile b/misc/tinderbox/Makefile index a8996126c1c7..15254fc78d3a 100644 --- a/misc/tinderbox/Makefile +++ b/misc/tinderbox/Makefile @@ -6,7 +6,7 @@ PORTNAME= tinderbox PORTVERSION= 2.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= http://tinderbox.marcuscom.com/ @@ -45,7 +45,8 @@ RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-P .if !defined(WITHOUT_MYSQL) USE_PHP+= mysql USE_MYSQL= yes -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql${MYSQL_VER} +IGNORE_WITH_MYSQL= 323 40 +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql${MYSQL_VER:S/323//} .endif .if ! (${OSVERSION} > 700014 || ( ${OSVERSION} >= 601101 && ${OSVERSION} < 700000 )) |