summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfmx/m4
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-03-25 10:27:56 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-03-25 10:27:56 +0000
commit14fdf58582eb34614c899048041260830bf11319 (patch)
tree24c257e172a5759d4653886820e0debc19a79e75 /Build/source/texk/dvipdfmx/m4
parent1d49a87a191295313dd1fdbce07dfb18ddd65bfc (diff)
new build system: update
git-svn-id: svn://tug.org/texlive/trunk@12515 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfmx/m4')
-rw-r--r--Build/source/texk/dvipdfmx/m4/cho-kpse.m456
-rw-r--r--Build/source/texk/dvipdfmx/m4/cho-libs.m4150
-rw-r--r--Build/source/texk/dvipdfmx/m4/maw-time.m434
3 files changed, 0 insertions, 240 deletions
diff --git a/Build/source/texk/dvipdfmx/m4/cho-kpse.m4 b/Build/source/texk/dvipdfmx/m4/cho-kpse.m4
deleted file mode 100644
index 9668fa21d85..00000000000
--- a/Build/source/texk/dvipdfmx/m4/cho-kpse.m4
+++ /dev/null
@@ -1,56 +0,0 @@
-# cho-kpse.m4 - kpathsea features
-# Copyright (C) 1998 - 2008 Jin-Hwan Cho <chofchof@ktug.or.kr>
-#
-# This file is free software; the copyright holders
-# give unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 1
-
-# CHO_CHECK_KPSE_SUPPORT(PACKAGE-NAME)
-# ------------------------------------
-# Check for kpathsea features
-AC_DEFUN([CHO_CHECK_KPSE_SUPPORT],
-[AC_MSG_CHECKING([whether you have kpathsea headers and they know about the required file formats])
- AC_TRY_COMPILE(
- [#include <stdio.h>
-#include <kpathsea/kpathsea.h>],
- [kpse_tex_ps_header_format;
- kpse_type1_format;
- kpse_vf_format;
- kpse_ofm_format;
- kpse_ovf_format;
- kpse_truetype_format;],
- [AC_MSG_RESULT(yes)
- AC_CHECK_LIB([kpathsea], [xbasename],
- [],
- [AC_MSG_ERROR([This version of $1 requires xbasename() in kpathsea library.])])],
- [AC_MSG_RESULT(no)
- AC_MSG_ERROR([This version of $1 requires that kpathsea and its headers be installed.
-If you are sure they are installed and in a standard place, maybe you need a
-newer version of kpathsea? You also might try setting the environment
-variable CPPFLAGS (or CFLAGS) with -I pointing to the directory containing
-the file "tex-file.h"])])
-])# CHO_CHECK_KPSE_SUPPORT
-
-# CHO_CHECK_KPSE_TDS_VERSION
-# --------------------------
-# Check for enc, cmap, sfd formats
-AC_DEFUN([CHO_CHECK_KPSE_TDS_VERSION],
-[AC_MSG_CHECKING([whether kpathsea library supports TDS version 1.1 installation])
- AC_TRY_COMPILE(
- [#include <stdio.h>
-#include <kpathsea/kpathsea.h>
-#include <kpathsea/tex-file.h>],
- [kpse_enc_format;
- kpse_cmap_format;
- kpse_sfd_format;
- kpse_opentype_format;],
- [AC_MSG_RESULT(yes)
- AC_DEFINE([__TDS_VERSION__], [0x200406L], [Define if your libkpathsea supports enc formats])
- AM_CONDITIONAL([TDS_VERSION_11], [true])],
- [AC_MSG_RESULT(no)
- AC_DEFINE([__TDS_VERSION__], [0x200302L], [Define if your libkpathsea supports enc formats])
- AM_CONDITIONAL([TDS_VERSION_11], [false])])
-])# CHO_CHECK_KPSE_TDS_VERSION
-
diff --git a/Build/source/texk/dvipdfmx/m4/cho-libs.m4 b/Build/source/texk/dvipdfmx/m4/cho-libs.m4
deleted file mode 100644
index 3687a0bb9f5..00000000000
--- a/Build/source/texk/dvipdfmx/m4/cho-libs.m4
+++ /dev/null
@@ -1,150 +0,0 @@
-# cho-libs.m4 - various libraries
-# Copyright (C) 1998 - 2008 Jin-Hwan Cho <chofchof@ktug.or.kr>
-#
-# This file is free software; the copyright holders
-# give unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 1
-
-# CHO_HAS_ZLIB
-# ------------
-# Check for zlib
-AC_DEFUN([CHO_HAS_ZLIB],
-[_cppflags=$CPPFLAGS _ldflags=$LDFLAGS
- AC_ARG_WITH([zlib],
- [AS_HELP_STRING([--with-zlib=DIR], [use zlib include/library files from DIR])],
- [if test -d "$withval"; then
- CPPFLAGS="$CPPFLAGS -I$withval/include"
- LDFLAGS="$LDFLAGS -L$withval/lib"
- fi])
- AC_MSG_CHECKING([for zlib header files])
- AC_TRY_COMPILE(
- [#include <zlib.h>],
- [z_stream p;],
- [AC_MSG_RESULT(yes)
- AC_SEARCH_LIBS([compress], [z],
- [AC_DEFINE([HAVE_ZLIB], 1, [Define if you have zlib and its headers])
- AC_CHECK_LIB([z], [compress2],
- [AC_DEFINE([HAVE_ZLIB_COMPRESS2], 1, [Define if your zlib has the compress2 function])])])],
- [CPPFLAGS=$_cppflags
- LDDFLAGS=$_ldflags
- AC_MSG_RESULT(no)])
-])# CHO_HAS_ZLIB
-
-# CHO_HAS_LIBPNG
-# --------------
-# Check for libpng
-AC_DEFUN([CHO_HAS_LIBPNG],
-[_cppflags=$CPPFLAGS _ldflags=$LDFLAGS
- AC_ARG_WITH([png],
- [AS_HELP_STRING([--with-png=DIR], [use png include/library files from DIR])],
- [if test -d "$withval"; then
- CPPFLAGS="$CPPFLAGS -I$withval/include"
- LDFLAGS="$LDFLAGS -L$withval/lib"
- fi])
- AC_SEARCH_LIBS([pow], [m])
- AC_MSG_CHECKING([for png header files])
- AC_TRY_COMPILE(
- [#include <png.h>],
- [png_infop p;],
- [AC_MSG_RESULT(yes)
- AC_SEARCH_LIBS(png_get_image_width, png,
- [AC_DEFINE([HAVE_LIBPNG], 1, [Define if you have libpng])],
- [], [-lz])],
- [CPPFLAGS=$_cppflags
- LDDFLAGS=$_ldflags
- AC_MSG_RESULT(no)])
-])# CHO_HAS_LIBPNG
-
-# CHO_HAS_LIBPAPER
-# ----------------
-# Check for libpaper
-AC_DEFUN([CHO_HAS_LIBPAPER],
-[_cppflags=$CPPFLAGS _ldflags=$LDFLAGS
- AC_ARG_WITH([paper],
- [AS_HELP_STRING([--with-paper=DIR], [use paper include/library files from DIR])],
- [if test -d "$withval"; then
- CPPFLAGS="$CPPFLAGS -I$withval/include"
- LDFLAGS="$LDFLAGS -L$withval/lib"
- fi])
- AC_MSG_CHECKING([for paper header files])
- AC_TRY_COMPILE(
- [#include <paper.h>],
- [struct paper *p;],
- [AC_MSG_RESULT(yes)
- AC_SEARCH_LIBS([paperpswidth], [paper],
- [AC_DEFINE(HAVE_LIBPAPER, 1, [Define if you have libpaper])])],
- [CPPFLAGS=$_cppflags
- LDDFLAGS=$_ldflags
- AC_MSG_RESULT(no)])
-])# CHO_HAS_LIBPAPER
-
-# CHO_HAS_LIBFONTCONFIG
-# ---------------------
-# Check for libfontconfig
-AC_DEFUN([CHO_HAS_LIBFONTCONFIG],
-[_cppflags=$CPPFLAGS _ldflags=$LDFLAGS
- have_libfontconfig=no
- AC_ARG_WITH([fontconfig],
- [AS_HELP_STRING([--with-fontconfig=DIR],[use fontconfig include/library files from DIR])],
- [if test -d "$withval"; then
- CPPFLAGS="$CPPFLAGS -I$withval/include"
- LDFLAGS="$LDFLAGS -L$withval/lib"
- FONTCONFIGLDFLAGS="-L$withval/lib"
- fi])
- AC_MSG_CHECKING([for fontconfig header files])
- AC_TRY_COMPILE(
- [#include <fontconfig/fontconfig.h>],
- [FcObjectSet *os;],
- [AC_MSG_RESULT(yes)
- AC_SEARCH_LIBS([FcInit], [fontconfig],
- [AC_DEFINE([HAVE_LIBFONTCONFIG], 1, [Define if you have libfontconfig])
- have_libfontconfig=yes])],
- [CPPFLAGS=$_cppflags
- LDDFLAGS=$_ldflags
- AC_MSG_RESULT(no)])
-])# CHO_HAS_LIBFONTCONFIG
-
-# CHO_CHECK_LIBFREETYPE(PACKAGE-NAME)
-# -----------------------------------
-# Check for libfreetype, fail with error if not found
-AC_DEFUN([CHO_CHECK_LIBFREETYPE],
-[_cppflags=$CPPFLAGS _ldflags=$LDFLAGS
- using_installed_freetype=yes
- AC_ARG_WITH(ft2lib,
- [AS_HELP_STRING([--with-ft2lib=LIB], [use freetype2 library LIB])],
- [if test x"$withval" != x; then
- LIBS="$LIBS $withval"
- using_installed_freetype=no
- fi])
- AC_ARG_WITH([ft2include],
- [AS_HELP_STRING([--with-ft2include=DIR], [use freetype2 include files from DIR])],
- [if test -d "$withval"; then
- CPPFLAGS="$CPPFLAGS -I$withval"
- fi])
- AC_ARG_WITH([freetype2],
- [AS_HELP_STRING([--with-freetype2=DIR], [use installed freetype2 include & lib files from DIR])],
- [if test -d "$withval"; then
- CPPFLAGS="$CPPFLAGS -I$withval/include/freetype2"
- LDFLAGS="$LDFLAGS -L$withval/lib"
- fi])
- AC_MSG_CHECKING([for freetype2 header files and library])
- AC_TRY_COMPILE(
- [#include "ft2build.h"
-#include FT_FREETYPE_H],
- [FT_Face face;],
- [AC_MSG_RESULT(yes)
- if test x"$using_installed_freetype" = xyes; then
- AC_SEARCH_LIBS([FT_Init_FreeType], [freetype],
- [AC_DEFINE([HAVE_LIBFREETYPE], 1, [Define if you have libfreetype])])
- else
- AC_DEFINE([HAVE_LIBFREETYPE], 1)
- fi],
- [AC_MSG_RESULT(no)
- AC_MSG_ERROR([This version of $1 requires that FreeType2 and its headers be available.
-You can use the --with-freetype2 option to indicate the location of the installed
-freetype2, or --with-ft2lib and --with-ft2include to point to the libfreetype.a
-library and the FreeType2 include files.])])
-])# CHO_CHECK_LIBFREETYPE
-
diff --git a/Build/source/texk/dvipdfmx/m4/maw-time.m4 b/Build/source/texk/dvipdfmx/m4/maw-time.m4
deleted file mode 100644
index 91a6c005ddd..00000000000
--- a/Build/source/texk/dvipdfmx/m4/maw-time.m4
+++ /dev/null
@@ -1,34 +0,0 @@
-# maw-time.m4 - timezone tests
-# Copyright (C) 1998 - 2009 Mark A. Wicks <mwicks@kettering.edu>
-# Kettering University
-#
-# This file is free software; the copyright holder
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 2
-
-# MAW_EXT_TIMEZONE
-# ----------------
-AC_DEFUN([MAW_EXT_TIMEZONE],
-[AC_MSG_CHECKING([whether time.h defines timezone as an external variable])
- AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]],
- [[-timezone;]])],
- [AC_MSG_RESULT([yes])
- AC_DEFINE([HAVE_TIMEZONE], 1,
- [Define if <time.h> has timezone as an external variable.])],
- [AC_MSG_RESULT([no])])
-])# MAW_EXT_TIMEZONE
-
-# MAW_TM_HAS_TM_GMTOFF
-# --------------------
-AC_DEFUN([MAW_TM_HAS_TM_GMTOFF],
-[AC_MSG_CHECKING([whether struct tm has tm_gmtoff as a member])
- AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]],
- [[struct tm *tp; tp->tm_gmtoff;]])],
- [AC_MSG_RESULT([yes])
- AC_DEFINE([HAVE_TM_GMTOFF], 1,
- [Define if struct tm has tm_gmtoff as a member.])],
- [AC_MSG_RESULT([no])])
-])# MAW_TM_HAS_TM_GMTOFF
-