changeset 3785:a8f572c03a7c

[project @ 2001-02-07 17:26:15 by jwe]
author jwe
date Wed, 07 Feb 2001 17:26:16 +0000
parents 097af73b5f4f
children 9bb6e4197fc5
files ChangeLog autogen.sh readline/ChangeLog readline/config.h.in
diffstat 4 files changed, 26 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Feb 07 17:17:30 2001 +0000
+++ b/ChangeLog	Wed Feb 07 17:26:16 2001 +0000
@@ -1,3 +1,7 @@
+2001-02-07  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* autogen.sh: Allow running of autoconf or autoheader to be skipped.
+
 2001-02-06  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* readline: Update to new version (4.2-beta1).
--- a/autogen.sh	Wed Feb 07 17:17:30 2001 +0000
+++ b/autogen.sh	Wed Feb 07 17:26:16 2001 +0000
@@ -23,10 +23,19 @@
 }
 
 for i in `find . -name configure.in -print`; do (
-    cd `dirname $i`
+    dir=`dirname $i`
+    cd $dir
     pwd
-    autoconf 
-    autoheader
+    if [ -f skip-autoconf ]; then
+      echo "skipping autoconf in $dir"
+    else
+      autoconf
+    fi
+    if [ -f skip-autoheader ]; then
+      echo "skipping autoheader in $dir"
+    else
+      autoheader
+    fi
 ); done
 
 echo done
--- a/readline/ChangeLog	Wed Feb 07 17:17:30 2001 +0000
+++ b/readline/ChangeLog	Wed Feb 07 17:26:16 2001 +0000
@@ -1,3 +1,7 @@
+2001-02-07  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* skip-autoheader: New file.
+
 2001-02-06  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* terminal.c (rl_get_screen_size): New function.
--- a/readline/config.h.in	Wed Feb 07 17:17:30 2001 +0000
+++ b/readline/config.h.in	Wed Feb 07 17:26:16 2001 +0000
@@ -1,4 +1,9 @@
-/* config.h.in.  Generated automatically from configure.in by autoheader.  */
+/* config.h.in.  */
+
+/* This file was created by hand, NOT autoheader.  There is no
+   config.h.bot file or acconfig.h file in the readline sources.  If
+   you run autoheader in this directory, you will end up with a
+   broken config.h.in file.  */
 
 /* Define if on MINIX.  */
 #undef _MINIX