diff options
author | novel <novel@FreeBSD.org> | 2006-01-10 10:42:24 +0000 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2006-01-10 10:42:24 +0000 |
commit | 3eb5ba794face07e775b71475b19c951425a259a (patch) | |
tree | cfb382892c80a46e9e5d1d45638d4de1363b03a2 /emulators/pearpc | |
parent | 83e9d684f5fd4d7ca56e952a039203e8da448a68 (diff) | |
download | FreeBSD-ports-3eb5ba794face07e775b71475b19c951425a259a.zip FreeBSD-ports-3eb5ba794face07e775b71475b19c951425a259a.tar.gz |
Broken on FreeBSD < 5.3 because of missing truncf().
Reported by: pointyhat via kris
Diffstat (limited to 'emulators/pearpc')
-rw-r--r-- | emulators/pearpc/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/emulators/pearpc/Makefile b/emulators/pearpc/Makefile index f54905b..512c51e 100644 --- a/emulators/pearpc/Makefile +++ b/emulators/pearpc/Makefile @@ -73,9 +73,10 @@ CONFIGURE_ARGS+= --enable-cpu=jitc_x86 CONFIGURE_ARGS+= --enable-cpu=generic .endif -.if ${OSVERSION} < 500000 -USE_GCC= 3.4 -CFLAGS+= -DFREEBSD_MB_SUPPORT +.if ${OSVERSION} < 503001 +#USE_GCC= 3.4 +#CFLAGS+= -DFREEBSD_MB_SUPPORT +BROKEN= "Missing truncf()" .endif pre-everything:: |