From: Akim Demaille Date: Thu, 24 Jan 2002 17:15:54 +0000 (+0000) Subject: * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS) X-Git-Tag: AUTOCONF-2.52g~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb93e2e245d2b5fae65512052b883f824ae252dd;p=thirdparty%2Fautoconf.git * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS) (_AC_INIT_PREPARE): Support -n as --no-create, as documented. Reported by Geir Ove Myhr. --- diff --git a/ChangeLog b/ChangeLog index 1b6cfa46e..fab7736db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-01-24 Akim Demaille + + * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS) + (_AC_INIT_PREPARE): Support -n as --no-create, as documented. + Reported by Geir Ove Myhr. + 2002-01-21 Akim Demaille * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc. diff --git a/THANKS b/THANKS index b3f50c201..1dfa27787 100644 --- a/THANKS +++ b/THANKS @@ -51,6 +51,7 @@ Ezra Peisach epeisach@zif.mit.edu Felix Lee flee@cygnus.com Franc,ois Pinard pinard@iro.umontreal.ca Gary V. Vaughan gvaughan@oranda.demon.co.uk +Geir Ove Myhr myhr@stud.fim.ntnu.no Gerrit P. Haase gp@familiehaase.de Giuseppe Guerrini guisguerrini@racine.ra.it Glenn P. Davis davis@unidata.ucar.edu diff --git a/configure b/configure index 4a60845bb..1426b9331 100755 --- a/configure +++ b/configure @@ -432,7 +432,7 @@ do with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c) + | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ @@ -919,7 +919,7 @@ for ac_arg do case $ac_arg in -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c) continue ;; + | --no-cr | --no-c | -n ) continue ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) continue ;; diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4 index 1e1ea3e71..b341016f0 100644 --- a/lib/autoconf/general.m4 +++ b/lib/autoconf/general.m4 @@ -709,7 +709,7 @@ do with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c) + | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ @@ -1130,7 +1130,7 @@ for ac_arg do case $ac_arg in -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c) continue ;; + | --no-cr | --no-c | -n ) continue ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) continue ;;