diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2012-08-18 03:29:55 +0000 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2012-08-18 03:29:55 +0000 |
commit | db17d5c10a299313921c3b7abd582bd29fa5962c (patch) | |
tree | 4e799e9818be538ab315e1779f1ec50027bd33f2 /Build/source/texk/dvipdfmx/configure.ac | |
parent | 19cb3f89d4f6b2bdea83bec7df5f5b540601b9b0 (diff) |
Prepare for flattening dvipdfmx
git-svn-id: svn://tug.org/texlive/trunk@27447 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfmx/configure.ac')
-rw-r--r-- | Build/source/texk/dvipdfmx/configure.ac | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/Build/source/texk/dvipdfmx/configure.ac b/Build/source/texk/dvipdfmx/configure.ac deleted file mode 100644 index 36645fdb7e3..00000000000 --- a/Build/source/texk/dvipdfmx/configure.ac +++ /dev/null @@ -1,85 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. -dnl -dnl Copyright (C) 2009-2011 Peter Breitenlohner <tex-live@tug.org> -dnl -dnl This file is free software; the copyright holder -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -m4_include([version.ac])[] dnl define dvipdfmx_version -AC_INIT([dvipdfmx], dvipdfmx_version, [tex-k@tug.org]) -AC_PREREQ([2.65]) -AC_CONFIG_SRCDIR([dvipdfmx-]dvipdfmx_version[/src/dvipdfmx.c]) -AC_CONFIG_AUX_DIR([../../build-aux]) -AC_CONFIG_MACRO_DIR([../../m4]) - -dnl Common code for all programs using libkpathsea. -KPSE_COMMON([dvipdfmx]) - -AC_CONFIG_HEADERS([config.h]) - -dnl Checks for header files. -AC_HEADER_STDC -AC_CHECK_HEADERS([stdint.h inttypes.h sys/types.h sys/wait.h]) - -dnl Checks for library functions. -AC_FUNC_MEMCMP -AC_CHECK_FUNCS([open close getenv mkstemp basename]) - -dnl Checks for typedefs, structures, and compiler characteristics. -AC_STRUCT_TM -AC_STRUCT_TIMEZONE -AC_C_BIGENDIAN -AC_TYPE_UINT32_T - -AC_CHECK_DECL([timezone], - [AC_DEFINE([HAVE_TIMEZONE], 1, - [Define if <time.h> has timezone as an external variable.])], - [], - [[#include <time.h>]]) -AC_CHECK_MEMBER([struct tm.tm_gmtoff], - [AC_DEFINE([HAVE_TM_GMTOFF], 1, - [Define if struct tm has tm_gmtoff as a member.])], - [], - [[#include <time.h>]]) - - -AC_CHECK_SIZEOF([char]) -AC_CHECK_SIZEOF([short]) -AC_CHECK_SIZEOF([int]) -AC_CHECK_SIZEOF([long]) - -AC_SEARCH_LIBS([pow], [m]) - -KPSE_KPATHSEA_FLAGS -KPSE_ZLIB_FLAGS -KPSE_LIBPNG_FLAGS - -if test "x$enable_build" != xno || test -f config.force; then - -KPSE_ADD_FLAGS([kpathsea]) -AC_CHECK_HEADER([kpathsea/version.h], [], - [AC_MSG_ERROR([Sorry, kpathsea too old])]) - -KPSE_ADD_FLAGS([zlib]) -CHO_CHECK_ZLIB - -KPSE_ADD_FLAGS([libpng]) -CHO_CHECK_LIBPNG - -KPSE_RESTORE_FLAGS - -echo timestamp >config.force -fi - -AC_DEFINE([__TDS_VERSION__], [0x200406L], - [Define to 0x200406L if your libkpathsea supports enc formats.]) - -AC_SUBST([DVIPDFMX_TREE], [dvipdfmx-]dvipdfmx_version) - -KPSE_CHECK_WIN32 -AM_CONDITIONAL([WIN32], [test "x$kpse_cv_have_win32" != xno]) - -AC_CONFIG_FILES([Makefile]) - -AC_OUTPUT |