From: David MacKenzie Date: Fri, 17 Nov 1995 21:55:25 +0000 (+0000) Subject: fix some bugs reported by users X-Git-Tag: fsf-origin~238 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0a0bd3eef797acae47fe09630d988bf72e0ae49;p=thirdparty%2Fautoconf.git fix some bugs reported by users --- diff --git a/autoheader.in b/autoheader.in index 53f5d8484..cb6b3034d 100644 --- a/autoheader.in +++ b/autoheader.in @@ -183,7 +183,7 @@ fi echo "$types" | tr , \\012 | sort | uniq | while read ctype; do test -z "$ctype" && continue # Solaris 2.3 tr rejects noncontiguous characters in character classes. - sym="`echo "${ctype}" | tr 'abcdedfghijklmnopqrstuvwxyz *' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ_P'`" + sym="`echo "${ctype}" | tr 'abcdefghijklmnopqrstuvwxyz *' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_P'`" echo " /* The number of bytes in a ${ctype}. */ #undef SIZEOF_${sym}" @@ -192,7 +192,7 @@ done # /bin/sh on the Alpha gives `for' a random value if $funcs is empty. if test -n "$funcs"; then for func in `for x in $funcs; do echo $x; done | sort | uniq`; do - sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the ${func} function. */ #undef HAVE_${sym}" @@ -201,7 +201,8 @@ fi if test -n "$headers"; then for header in `for x in $headers; do echo $x; done | sort | uniq`; do - sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + + sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the <${header}> header file. */ #undef HAVE_${sym}" @@ -210,7 +211,7 @@ fi if test -n "$libs"; then for lib in `for x in $libs; do echo $x; done | sort | uniq`; do - sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the ${lib} library (-l${lib}). */ #undef HAVE_LIB${sym}" diff --git a/autoheader.sh b/autoheader.sh index 53f5d8484..cb6b3034d 100644 --- a/autoheader.sh +++ b/autoheader.sh @@ -183,7 +183,7 @@ fi echo "$types" | tr , \\012 | sort | uniq | while read ctype; do test -z "$ctype" && continue # Solaris 2.3 tr rejects noncontiguous characters in character classes. - sym="`echo "${ctype}" | tr 'abcdedfghijklmnopqrstuvwxyz *' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ_P'`" + sym="`echo "${ctype}" | tr 'abcdefghijklmnopqrstuvwxyz *' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_P'`" echo " /* The number of bytes in a ${ctype}. */ #undef SIZEOF_${sym}" @@ -192,7 +192,7 @@ done # /bin/sh on the Alpha gives `for' a random value if $funcs is empty. if test -n "$funcs"; then for func in `for x in $funcs; do echo $x; done | sort | uniq`; do - sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the ${func} function. */ #undef HAVE_${sym}" @@ -201,7 +201,8 @@ fi if test -n "$headers"; then for header in `for x in $headers; do echo $x; done | sort | uniq`; do - sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + + sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the <${header}> header file. */ #undef HAVE_${sym}" @@ -210,7 +211,7 @@ fi if test -n "$libs"; then for lib in `for x in $libs; do echo $x; done | sort | uniq`; do - sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the ${lib} library (-l${lib}). */ #undef HAVE_LIB${sym}" diff --git a/bin/autoheader.in b/bin/autoheader.in index 53f5d8484..cb6b3034d 100644 --- a/bin/autoheader.in +++ b/bin/autoheader.in @@ -183,7 +183,7 @@ fi echo "$types" | tr , \\012 | sort | uniq | while read ctype; do test -z "$ctype" && continue # Solaris 2.3 tr rejects noncontiguous characters in character classes. - sym="`echo "${ctype}" | tr 'abcdedfghijklmnopqrstuvwxyz *' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ_P'`" + sym="`echo "${ctype}" | tr 'abcdefghijklmnopqrstuvwxyz *' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_P'`" echo " /* The number of bytes in a ${ctype}. */ #undef SIZEOF_${sym}" @@ -192,7 +192,7 @@ done # /bin/sh on the Alpha gives `for' a random value if $funcs is empty. if test -n "$funcs"; then for func in `for x in $funcs; do echo $x; done | sort | uniq`; do - sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the ${func} function. */ #undef HAVE_${sym}" @@ -201,7 +201,8 @@ fi if test -n "$headers"; then for header in `for x in $headers; do echo $x; done | sort | uniq`; do - sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + + sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the <${header}> header file. */ #undef HAVE_${sym}" @@ -210,7 +211,7 @@ fi if test -n "$libs"; then for lib in `for x in $libs; do echo $x; done | sort | uniq`; do - sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdedfghijklmnopqrstuvwxyz' 'ABCDEDFGHIJKLMNOPQRSTUVWXYZ'`" + sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`" echo " /* Define if you have the ${lib} library (-l${lib}). */ #undef HAVE_LIB${sym}" diff --git a/configure b/configure index acef931e0..20f477bba 100755 --- a/configure +++ b/configure @@ -48,6 +48,7 @@ mandir='${prefix}/man' # Initialize some other variables. subdirs= +MFLAGS= MAKEFLAGS= ac_prev= for ac_option