]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* configure.in: Replace `dnl' comments with `#' comments for
authorGary V. Vaughan <gary@gnu.org>
Sat, 16 Sep 2000 00:52:20 +0000 (00:52 +0000)
committerGary V. Vaughan <gary@gnu.org>
Sat, 16 Sep 2000 00:52:20 +0000 (00:52 +0000)
more conformity with cvs autoconf.
Removed emacs hack-local-variables, since there is now a
proper Autoconf major mode.
Removed a couple of changequote()s.

ChangeLog
configure.in

index 2b9d48ab8c6eafb7320bd175759fa8a17f611be1..f15c34345151d1031aac3b4d158e0ffbb54282ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2000-09-16  Gary V. Vaughan  <gvv@techie.com>
 
+       * configure.in: Replace `dnl' comments with `#' comments for
+       more conformity with cvs autoconf.
+       Removed emacs hack-local-variables, since there is now a
+       proper Autoconf major mode.
+       Removed a couple of changequote()s.
+
        * bootstrap (ltconfig): When bootstrapping libtool with a
        stock automake (i.e. without the README patch applied),
        references to ltconfig are manually removed from the generated
index 3dc0beb010e4144983f9bca9673c6f08b561ce89..2ae5f2073fb67e240a31cbfc133f07f010b17a2c 100644 (file)
@@ -1,4 +1,4 @@
-dnl Process this file with autoconf to create configure.
+## Process this file with autoconf to create configure.
 
 AC_INIT(ltmain.in)
 
@@ -9,9 +9,7 @@ AM_INIT_AUTOMAKE(libtool, 1.3c)
 # versions (i.e. "odd" letters) and not actual alpha releases.
 TIMESTAMP=
 case "$VERSION" in
-changequote(,)
-  *[acegikmoqsuwy]) 
-changequote([,])
+  [*[acegikmoqsuwy])]
     TIMESTAMP=`${CONFIG_SHELL} ${srcdir}/mkstamp < ${srcdir}/ChangeLog`
     banner="Configuring $PACKAGE $VERSION$TIMESTAMP"
     dashes=`echo "$banner" | sed 's/./-/g'`
@@ -27,11 +25,11 @@ esac
 AC_SUBST(TIMESTAMP)
 
 pkgdatadir='${datadir}'"/${PACKAGE}"
-AC_SUBST(pkgdatadir) dnl automake does not need this, but libtoolize does
+AC_SUBST(pkgdatadir) # automake does not need this, but libtoolize does
 aclocaldir='${datadir}/aclocal'
 AC_SUBST(aclocaldir)
 
-dnl Use the specified CC and LD
+# Use the specified CC and LD
 AC_PROG_CC
 AM_PROG_LD
 AC_SUBST(LD)
@@ -39,10 +37,10 @@ AM_PROG_NM
 AC_SUBST(NM)
 AC_PROG_LN_S
 
-dnl Check for win32 dll support
+# Declare win32 dll support
 AC_LIBTOOL_WIN32_DLL
 
-dnl Check for dlopen support
+# Check for dlopen support
 AC_LIBTOOL_DLOPEN
 AC_PROG_LIBTOOL
 
@@ -54,8 +52,8 @@ if test x"${enable_ltdl_install+set}" != xset; then
 fi
 AC_CONFIG_SUBDIRS(libltdl)
 
-dnl all subdirectories that are configured on demand, but that must be
-dnl included in the distribution
+# all subdirectories that are configured on demand, but that must be
+# included in the distribution
 CONF_SUBDIRS="cdemo demo depdemo mdemo"
 AC_SUBST(CONF_SUBDIRS)
 
@@ -69,8 +67,3 @@ AC_SUBST(ACINCLUDE_M4_LIST)
 AC_SUBST(DIST_MAKEFILE_LIST)
 
 AC_OUTPUT([Makefile doc/Makefile tests/Makefile ltmain.sh:ltmain.in])
-
-# Local Variables:
-# mode:shell-script
-# sh-indentation:2
-# End: