diff options
Diffstat (limited to 'Build/source/texk/dvipdfm/configure.in.orig')
-rw-r--r-- | Build/source/texk/dvipdfm/configure.in.orig | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Build/source/texk/dvipdfm/configure.in.orig b/Build/source/texk/dvipdfm/configure.in.orig new file mode 100644 index 00000000000..26fef88d265 --- /dev/null +++ b/Build/source/texk/dvipdfm/configure.in.orig @@ -0,0 +1,58 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT(dvipdfm.c) + +define([_version_],"0.13.2d") + +VERSION=_version_ +AC_SUBST(VERSION) +AC_DEFINE(VERSION, _version_, [package version]) +AC_DEFINE(PACKAGE, "dvipdfm", [package name]) + +AC_CONFIG_HEADERS([c-auto.h:c-auto.in], [date >stamp-auto]) + +dnl Checks for programs. +AC_PROG_CC +AC_PROG_CPP +AC_PROG_INSTALL +AC_PROG_LN_S +AC_PROG_MAKE_SET + +sinclude(../kpathsea/withenable.ac) +sinclude(../../libs/zlib/withenable.ac) +sinclude(../../libs/libpng/withenable.ac) +sinclude(../../libs/zlib/zlib.ac) +sinclude(../../libs/libpng/libpng.ac) + +AC_DEFINE([HAVE_KPATHSEA], 1, [define if you have kpathsea]) +AC_DEFINE([HAVE_XBASENAME], 1, [define if you have xbasename() in your libkpathsea instead of basename()]) +AC_DEFINE([HAVE_ZLIB], 1, [define if you have zlib and its headers]) +AC_DEFINE([HAVE_ZLIB_COMPRESS2], 1, [define if your zlib has the compress2 function]) +AC_DEFINE([HAVE_KPSE_FORMATS], 1, [define if kpathsea supports type1 and vf formats]) +AC_DEFINE([HAVE_OMEGA_FORMATS], 1, [Define if kpathsea understands Omega (OFM/OVF) formats]) +AC_DEFINE([HAVE_TTF_FORMATS], 1, [define if kpathsea understands TrueType (TTF) formats]) +AC_DEFINE([HAVE_LIBPNG], 1, [define if you have libpng]) +TTF_OPT='' +AC_SUBST(TTF_OPT) + +# TEXMF='${datadir}/texmf' +# AC_SUBST(TEXMF) + +dnl Checks for header files. +AC_HEADER_STDC +AC_CHECK_HEADERS(unistd.h) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_EXT_TIMEZONE +AC_TZ_HAS_TM_GMTOFF + +AC_C_CONST +AC_TYPE_SIZE_T +AC_STRUCT_TM + +dnl Checks for library functions. +AC_FUNC_MEMCMP +AC_CHECK_FUNCS(strspn system) +AC_CHECK_LIB(m, main) + +KPSE_CONFIG_FILES([Makefile]) +AC_OUTPUT |