diff options
author | minoura <minoura> | 2000-03-01 07:16:58 +0000 |
---|---|---|
committer | minoura <minoura> | 2000-03-01 07:16:58 +0000 |
commit | 8f260c05f33bc5c37e40ee50aae23f4e985d5ab5 (patch) | |
tree | 0e6a09ce6353cd6053cde997a8b9d5a59ea918c3 /editors | |
parent | 5dd6cf3ea0a5758aa5dbb2a8c57e06d7e7bc4fb9 (diff) | |
download | pkgsrc-8f260c05f33bc5c37e40ee50aae23f4e985d5ab5.tar.gz |
Patch for configure.in.
Not used for building but useful to update to 20.6 (and later).
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs/files/patch-sum | 4 | ||||
-rw-r--r-- | editors/emacs/patches/patch-bg | 37 |
2 files changed, 39 insertions, 2 deletions
diff --git a/editors/emacs/files/patch-sum b/editors/emacs/files/patch-sum index f8b2d1c23a4..6e7cf3834fc 100644 --- a/editors/emacs/files/patch-sum +++ b/editors/emacs/files/patch-sum @@ -1,4 +1,4 @@ -$NetBSD: patch-sum,v 1.6 2000/03/01 05:07:41 minoura Exp $ +$NetBSD: patch-sum,v 1.7 2000/03/01 07:16:58 minoura Exp $ MD5 (patch-aa) = 41d31356a0b856d789ded3ef10bb4349 MD5 (patch-ab) = 8ccfa30c06be5b92e3e0842d2ced41ac @@ -18,4 +18,4 @@ MD5 (patch-bc) = f38d4bc4159920c81cb7d5f3770ace48 MD5 (patch-bd) = bc7abc1a87d941ddca395bec3115c374 MD5 (patch-be) = 29894f88b9b2fb6f6c2c802b2f7e41ec MD5 (patch-bf) = 5af3c12a104c1b6caa0a95ffac9f56a3 -MD5 (patch-bg) = e6e62f07d52bdb13ea061436c2934d84 +MD5 (patch-bg) = dc67e06faf1cdc599a9ede1a73e520cb diff --git a/editors/emacs/patches/patch-bg b/editors/emacs/patches/patch-bg new file mode 100644 index 00000000000..0405adec27b --- /dev/null +++ b/editors/emacs/patches/patch-bg @@ -0,0 +1,37 @@ +$NetBSD: patch-bg,v 1.1 2000/03/01 07:16:59 minoura Exp $ + +--- configure.in.orig Mon Nov 29 03:18:39 1999 ++++ configure.in Tue Feb 29 14:10:24 2000 +@@ -66,6 +66,8 @@ + esac + with_x_toolkit=$val + ]) ++AC_ARG_WITH(ipv6, ++[ --with-ipv6 support IPv6 stack]) + + #### Make srcdir absolute, if it isn't already. It's important to + #### avoid running the path through pwd unnecessary, since pwd can +@@ -158,9 +160,12 @@ + machine=hp9000s300 ;; + powerpc-apple-netbsd*) machine=macppc ;; + mips-*-netbsd*) machine=pmax ;; ++ mipsel-*-netbsd*) machine=pmax ;; + ns32k-*-netbsd*) machine=ns32000 ;; ++ powerpc-*-netbsd*) machine=powerpc ;; + sparc-*-netbsd*) machine=sparc ;; + vax-*-netbsd*) machine=vax ;; ++ arm*-*-netbsd*) machine=arm ;; + esac + ;; + +@@ -1724,6 +1729,10 @@ + + if test -f /usr/lpp/X11/bin/smt.exp; then + AC_DEFINE(HAVE_AIX_SMT_EXP) ++fi ++ ++if test "x$with_ipv6" = xyes; then ++ AC_CHECK_FUNCS(getaddrinfo) + fi + + # Set up the CFLAGS for real compilation, so we can substitute it. |