diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-02-19 04:53:38 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-02-19 04:53:38 +0000 |
commit | f855f05d725f5edd2529685d05e992adc202072f (patch) | |
tree | 57075c7a85f23079cb54d2e8943f481d9979252b /lib | |
parent | 43a11c0061ff4e326acd228e80c4ef116c9ba41e (diff) |
Extend miod's fix CFLAGS fix to all gcc2 platforms (suggested by Tobias
Ulmer). Only pull in bsd.lib.mk once to avoid linking objects twice
Diffstat (limited to 'lib')
-rw-r--r-- | lib/librthread/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/librthread/Makefile b/lib/librthread/Makefile index 11e0d79eafa..0f9d9811354 100644 --- a/lib/librthread/Makefile +++ b/lib/librthread/Makefile @@ -1,4 +1,7 @@ -# $OpenBSD: Makefile,v 1.25 2012/02/18 16:24:02 miod Exp $ +# $OpenBSD: Makefile,v 1.26 2012/02/19 04:53:37 guenther Exp $ + +# For ``COMPILER_VERSION'' +.include <bsd.own.mk> LIB=pthread WANTLINT= @@ -6,7 +9,7 @@ LINTFLAGS=-z LIBCSRCDIR= ${.CURDIR}/../libc CFLAGS+=-Wall -g -Werror -Wshadow -.if "${MACHINE_ARCH}" != "vax" +.if ${COMPILER_VERSION:L} == "gcc3" || ${COMPILER_VERSION:L} == "gcc4" CFLAGS+=-Wmissing-prototypes .endif CFLAGS+=-Wstrict-prototypes @@ -26,7 +29,6 @@ OBJS+= _atomic_lock.o rfork_thread.o cerror.o MAN+= __tfork_thread.3 MLINKS+=__tfork_thread.3 __tfork.2 -.include <bsd.lib.mk> SRCDIR= ${.CURDIR}/../libpthread .include "${SRCDIR}/include/Makefile.inc" |