diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-08-07 02:40:38 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-08-07 02:40:38 +0000 |
commit | 8a8a8d50aa5555404aa18138b4fa6fc3dada9d51 (patch) | |
tree | 7f3828dbf772a699756b54975414532709c94d58 | |
parent | 89d08ccafe80e1236dc7d84a9b5f9b8003457fa7 (diff) | |
download | ports-8a8a8d50aa5555404aa18138b4fa6fc3dada9d51.tar.gz ports-8a8a8d50aa5555404aa18138b4fa6fc3dada9d51.zip |
- fix on i386 4
Noted by: krisbot
Notes
Notes:
svn path=/head/; revision=169886
-rw-r--r-- | science/crf++/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/science/crf++/Makefile b/science/crf++/Makefile index 02dbaa7126a4..2520ed22912e 100644 --- a/science/crf++/Makefile +++ b/science/crf++/Makefile @@ -16,5 +16,12 @@ COMMENT= Yet Another CRF toolkit GNU_CONFIGURE= yes INSTALLS_SHLIB= yes +USE_GCC= 3.2+ -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500016 +MAKE_ARGS+= LDFLAGS=${PTHREAD_LIBS} +.endif + +.include <bsd.port.post.mk> |