in it.
/uip/whatnow
/uip/whom
/nmh-*.tar.gz
+/aclocal.m4
*.o
*.1
*.5
# all files in this directory included in the distribution
DIST = ChangeLog COPYRIGHT DATE INSTALL MACHINES README VERSION \
- ChangeLog install-sh mkinstalldirs Makefile.in aclocal.m4 \
+ ChangeLog install-sh mkinstalldirs Makefile.in \
config.h.in configure.ac configure stamp-h.in \
config.sub config.guess
config.status: configure VERSION
./config.status --recheck
-configure: configure.ac aclocal.m4
+configure: configure.ac
cd $(srcdir) && autoconf
config.h: stamp-h
./config.status config.h stamp
config.h.in: stamp-h.in
-stamp-h.in: configure.ac aclocal.m4
+stamp-h.in: configure.ac
cd $(srcdir) && autoheader
date > $@
# building from a distributed tarball.
set -e
+aclocal -I m4
autoreconf
date > stamp-h.in
dnl define a macro or two
dnl ---------------------
-AC_DEFUN(NMH_PROG_GNU_LIBTOOL, [
+AC_DEFUN([NMH_PROG_GNU_LIBTOOL], [
if test -n "$LIBTOOL" ; then
tmptest=`$LIBTOOL --version 2>&1 | grep GNU`
if test x"$tmptest" != x ; then
-
-#
-# Updated for more modern systems. Check to see if we need to link against
-# optional libraries for networking functions.
-#
-
-AC_DEFUN([NMH_CHECK_NETLIBS],
-[AC_SEARCH_LIBS([gethostbyname], [nsl], ,
- [AC_MSG_ERROR([gethostbyname not found])])
- AC_SEARCH_LIBS([connect], [socket], , [AC_MSG_ERROR([connect not found])])
-])dnl
-
dnl --------------
dnl CHECK FOR NDBM
dnl --------------
dnl using this macro autoconf complains about a recursive
dnl expansion.
-AC_DEFUN(NMH_CHECK_NDBM,
+AC_DEFUN([NMH_CHECK_NDBM],
[
if test "x$2" = "x"; then
nmh_libs=
--- /dev/null
+dnl
+dnl Updated for more modern systems. Check to see if we need to link against
+dnl optional libraries for networking functions.
+dnl
+
+AC_DEFUN([NMH_CHECK_NETLIBS],
+[AC_SEARCH_LIBS([gethostbyname], [nsl], ,
+ [AC_MSG_ERROR([gethostbyname not found])])
+ AC_SEARCH_LIBS([connect], [socket], , [AC_MSG_ERROR([connect not found])])
+])dnl