diff options
author | miod <> | 2013-08-06 19:11:53 +0000 |
---|---|---|
committer | miod <> | 2013-08-06 19:11:53 +0000 |
commit | f64d6559ff43386dd60fef0abb5df1f4fb23f888 (patch) | |
tree | 48c7e6bd800e346ab4b022d8dc00e773a9072e7e | |
parent | 7e1cc5bc220dd62db99c4e324703bf4d5597f382 (diff) | |
download | openbsd-f64d6559ff43386dd60fef0abb5df1f4fb23f888.tar.gz openbsd-f64d6559ff43386dd60fef0abb5df1f4fb23f888.tar.bz2 openbsd-f64d6559ff43386dd60fef0abb5df1f4fb23f888.zip |
Remove support for COMPILER_VERSION == gcc2.
Change the logic depending upon COMPILER_VERSION everywhere, to assume gcc4
is the norm and to explicitely test for gcc3 when a different behaviour
is required.
No functional change intended. Be sure to `make install' in share/mk before
attempting to do anything.
-rw-r--r-- | src/regress/lib/libc/cxa-atexit/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/regress/lib/libc/cxa-atexit/Makefile b/src/regress/lib/libc/cxa-atexit/Makefile index 5061ca04ac..a2821e01d3 100644 --- a/src/regress/lib/libc/cxa-atexit/Makefile +++ b/src/regress/lib/libc/cxa-atexit/Makefile | |||
@@ -1,11 +1,6 @@ | |||
1 | # $OpenBSD: Makefile,v 1.2 2010/05/10 18:20:31 drahn Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2013/08/06 19:11:53 miod Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | ||
4 | |||
5 | |||
6 | .if ${COMPILER_VERSION:L} == "gcc3" || ${COMPILER_VERSION:L} == "gcc4" | ||
7 | SUBDIR+= libgd1 libgd2 test1 | 3 | SUBDIR+= libgd1 libgd2 test1 |
8 | .endif | ||
9 | 4 | ||
10 | install: | 5 | install: |
11 | 6 | ||