Parcourir la source

* configure.in: generate utils/Makefile
* utils/configure.in: removed so top level configure will take over this
subdir

Ben Collins il y a 27 ans
Parent
commit
4e634f6ee2
4 fichiers modifiés avec 7 ajouts et 35 suppressions
  1. 6 0
      ChangeLog
  2. 0 10
      autogen.sh
  3. 1 2
      configure.in
  4. 0 23
      utils/configure.in

+ 6 - 0
ChangeLog

@@ -1,3 +1,9 @@
+Fri Nov 26 18:09:17 EST 1999 Ben Collins <bcollins@debian.org>
+
+  * configure.in: generate utils/Makefile
+  * utils/configure.in: removed so top level configure will take over this
+    subdir
+
 Fri Nov 26 02:21:56 CET 1999 Wichert Akkerman <wakkerma@debian.org>
 
   * Fix .so-entries for script manpages

+ 0 - 10
autogen.sh

@@ -8,13 +8,3 @@ gettextize $copy -f
 libtoolize --force $copy
 autoheader
 autoconf
-
-# Utils has it's own configure, so we need to repeat this there
-cd utils
-aclocal -I ../automake
-autoheader
-autoconf -l ../
-
-# Return to the previous directory
-cd ..
-

+ 1 - 2
configure.in

@@ -156,8 +156,6 @@ LOCALSTATEDIR=`eval echo $localstatedir`
 AC_DEFINE_UNQUOTED(LLIBDIR, "$LLIBDIR")
 AC_DEFINE_UNQUOTED(LOCALSTATEDIR, "$LOCALSTATEDIR")
 
-AC_CONFIG_SUBDIRS(utils)
-
 AC_OUTPUT(
 Makefile.conf
 Makefile
@@ -172,4 +170,5 @@ scripts/Makefile
 main/Makefile
 dselect/Makefile
 methods/Makefile
+utils/Makefile
 po/Makefile.in)

+ 0 - 23
utils/configure.in

@@ -1,23 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-
-AC_PREREQ([2.12])
-
-AC_INIT(start-stop-daemon.c)
-
-AC_CHECK_TOOL(CC, gcc)
-AC_PROG_CC
-AC_CANONICAL_SYSTEM
-AC_CHECK_TOOL_PREFIX
-
-AM_INIT_AUTOMAKE(start-stop-daemon,[`cat ${srcdir}/../version-nr`])
-
-AC_PREFIX_DEFAULT(/)
-
-AC_PROG_INSTALL
-
-AC_CHECK_HEADERS(error.h hurd.h ps.h hurd/ihash.h)
-
-AC_CHECK_LIB(shouldbeinlibc, fmt_past_time)
-AC_CHECK_LIB(ps, proc_stat_list_pid_proc_stat)
-
-AC_OUTPUT(Makefile)