summaryrefslogtreecommitdiff
path: root/editors/emacs24
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2013-10-27 20:47:53 +0000
committerjoerg <joerg@pkgsrc.org>2013-10-27 20:47:53 +0000
commit8d39904ea20f8ccdb89c16efc3b051fe25004e06 (patch)
treed5def61389405078d427466971fedaeddfdfa10f /editors/emacs24
parentf455548475b095352e49b72b3b25347b02732774 (diff)
downloadpkgsrc-8d39904ea20f8ccdb89c16efc3b051fe25004e06.tar.gz
NetBSD with native clang won't have libgcc, so fake a static library.
Avoids going to the great hacks in the build system to avoid it.
Diffstat (limited to 'editors/emacs24')
-rw-r--r--editors/emacs24/Makefile.common11
1 files changed, 10 insertions, 1 deletions
diff --git a/editors/emacs24/Makefile.common b/editors/emacs24/Makefile.common
index 3ae7a0aea95..ae5f05f91a4 100644
--- a/editors/emacs24/Makefile.common
+++ b/editors/emacs24/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.5 2013/03/24 15:15:09 dholland Exp $
+# $NetBSD: Makefile.common,v 1.6 2013/10/27 20:47:53 joerg Exp $
#
# used by editors/emacs24/Makefile
# used by editors/emacs24-nox11/Makefile
@@ -60,6 +60,15 @@ CHECK_WRKREF_SKIP+= bin/emacs-${EMACS_VERSION}
CFLAGS+= -fno-pie
.endif
+.if (${OPSYS} == "NetBSD") && \
+ !exists(/usr/lib/libgcc_s.so) && !exists(/usr/lib/libgcc.a)
+# NetBSD with native Clang doesn't provide libgcc, everything is in libc.
+pre-configure: fake-libgcc
+
+fake-libgcc:
+ ${AR} q ${BUILDLINK_DIR}/lib/libgcc.a
+.endif
+
.if (${OPSYS} == "NetBSD") && exists(/usr/include/term.h)
CPPFLAGS+= -DTERMINFO
.elif ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "OpenBSD"