summaryrefslogtreecommitdiff
path: root/Build/source/texk/etc/autoconf/autoheader.m4
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-05-26 15:58:56 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-05-26 15:58:56 +0000
commit2be0d9eaabb3f79a9a41cb82da8e05d538f20c17 (patch)
tree20b5b8dd4d232d93e0219030f17d8c83c4e82bf1 /Build/source/texk/etc/autoconf/autoheader.m4
parentec6edaec1a0e77818f0b440eb5157011b44eda1d (diff)
remove obsolete build infrastructure (autoconf-2.13 and 2.59)
git-svn-id: svn://tug.org/texlive/trunk@13483 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/etc/autoconf/autoheader.m4')
-rw-r--r--Build/source/texk/etc/autoconf/autoheader.m4110
1 files changed, 0 insertions, 110 deletions
diff --git a/Build/source/texk/etc/autoconf/autoheader.m4 b/Build/source/texk/etc/autoconf/autoheader.m4
deleted file mode 100644
index cb411b0fb73..00000000000
--- a/Build/source/texk/etc/autoconf/autoheader.m4
+++ /dev/null
@@ -1,110 +0,0 @@
-dnl Driver and redefinitions of some Autoconf macros for autoheader.
-dnl This file is part of Autoconf.
-dnl Copyright (C) 1994, 1995 Free Software Foundation, Inc.
-dnl
-dnl This program is free software; you can redistribute it and/or modify
-dnl it under the terms of the GNU General Public License as published by
-dnl the Free Software Foundation; either version 2, or (at your option)
-dnl any later version.
-dnl
-dnl This program is distributed in the hope that it will be useful,
-dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
-dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-dnl GNU General Public License for more details.
-dnl
-dnl You should have received a copy of the GNU General Public License
-dnl along with this program; if not, write to the Free Software
-dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-dnl 02111-1307, USA.
-dnl
-dnl Written by Roland McGrath.
-dnl
-include(acgeneral.m4)dnl
-builtin(include, acspecific.m4)dnl
-builtin(include, acoldnames.m4)dnl
-
-dnl These are alternate definitions of some macros, which produce
-dnl strings in the output marked with "@@@" so we can easily extract
-dnl the information we want. The `#' at the end of the first line of
-dnl each definition seems to be necessary to prevent m4 from eating
-dnl the newline, which makes the @@@ not always be at the beginning of
-dnl a line.
-
-define([AC_CHECK_FUNCS], [#
-@@@funcs="$funcs $1"@@@
-ifelse([$2], , , [
-# If it was found, we do:
-$2
-# If it was not found, we do:
-$3
-])
-])
-
-define([AC_CHECK_HEADERS], [#
-@@@headers="$headers $1"@@@
-ifelse([$2], , , [
-# If it was found, we do:
-$2
-# If it was not found, we do:
-$3
-])
-])
-
-define([AC_CHECK_HEADERS_DIRENT], [#
-@@@headers="$headers $1"@@@
-])
-
-define([AC_CHECK_LIB], [#
- ifelse([$3], , [
-@@@libs="$libs $1"@@@
-], [
-# If it was found, we do:
-$3
-# If it was not found, we do:
-$4
-])
-])
-
-define([AC_HAVE_LIBRARY], [#
-changequote(<<, >>)dnl
-define(<<AC_LIB_NAME>>, dnl
-patsubst(patsubst($1, <<lib\([^\.]*\)\.a>>, <<\1>>), <<-l>>, <<>>))dnl
-changequote([, ])dnl
- ifelse([$2], , [
-@@@libs="$libs AC_LIB_NAME"@@@
-], [
-# If it was found, we do:
-$2
-# If it was not found, we do:
-$3
-])
-])
-
-define([AC_CHECK_SIZEOF], [#
-@@@types="$types,$1"@@@
-])
-
-define([AC_CONFIG_HEADER], [#
-define([AC_CONFIG_H], patsubst($1, [ .*$], []))dnl
-@@@config_h=AC_CONFIG_H@@@
-])
-
-define([AC_DEFINE], [#
-ifelse([$3],,[#
-@@@syms="$syms $1"@@@
-], [#
-@@@verbatim="$verbatim
-/* $3 */
-#undef $1
-"@@@
-])])
-
-define([AC_DEFINE_UNQUOTED], [#
-ifelse([$3],,[#
-@@@syms="$syms $1"@@@
-], [#
-@@@verbatim="$verbatim
-/* $3 */
-#undef $1
-"@@@
-])])