diff options
author | novel <novel@FreeBSD.org> | 2006-01-10 18:42:24 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2006-01-10 18:42:24 +0800 |
commit | 3eb5ba794face07e775b71475b19c951425a259a (patch) | |
tree | cfb382892c80a46e9e5d1d45638d4de1363b03a2 /emulators/pearpc | |
parent | 83e9d684f5fd4d7ca56e952a039203e8da448a68 (diff) | |
download | freebsd-ports-graphics-3eb5ba794face07e775b71475b19c951425a259a.tar.gz freebsd-ports-graphics-3eb5ba794face07e775b71475b19c951425a259a.tar.zst freebsd-ports-graphics-3eb5ba794face07e775b71475b19c951425a259a.zip |
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 f54905b43ed..512c51e5ac7 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:: |