summaryrefslogtreecommitdiff
path: root/editors/emacs23/Makefile.common
diff options
context:
space:
mode:
Diffstat (limited to 'editors/emacs23/Makefile.common')
-rw-r--r--editors/emacs23/Makefile.common11
1 files changed, 10 insertions, 1 deletions
diff --git a/editors/emacs23/Makefile.common b/editors/emacs23/Makefile.common
index 5faa242cb16..02c44258b23 100644
--- a/editors/emacs23/Makefile.common
+++ b/editors/emacs23/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.2 2013/02/23 23:46:37 dholland Exp $
+# $NetBSD: Makefile.common,v 1.3 2013/10/27 20:47:53 joerg Exp $
#
# used by editors/emacs23/Makefile
# used by editors/emacs23-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"