]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acgeneral.m4: Formatting changes.
authorAkim Demaille <akim@epita.fr>
Mon, 7 Feb 2000 16:17:51 +0000 (16:17 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 7 Feb 2000 16:17:51 +0000 (16:17 +0000)
* acspecific.m4: Likewise.

ChangeLog
acgeneral.m4
acspecific.m4
lib/autoconf/general.m4
lib/autoconf/specific.m4

index 59799528fcc670712142c2317142258ffa96e0ed..edef549bbd5e28525724efdf7cc6bbefe80f451e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-02-07  Akim Demaille  <akim@epita.fr>
+
+       * acgeneral.m4: Formatting changes.
+       * acspecific.m4: Likewise.
+
 2000-02-07  Akim Demaille  <akim@epita.fr>
 
        * acspecific.m4 (AC_F77_LIBRARY_LDFLAGS): Don't use FFLAGS_SAVE
index 3db5d462a44d671e3fb46891ff11f97c44147611..9b7e8cc46f949b60f003572d02570dc30d22eb10 100644 (file)
@@ -435,15 +435,15 @@ define(AC_DIVERSION_SED, 8)dnl            variable substitutions in config.status
 define(AC_DIVERSION_CMDS, 9)dnl                extra shell commands in config.status
 define(AC_DIVERSION_ICMDS, 10)dnl      extra initialization in config.status
 
-dnl Change the diversion stream to STREAM, while stacking old values.
 dnl AC_DIVERT_PUSH(STREAM)
+dnl Change the diversion stream to STREAM, while stacking old values.
 define(AC_DIVERT_PUSH,
 [pushdef([AC_DIVERSION_CURRENT], $1)dnl
 divert(AC_DIVERSION_CURRENT)dnl
 ])
 
-dnl Change the diversion stream to its previous value, unstacking it.
 dnl AC_DIVERT_POP()
+dnl Change the diversion stream to its previous value, unstacking it.
 define(AC_DIVERT_POP,
 [popdef([AC_DIVERSION_CURRENT])dnl
 divert(AC_DIVERSION_CURRENT)dnl
@@ -454,8 +454,8 @@ define([AC_DIVERSION_CURRENT], AC_DIVERSION_NORMAL)
 dnl Throw away output until AC_INIT is called.
 pushdef([AC_DIVERSION_CURRENT], AC_DIVERSION_KILL)
 
-dnl The prologue for Autoconf macros.
 dnl AC_PRO(MACRO-NAME)
+dnl The prologue for Autoconf macros.
 define(AC_PRO,
 [define([AC_PROVIDE_$1], )dnl
 ifelse(AC_DIVERSION_CURRENT, AC_DIVERSION_NORMAL,
@@ -463,8 +463,8 @@ ifelse(AC_DIVERSION_CURRENT, AC_DIVERSION_NORMAL,
 [pushdef([AC_DIVERSION_CURRENT], AC_DIVERSION_CURRENT)])dnl
 ])
 
-dnl The Epilogue for Autoconf macros.
 dnl AC_EPI()
+dnl The Epilogue for Autoconf macros.
 define(AC_EPI,
 [AC_DIVERT_POP()dnl
 ifelse(AC_DIVERSION_CURRENT, AC_DIVERSION_NORMAL,
@@ -674,6 +674,7 @@ define(AC_TR_SH,
 
 dnl ### Implementing Autoconf loops
 
+
 dnl AC_FOREACH(VARIABLE, LIST, EXPRESSION)
 dnl --------------------------------------
 dnl
@@ -3018,10 +3019,11 @@ AC_CACHE_CHECK([size of $1], ac_Sizeof,
 int
 main ()
 {
-  FILE *f=fopen("conftestval", "w");
-  if (!f) exit(1);
-  fprintf(f, "%d\n", sizeof([$1]));
-  exit(0);
+  FILE *f = fopen ("conftestval", "w");
+  if (!f)
+     exit (1);
+  fprintf (f, "%d\n", sizeof ([$1]));
+  exit (0);
 }],
   AC_VAR_SET(ac_Sizeof, `cat conftestval`),
   AC_VAR_SET(ac_Sizeof, 0),
@@ -3031,7 +3033,7 @@ AC_VAR_POPDEF([ac_Sizeof])dnl
 ])
 
 
-dnl ### Checking for typedefs
+dnl ### Checking for types
 
 
 # AC_CHECK_TYPE_INTERNAL(TYPE,
index 9fa83ba547b9a280fcaf5d9390cf0445ea88f57c..2b96d01ba7538963770a974b0d6ce4e28b61fd40 100644 (file)
@@ -202,8 +202,8 @@ fi
 ])
 
 
-dnl AC_PROG_CC_WORKS
-dnl ----------------
+# AC_PROG_CC_WORKS
+# ----------------
 AC_DEFUN(AC_PROG_CC_WORKS,
 [AC_MSG_CHECKING([whether the C compiler ($CC $CFLAGS $CPPFLAGS $LDFLAGS) works])
 AC_LANG_SAVE
index 3db5d462a44d671e3fb46891ff11f97c44147611..9b7e8cc46f949b60f003572d02570dc30d22eb10 100644 (file)
@@ -435,15 +435,15 @@ define(AC_DIVERSION_SED, 8)dnl            variable substitutions in config.status
 define(AC_DIVERSION_CMDS, 9)dnl                extra shell commands in config.status
 define(AC_DIVERSION_ICMDS, 10)dnl      extra initialization in config.status
 
-dnl Change the diversion stream to STREAM, while stacking old values.
 dnl AC_DIVERT_PUSH(STREAM)
+dnl Change the diversion stream to STREAM, while stacking old values.
 define(AC_DIVERT_PUSH,
 [pushdef([AC_DIVERSION_CURRENT], $1)dnl
 divert(AC_DIVERSION_CURRENT)dnl
 ])
 
-dnl Change the diversion stream to its previous value, unstacking it.
 dnl AC_DIVERT_POP()
+dnl Change the diversion stream to its previous value, unstacking it.
 define(AC_DIVERT_POP,
 [popdef([AC_DIVERSION_CURRENT])dnl
 divert(AC_DIVERSION_CURRENT)dnl
@@ -454,8 +454,8 @@ define([AC_DIVERSION_CURRENT], AC_DIVERSION_NORMAL)
 dnl Throw away output until AC_INIT is called.
 pushdef([AC_DIVERSION_CURRENT], AC_DIVERSION_KILL)
 
-dnl The prologue for Autoconf macros.
 dnl AC_PRO(MACRO-NAME)
+dnl The prologue for Autoconf macros.
 define(AC_PRO,
 [define([AC_PROVIDE_$1], )dnl
 ifelse(AC_DIVERSION_CURRENT, AC_DIVERSION_NORMAL,
@@ -463,8 +463,8 @@ ifelse(AC_DIVERSION_CURRENT, AC_DIVERSION_NORMAL,
 [pushdef([AC_DIVERSION_CURRENT], AC_DIVERSION_CURRENT)])dnl
 ])
 
-dnl The Epilogue for Autoconf macros.
 dnl AC_EPI()
+dnl The Epilogue for Autoconf macros.
 define(AC_EPI,
 [AC_DIVERT_POP()dnl
 ifelse(AC_DIVERSION_CURRENT, AC_DIVERSION_NORMAL,
@@ -674,6 +674,7 @@ define(AC_TR_SH,
 
 dnl ### Implementing Autoconf loops
 
+
 dnl AC_FOREACH(VARIABLE, LIST, EXPRESSION)
 dnl --------------------------------------
 dnl
@@ -3018,10 +3019,11 @@ AC_CACHE_CHECK([size of $1], ac_Sizeof,
 int
 main ()
 {
-  FILE *f=fopen("conftestval", "w");
-  if (!f) exit(1);
-  fprintf(f, "%d\n", sizeof([$1]));
-  exit(0);
+  FILE *f = fopen ("conftestval", "w");
+  if (!f)
+     exit (1);
+  fprintf (f, "%d\n", sizeof ([$1]));
+  exit (0);
 }],
   AC_VAR_SET(ac_Sizeof, `cat conftestval`),
   AC_VAR_SET(ac_Sizeof, 0),
@@ -3031,7 +3033,7 @@ AC_VAR_POPDEF([ac_Sizeof])dnl
 ])
 
 
-dnl ### Checking for typedefs
+dnl ### Checking for types
 
 
 # AC_CHECK_TYPE_INTERNAL(TYPE,
index 9fa83ba547b9a280fcaf5d9390cf0445ea88f57c..2b96d01ba7538963770a974b0d6ce4e28b61fd40 100644 (file)
@@ -202,8 +202,8 @@ fi
 ])
 
 
-dnl AC_PROG_CC_WORKS
-dnl ----------------
+# AC_PROG_CC_WORKS
+# ----------------
 AC_DEFUN(AC_PROG_CC_WORKS,
 [AC_MSG_CHECKING([whether the C compiler ($CC $CFLAGS $CPPFLAGS $LDFLAGS) works])
 AC_LANG_SAVE