guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 01/10: Rename configure.in to configure.ac, twice


From: Thien-Thi Nguyen
Subject: [Guile-commits] 01/10: Rename configure.in to configure.ac, twice
Date: Fri, 3 Mar 2017 04:17:04 -0500 (EST)

ttn pushed a commit to branch branch_release-1-8
in repository guile.

commit 7c59f65f8181fb08cf666d9d5a11da280a6b3f2c
Author: Thien-Thi Nguyen <address@hidden>
Date:   Fri Mar 3 05:59:49 2017 +0100

    Rename configure.in to configure.ac, twice
    
    * configure.ac: Rename from configure.in.
    * GUILE-VERSION: Update comments; nfc.
    * HACKING: Likewise.
    
    * guile-readline/configure.ac: Rename from guile-readline/configure.in.
    * guile-readline/LIBGUILEREADLINE-VERSION: Update comments; nfc.
    
    * libguile/__scm.h: Likewise.
    * libguile/gen-scmconfig.c: Likewise.
    * libguile/gen-scmconfig.h.in: Likewise.
---
 GUILE-VERSION                                 |  2 +-
 HACKING                                       |  2 +-
 configure.in => configure.ac                  |  0
 guile-readline/LIBGUILEREADLINE-VERSION       |  4 ++--
 guile-readline/{configure.in => configure.ac} |  0
 libguile/__scm.h                              |  2 +-
 libguile/gen-scmconfig.c                      | 10 +++++-----
 libguile/gen-scmconfig.h.in                   |  2 +-
 8 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/GUILE-VERSION b/GUILE-VERSION
index 020f95e..3c22fa5 100644
--- a/GUILE-VERSION
+++ b/GUILE-VERSION
@@ -13,7 +13,7 @@ PACKAGE=guile
 
 # All of the shared lib versioning info.  Right now, for this to work
 # properly, you'll also need to add AC_SUBST calls to the right place
-# in configure.in, add the right -version-info statement to your
+# in configure.ac, add the right -version-info statement to your
 # Makefile.am The only library not handled here is
 # guile-readline/libguile-readline.  It is handled in
 # ./guile-readline/LIBGUILEREADLINE-VERSION.
diff --git a/HACKING b/HACKING
index f6d5185..e6428a1 100644
--- a/HACKING
+++ b/HACKING
@@ -184,7 +184,7 @@ most lenient compiler they can find.  :)
 - If you add code which uses functions or other features that are not
 entirely portable, please make sure the rest of Guile will still
 function properly on systems where they are missing.  This usually
-entails adding a test to configure.in, and then adding #ifdefs to your
+entails adding a test to configure.ac, and then adding #ifdefs to your
 code to disable it if the system's features are missing.
 
 - The normal way of removing a function, macro or variable is to mark
diff --git a/configure.in b/configure.ac
similarity index 100%
rename from configure.in
rename to configure.ac
diff --git a/guile-readline/LIBGUILEREADLINE-VERSION 
b/guile-readline/LIBGUILEREADLINE-VERSION
index e1815ca..df69f7c 100644
--- a/guile-readline/LIBGUILEREADLINE-VERSION
+++ b/guile-readline/LIBGUILEREADLINE-VERSION
@@ -2,9 +2,9 @@
 
 # This file contains the shared library versioning information.  Right
 # now, for this to work properly, you'll also need to add AC_SUBST
-# calls to the right place in configure.in, add the right
+# calls to the right place in configure.ac, add the right
 # -version-info statement to your Makefile.am, and add a call to
-# source this file from configure.in.  Later we may automate more of
+# source this file from configure.ac.  Later we may automate more of
 # this.
 
 LIBGUILEREADLINE_MAJOR=17
diff --git a/guile-readline/configure.in b/guile-readline/configure.ac
similarity index 100%
rename from guile-readline/configure.in
rename to guile-readline/configure.ac
diff --git a/libguile/__scm.h b/libguile/__scm.h
index f4dc80f..0e0e75a 100644
--- a/libguile/__scm.h
+++ b/libguile/__scm.h
@@ -32,7 +32,7 @@
  namespace (via adding #define, typedef, or similar to this file) with
  generic names.  This usually means that any new names should be
  prefixed by either SCM_ or GUILE_.  i.e. do *not* #define HAVE_FOO or
- SIZEOF_BAR.  See configure.in, gen-scmconfig.h.in, and
+ SIZEOF_BAR.  See configure.ac, gen-scmconfig.h.in, and
  gen-scmconfig.c for examples of how to properly handle this issue.
  The main documentation is in gen-scmconfig.c.
 
diff --git a/libguile/gen-scmconfig.c b/libguile/gen-scmconfig.c
index 6d6248c..c94f390 100644
--- a/libguile/gen-scmconfig.c
+++ b/libguile/gen-scmconfig.c
@@ -7,7 +7,7 @@
   Guile has four core headers:
 
     config.h: Guile's private automatically generated configuration
-      header -- generated by configure.in and autoheader.  *NOT*
+      header -- generated by configure.ac and autoheader.  *NOT*
       installed during "make install" and so may not be referred to by
       any public headers.
 
@@ -22,7 +22,7 @@
       the contents of libguile/scmconfig.h.top with the output from
       libguile/gen-scmconfig.  gen-scmconfig bases its output on the
       information in the private config.h header, the contents of
-      gen-scmconfig.h (which is created by configure.in from
+      gen-scmconfig.h (which is created by configure.ac from
       gen-scmconfig.h.in), and the information provided in this file,
       gen-scmconfig.c.
 
@@ -62,9 +62,9 @@
      scmconfig.h.
 
    - in cases where you need to communicate information from
-     configure.in to gen-scmconfig.c, don't add an AC_DEFINE unless
+     configure.ac to gen-scmconfig.c, don't add an AC_DEFINE unless
      you need it for other purposes.  Just add a suitable SCM_I_GSC_*
-     variable to configure.in, set the value, AC_SUBST the value, and
+     variable to configure.ac, set the value, AC_SUBST the value, and
      add an appropriate line to gen-scmconfig.h.in.  All gen-scmconfig
      related AC_SUBST vars should be prefixed with SCM_I_GSC_.
 
@@ -132,7 +132,7 @@ int
 main (int argc, char *argv[])
 {
   pf ("/* This file is automatically generated --"
-      " see configure.in for details */\n"
+      " see configure.ac for details */\n"
       "\n"
       "#ifndef SCM_SCMCONFIG_H\n"
       "#define SCM_SCMCONFIG_H\n");
diff --git a/libguile/gen-scmconfig.h.in b/libguile/gen-scmconfig.h.in
index 4d0e850..0a70783 100644
--- a/libguile/gen-scmconfig.h.in
+++ b/libguile/gen-scmconfig.h.in
@@ -1,4 +1,4 @@
-/* This file is automatically generated via configure.in. */
+/* This file is automatically generated via configure.ac. */
 
 /* This is the private include header for gen-scmconfig.  See
    gen-scmconfig.c for details.  This file should be considered even



reply via email to

[Prev in Thread] Current Thread [Next in Thread]