summaryrefslogtreecommitdiff
path: root/Build/source/texk/configure.in
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-03-20 11:05:11 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-03-20 11:05:11 +0000
commit88542504827505fefe89d2a3547e92146ceb943d (patch)
treed86fd62bf72f548a5ea980033dcc669aa9d7863a /Build/source/texk/configure.in
parent86e05f4101d05860ce03ebdab63d146957b05613 (diff)
new build system
git-svn-id: svn://tug.org/texlive/trunk@12466 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/configure.in')
-rw-r--r--Build/source/texk/configure.in57
1 files changed, 0 insertions, 57 deletions
diff --git a/Build/source/texk/configure.in b/Build/source/texk/configure.in
deleted file mode 100644
index 8c7cf884b9e..00000000000
--- a/Build/source/texk/configure.in
+++ /dev/null
@@ -1,57 +0,0 @@
-dnl Public domain. Originally written many years ago by Karl Berry and
-dnl Thomas Esser, and others.
-dnl
-dnl Top-level configure for kpathsea-using programs.
-dnl Our job is to run configure in the relevant subdirectories.
-dnl
-dnl Assumption: each program will create a c-auto.h that defines
-dnl everything kpathsea needs. We arrange this by including (at
-dnl autoconf time) kpathsea/common.ac.
-dnl
-dnl Consequence: we don't need to run configure in the kpathsea directory
-dnl itself; we can just copy from a program directory. We'll use the
-dnl first one.
-dnl
-AC_INIT(kpathsea/kpathsea.texi)
-
-dnl These configure scripts won't work with anything else.
-AC_PREREQ(2.59)
-
-AC_PROG_MAKE_SET
-
-dnl Because we include make/common.make.
-AC_PROG_CC
-AC_ISC_POSIX
-AC_PROG_LN_S
-
-dnl If we guessed the prefix in the subdirectories, it might guess
-dnl differently than the prefix here, and that would cause confusion.
-AC_PREFIX_PROGRAM(tex)
-
-dnl Pass this down from the top level so that when the subprograms
-dnl install kpathsea a command line value is propagated.
-AC_PROG_INSTALL
-
-dnl If the other programs ever acquire their own --with or --enable
-dnl options, they must be added, so configure --help at the top level
-dnl will show all the options.
-sinclude(libtool.m4)
-sinclude(withenable.ac)
-sinclude(kpathsea/withenable.ac)
-sinclude(web2c/withenable.ac)
-sinclude(xdvik/withenable.ac)
-
-AC_PROG_LIBTOOL
-
-if test "x$with_x" = xno; then
- with_xdvik=no
-fi
-
-dnl required subdirs
-AC_CONFIG_SUBDIRS([kpathsea web2c])
-
-dnl optional subdirs => ESUBDIRS
-KPSE_CONFIG_SUBDIRS(kpse_texk_pkglist)
-
-KPSE_CONFIG_FILES([Makefile])
-AC_OUTPUT