diff options
author | Cy Schubert <cy@FreeBSD.org> | 2002-04-21 16:25:02 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2002-04-21 16:25:02 +0000 |
commit | 6d25bcb88dbe8ba88134152f42627e1330a4cd59 (patch) | |
tree | 58d84bbb843a9effb984acff37189c8afb54d6ab /mail/nmh/files/patch-ac | |
parent | Update to 0.1.0 (diff) |
Fix the following:
* Alphabetize the comments on the Makefile variables that affect the
configure process.
* Add a new NMH_EXTRA_CONFIGURE_ARGS var to let builder pass extra args
through to configure.
* Add a new NMH_POP var to allow builder to disable the --enable-pop
configure setting.
* Take 'uname' out of the AC_CHECK_FUNCS so the configure script never sets
HAVE_UNAME, so that it only uses gethostname(3) to get the hostname.
The HAVE_UNAME #define is only used in zotnet/mts/mts.c and it uses
gethostname(3) in its stead both times.
PR: 36307
Submitted by: MAINTAINER: Scott Blachowicz <Scott.Blachowicz@seaslug.org>
Notes
Notes:
svn path=/head/; revision=57957
Diffstat (limited to 'mail/nmh/files/patch-ac')
-rw-r--r-- | mail/nmh/files/patch-ac | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/mail/nmh/files/patch-ac b/mail/nmh/files/patch-ac index cdec2d44e152..c9ffcc5168f4 100644 --- a/mail/nmh/files/patch-ac +++ b/mail/nmh/files/patch-ac @@ -1,6 +1,6 @@ ---- ../../nmh-1.0.2-DIST/configure.in Tue Oct 26 14:12:37 1999 -+++ ./configure.in Sat Dec 11 11:54:28 1999 -@@ -160,6 +160,11 @@ +--- ../../../nmh-1.0.4/configure.in Wed Mar 15 15:37:30 2000 ++++ ./configure.in Sun Mar 31 18:55:06 2002 +@@ -193,6 +193,11 @@ dnl ------------------ AC_PROG_MAKE_SET dnl Does make define $MAKE AC_PROG_INSTALL dnl Check for BSD compatible `install' @@ -12,3 +12,12 @@ AC_PROG_RANLIB dnl Check for `ranlib' AC_PROG_AWK dnl Check for mawk,gawk,nawk, then awk AC_PROG_LEX dnl Check for lex/flex +@@ -389,7 +394,7 @@ + AC_FUNC_VFORK + AC_CHECK_LIB(mkstemp,mkstemp) + AC_CHECK_FUNCS(waitpid wait3 sigaction sigprocmask sigblock sigsetmask \ +- sighold sigrelse writev lstat uname tzset killpg mkstemp \ ++ sighold sigrelse writev lstat tzset killpg mkstemp \ + sethostent) + + dnl solaris screws this up |