diff options
author | Karl Berry <karl@freefriends.org> | 2012-05-18 00:35:36 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-05-18 00:35:36 +0000 |
commit | ff3def13189580da6fe5254355c8f3b8091bb0fb (patch) | |
tree | 13092e119e26dd5354f66cf3746dd0a0cbdd8cb2 /Build/source/utils/pmx/pmx-2.6.18/configure.ac | |
parent | 2721345a8954f1846ff48ba10e634bc65e7b954d (diff) |
pmx 2.6.18 (16may12)
git-svn-id: svn://tug.org/texlive/trunk@26478 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/pmx/pmx-2.6.18/configure.ac')
-rw-r--r-- | Build/source/utils/pmx/pmx-2.6.18/configure.ac | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Build/source/utils/pmx/pmx-2.6.18/configure.ac b/Build/source/utils/pmx/pmx-2.6.18/configure.ac new file mode 100644 index 00000000000..d56db2ca306 --- /dev/null +++ b/Build/source/utils/pmx/pmx-2.6.18/configure.ac @@ -0,0 +1,42 @@ +dnl Process this file with autoconf to produce a configure script. +dnl +dnl Copyright (C) 2012 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 pmx_version +AC_INIT([pmx], pmx_version, [rdt@cs.queensu.ca]) +AC_PREREQ([2.63]) +AC_CONFIG_SRCDIR([pmxab.c]) + +AM_INIT_AUTOMAKE(pmx, pmx_version) + +dnl Check compiler and flags +AC_PROG_CC + +dnl initial value for AM_CPPFLAGS +AC_SUBST([AM_CPPFLAGS], ['-DNON_UNIX_STDIO']) + +dnl WIN32 has no <sys/times.h> +AM_CONDITIONAL([WIN32], [test "x$kpse_cv_have_win32" != xno]) +if test "x$kpse_cv_have_win32" != xno; then + AM_CPPFLAGS="$AM_CPPPFLAGS -DUSE_CLOCK" +fi + +dnl Checks for programs. +AC_PROG_INSTALL +AC_PROG_LN_S +AC_PROG_MAKE_SET +AC_PROG_RANLIB + +AC_SEARCH_LIBS([sqrt], [m]) + +AC_CHECK_SIZEOF([long long]) +if test $ac_cv_sizeof_long_long -lt 8; then + AM_CPPFLAGS="$AM_CPPPFLAGS -DNO_LONG_LONG" +fi + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT |