]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
authorAkim Demaille <akim@epita.fr>
Thu, 31 May 2001 15:44:27 +0000 (15:44 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 31 May 2001 15:44:27 +0000 (15:44 +0000)
Add copyright and comments.
* acheaders: Add stdint.h.
Suggested by Paul Eggert.

ChangeLog
acfunctions
acheaders
acidentifiers
acmakevars
acprograms
lib/autoscan/functions
lib/autoscan/headers
lib/autoscan/identifiers
lib/autoscan/makevars
lib/autoscan/programs

index 880105167291f76db36c4e2ea5b3c68e827d5301..5ad8e9ea0dccd26dc412fb52da3ada9a00ecaecb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-05-31  Akim Demaille  <akim@epita.fr>
+
+       * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
+       Add copyright and comments.
+       * acheaders: Add stdint.h.
+       Suggested by Paul Eggert.
+
 2001-05-31  Akim Demaille  <akim@epita.fr>
 
        * atgeneral.m4 (AT_INIT): Use $SHELL.
index ba1618853ec978fe16c94e576224084b084d01a9..b0bcee3da5c9ea565fdb757485f16b515f06217f 100644 (file)
@@ -1,3 +1,22 @@
+# acfunctions -- autoscan's mapping from functions to Autoconf macros
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
 # Ones that have their own macros.
 alloca         AC_FUNC_ALLOCA
 bcmp           AC_HEADER_STDC
@@ -43,7 +62,7 @@ vprintf               AC_FUNC_VPRINTF
 vsprintf       AC_FUNC_VPRINTF
 wait3          AC_FUNC_WAIT3
 
-# Others.
+# Others, checked with AC_CHECK_FUNCS.
 __argz_count
 __argz_next
 __argz_stringify
@@ -152,3 +171,7 @@ utmpname
 utmpxname
 vprintf
 wcwidth
+
+# Local Variables:
+# mode: shell-script
+# End:
index 1b84723b545f4d2bf219675c622838cbc4ae3949..2b343d107300e3cd4ad8f67a6b468cf3e257602d 100644 (file)
--- a/acheaders
+++ b/acheaders
@@ -1,3 +1,22 @@
+# acheaders -- autoscan's mapping from headers to Autoconf macros
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
 # Ones that have their own macros.
 X11/Xlib.h     AC_PATH_X
 dirent.h       AC_HEADER_DIRENT
@@ -12,7 +31,7 @@ sys/mkdev.h   AC_HEADER_MAJOR
 sys/ndir.h     AC_HEADER_DIRENT
 sys/wait.h     AC_HEADER_SYS_WAIT
 
-# Others, to checked with AC_CHECK_HEADERS.
+# Others, checked with AC_CHECK_HEADERS.
 OS.h
 alloca.h
 argz.h
@@ -40,6 +59,7 @@ paths.h
 sgtty.h
 shadow.h
 stddef.h
+stdint.h
 stdio_ext.h
 stdlib.h
 string.h
@@ -73,3 +93,7 @@ utmpx.h
 values.h
 wchar.h
 wctype.h
+
+# Local Variables:
+# mode: shell-script
+# End:
index ebf620088fbf44f248380c70a0915fd835ed2d6b..8c6059ba5771b8586d911023a56f8ae96bc4c7e6 100644 (file)
@@ -1,4 +1,22 @@
-# acidentifiers -- identifiers which are not involved in function calls.
+# acindentifiers -- autoscan's mapping from identifiers which are not
+# involved in function calls to Autoconf macros.
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
 
 # Keywords.
 const          AC_C_CONST
@@ -33,3 +51,7 @@ st_blksize    AC_CHECK_MEMBERS([struct stat.st_blksize])
 st_blocks      AC_STRUCT_ST_BLOCKS
 st_rdev                AC_CHECK_MEMBERS([struct stat.st_rdev])
 tm_zone                AC_STRUCT_TIMEZONE
+
+# Local Variables:
+# mode: shell-script
+# End:
index 721b79ba27d6073434979b2e0ef275b3ee988865..d19760db2d12dbe1ac345fd946879371682d017d 100644 (file)
@@ -1,3 +1,22 @@
+# acmakevars -- autoscan's mapping from Make variables to Autoconf macros
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
 LN             AC_PROG_LN_S
 AWK            AC_PROG_AWK
 CC             AC_PROG_CC
@@ -9,3 +28,7 @@ RANLIB         AC_PROG_RANLIB
 YACC           AC_PROG_YACC
 BISON          AC_PROG_YACC
 MAKE           AC_PROG_MAKE_SET
+
+# Local Variables:
+# mode: shell-script
+# End:
index be237e31c7e0edc52bb5d7a1e5f869a862def685..0a5a70a0ea0580e5cc22ff69162d64a35e67518b 100644 (file)
@@ -1,3 +1,22 @@
+# acprograms -- autoscan's mapping from programs to Autoconf macros
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
 ln             AC_PROG_LN_S
 awk            AC_PROG_AWK
 nawk           AC_PROG_AWK
@@ -16,3 +35,7 @@ yacc          AC_PROG_YACC
 byacc          AC_PROG_YACC
 bison          AC_PROG_YACC
 make           AC_PROG_MAKE_SET
+
+# Local Variables:
+# mode: shell-script
+# End:
index ba1618853ec978fe16c94e576224084b084d01a9..b0bcee3da5c9ea565fdb757485f16b515f06217f 100644 (file)
@@ -1,3 +1,22 @@
+# acfunctions -- autoscan's mapping from functions to Autoconf macros
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
 # Ones that have their own macros.
 alloca         AC_FUNC_ALLOCA
 bcmp           AC_HEADER_STDC
@@ -43,7 +62,7 @@ vprintf               AC_FUNC_VPRINTF
 vsprintf       AC_FUNC_VPRINTF
 wait3          AC_FUNC_WAIT3
 
-# Others.
+# Others, checked with AC_CHECK_FUNCS.
 __argz_count
 __argz_next
 __argz_stringify
@@ -152,3 +171,7 @@ utmpname
 utmpxname
 vprintf
 wcwidth
+
+# Local Variables:
+# mode: shell-script
+# End:
index 1b84723b545f4d2bf219675c622838cbc4ae3949..2b343d107300e3cd4ad8f67a6b468cf3e257602d 100644 (file)
@@ -1,3 +1,22 @@
+# acheaders -- autoscan's mapping from headers to Autoconf macros
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
 # Ones that have their own macros.
 X11/Xlib.h     AC_PATH_X
 dirent.h       AC_HEADER_DIRENT
@@ -12,7 +31,7 @@ sys/mkdev.h   AC_HEADER_MAJOR
 sys/ndir.h     AC_HEADER_DIRENT
 sys/wait.h     AC_HEADER_SYS_WAIT
 
-# Others, to checked with AC_CHECK_HEADERS.
+# Others, checked with AC_CHECK_HEADERS.
 OS.h
 alloca.h
 argz.h
@@ -40,6 +59,7 @@ paths.h
 sgtty.h
 shadow.h
 stddef.h
+stdint.h
 stdio_ext.h
 stdlib.h
 string.h
@@ -73,3 +93,7 @@ utmpx.h
 values.h
 wchar.h
 wctype.h
+
+# Local Variables:
+# mode: shell-script
+# End:
index ebf620088fbf44f248380c70a0915fd835ed2d6b..8c6059ba5771b8586d911023a56f8ae96bc4c7e6 100644 (file)
@@ -1,4 +1,22 @@
-# acidentifiers -- identifiers which are not involved in function calls.
+# acindentifiers -- autoscan's mapping from identifiers which are not
+# involved in function calls to Autoconf macros.
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
 
 # Keywords.
 const          AC_C_CONST
@@ -33,3 +51,7 @@ st_blksize    AC_CHECK_MEMBERS([struct stat.st_blksize])
 st_blocks      AC_STRUCT_ST_BLOCKS
 st_rdev                AC_CHECK_MEMBERS([struct stat.st_rdev])
 tm_zone                AC_STRUCT_TIMEZONE
+
+# Local Variables:
+# mode: shell-script
+# End:
index 721b79ba27d6073434979b2e0ef275b3ee988865..d19760db2d12dbe1ac345fd946879371682d017d 100644 (file)
@@ -1,3 +1,22 @@
+# acmakevars -- autoscan's mapping from Make variables to Autoconf macros
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
 LN             AC_PROG_LN_S
 AWK            AC_PROG_AWK
 CC             AC_PROG_CC
@@ -9,3 +28,7 @@ RANLIB         AC_PROG_RANLIB
 YACC           AC_PROG_YACC
 BISON          AC_PROG_YACC
 MAKE           AC_PROG_MAKE_SET
+
+# Local Variables:
+# mode: shell-script
+# End:
index be237e31c7e0edc52bb5d7a1e5f869a862def685..0a5a70a0ea0580e5cc22ff69162d64a35e67518b 100644 (file)
@@ -1,3 +1,22 @@
+# acprograms -- autoscan's mapping from programs to Autoconf macros
+# Copyright 1992, 1993, 1994, 1996, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
 ln             AC_PROG_LN_S
 awk            AC_PROG_AWK
 nawk           AC_PROG_AWK
@@ -16,3 +35,7 @@ yacc          AC_PROG_YACC
 byacc          AC_PROG_YACC
 bison          AC_PROG_YACC
 make           AC_PROG_MAKE_SET
+
+# Local Variables:
+# mode: shell-script
+# End: