diff options
author | thierry <thierry@FreeBSD.org> | 2007-03-22 06:07:39 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2007-03-22 06:07:39 +0800 |
commit | a1d120677a924e60ff9f92d703bcaa96a807d62d (patch) | |
tree | 57b0d78afb19694c87bc3cf028209f3eb4df49a8 /french | |
parent | 6c1e0bb62b61c459604a1b46c95fe889836dab7c (diff) | |
download | freebsd-ports-gnome-a1d120677a924e60ff9f92d703bcaa96a807d62d.tar.gz freebsd-ports-gnome-a1d120677a924e60ff9f92d703bcaa96a807d62d.tar.zst freebsd-ports-gnome-a1d120677a924e60ff9f92d703bcaa96a807d62d.zip |
Trying to unbreak on 64 bits platforms by forcing integers to INTEGER*8.
Suggested by: Mathieu COURTOIS <mathieu.courtois (at) edf.fr>
Diffstat (limited to 'french')
-rw-r--r-- | french/aster/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/french/aster/Makefile b/french/aster/Makefile index f187a8802668..70a37543ce95 100644 --- a/french/aster/Makefile +++ b/french/aster/Makefile @@ -65,17 +65,17 @@ PKGMESSIN= pkg-message.in .include <bsd.port.pre.mk> .if ${ARCH} == "i386" -FLAGARCH= -DP_LINUX -DLINUX # 32 bits +FLAGARCH= -DP_LINUX -DLINUX .else -FLAGARCH= -DLINUX64 # 64 bits +FLAGARCH= -DLINUX64 -fdefault-integer-8 -fdefault-real-8 .endif .if ${OSVERSION} < 600022 BROKEN= Does not compile on this version, and cannot be patched easily. .endif -.if ${ARCH} != "i386" -BROKEN= Seg. fault on ${ARCH} during compilation of elements. -.endif +#.if ${ARCH} != "i386" +#BROKEN= Seg. fault on ${ARCH} during compilation of elements. +#.endif .if exists(${LOCALBASE}/lib/libatlas_r.so) && !defined(WITH_BLAS) WITH_ATLAS= yes |