(PKGDIR, GZIPPROG): New variables.
* aclocal.m4 (WITH_NETLIB): Don't look for socket lib on Irix.
* aclocal.m4 (MAKE_SUBDIRS): Disable hack that tries to determine if "-k" or
"-i" was given.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7882
dc483132-0cff-0310-8789-
dd5450dbe970
+Tue Apr 30 23:25:07 1996 Ken Raeburn <raeburn@cygnus.com>
+
+ * Makefile.in (tgz-bin, pkgdir): New targets.
+ (PKGDIR, GZIPPROG): New variables.
+
+ * aclocal.m4 (WITH_NETLIB): Don't look for socket lib on Irix.
+
+ * aclocal.m4 (MAKE_SUBDIRS): Disable hack that tries to determine
+ if "-k" or "-i" was given.
+
Wed Apr 24 03:49:06 1996 Ezra Peisach <epeisach@kangaroo.mit.edu>
* aclocal.m4 (V5_USE_SHARED_LIB): Remove another dependency in the
tar chzf `cat .fname`.tar.gz `cat .fname`
rm -rf `cat .fname` .fname
+GZIPPROG= gzip -9v
+PKGDIR=`pwd`/pkgdir
+pkgdir:
+ if test ! -d $(PKGDIR); then mkdir $(PKGDIR); else true; fi
+tgz-bin: pkgdir
+ rm -rf $(PKGDIR)/install cns5-bin.tgz
+ mkdir $(PKGDIR)/install
+ $(MAKE) install DESTDIR=$(PKGDIR)/install
+ (cd $(PKGDIR)/install && tar cf - usr/cygnus) | $(GZIPPROG) > cns5-bin.tgz
+ rm -rf $(PKGDIR)/install
+
# Macintosh build process...
# Build all things for the Mac build, which need to be built on
as aclocal.m4, so autoreconf causes autoheader to find it. Nothing actually
includes this file, it is always processed into something else. */
+/* Don't use too large a block, because the autoheader processing can't
+ handle it on some systems. */
+
#undef ANSI_STDIO
#undef HAS_SETVBUF
#undef HAS_STDLIB_H
AC_PUSH_MAKEFILE()dnl
changequote(<<<,>>>)dnl
-$2::<<<
- @case "`echo '$(MAKEFLAGS)'|sed -e 's/ --.*$$//'`" in \
- *[ik]*) e=:;; *) e="exit 1";; esac; \
+$2::
+dnl These don't work well with some versions of GNU make.
+dnl @case "`echo '$(MAKEFLAGS)'|sed -e 's/ --.*$$//'`" in \
+dnl *[ik]*) e=:;; *) e="exit 1";; esac; \
+<<< @e="exit 1";\
for i in $(SUBDIRS) ; do \
if test -d $$i ; then \
echo>>> $1 <<<"in $(CURRENT_DIR)$$i..."; \
AC_MSG_RESULT("netlib will use \'$withval\'")
fi
,dnl
-[AC_CHECK_LIB(socket,main)
+[if test "`(uname) 2>/dev/null`" != IRIX ; then
+ AC_CHECK_LIB(socket,main)
+fi
AC_CHECK_LIB(nsl,main)]
)])dnl
dnl