diff options
-rw-r--r-- | lib/libc/shlib_version | 2 | ||||
-rw-r--r-- | share/mk/bsd.own.mk | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/libc/shlib_version b/lib/libc/shlib_version index ced9f0a5390..7457b41feb2 100644 --- a/lib/libc/shlib_version +++ b/lib/libc/shlib_version @@ -1,4 +1,4 @@ -major=55 +major=56 minor=0 # note: If changes were made to include/thread_private.h or if system # calls were added/changed then libpthread must also be updated. diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index af17d94af95..c624451c98a 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.102 2010/05/26 14:39:38 kettenis Exp $ +# $OpenBSD: bsd.own.mk,v 1.103 2010/07/08 20:25:40 kettenis Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -36,7 +36,9 @@ ELF_TOOLCHAIN?= yes ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "vax" USE_GCC3?=no COMPILER_VERSION?=gcc2 -.elif ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "sparc64" +.elif ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "hppa" || \ + ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "powerpc" || \ + ${MACHINE_ARCH} == "sparc64" COMPILER_VERSION?=gcc4 .else USE_GCC3?=yes |