diff options
author | nakai <nakai@FreeBSD.org> | 2000-07-19 05:48:10 +0000 |
---|---|---|
committer | nakai <nakai@FreeBSD.org> | 2000-07-19 05:48:10 +0000 |
commit | 04277d02161cbe23ca3a1becce79a29fb3a6e683 (patch) | |
tree | cafac0c37aaafa714109eb49741c3616aaf95596 /audio/gogo/Makefile | |
parent | f6630bfb77539e2e7e3af0643741b6bcb1fcbc2e (diff) | |
download | FreeBSD-ports-04277d02161cbe23ca3a1becce79a29fb3a6e683.zip FreeBSD-ports-04277d02161cbe23ca3a1becce79a29fb3a6e683.tar.gz |
Use WITH_THREADS instead of USE_MT.
Submitted by: FUJISHIMA Satsuki <k5@cheerful.com>
Diffstat (limited to 'audio/gogo/Makefile')
-rw-r--r-- | audio/gogo/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/gogo/Makefile b/audio/gogo/Makefile index 585d184..f78ba4c 100644 --- a/audio/gogo/Makefile +++ b/audio/gogo/Makefile @@ -28,11 +28,11 @@ ONLY_FOR_ARCHS= i386 # CFLAGS=-march=pentiumpro -O6 -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -foptimize-register-move -ffast-math -fdefer-pop -mfancy-math-387 pre-fetch: -.if !defined(USE_MT) - @${ECHO_MSG} "set USE_MT to compile with linuxthreads." +.if !defined(WITH_THREADS) + @${ECHO_MSG} "set WITH_THREADS to compile with linuxthreads." @${ECHO_MSG} "It would increase performance in SMP environment." .else -MAKE_ENV+= "USE_MT=yes" +MAKE_ENV+= "WITH_THREADS=yes" LIB_DEPENDS= lthread.2:${PORTSDIR}/devel/linuxthreads .endif |