diff options
Diffstat (limited to 'Build/source/texk/ttfdump/configure.in.orig')
-rw-r--r-- | Build/source/texk/ttfdump/configure.in.orig | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Build/source/texk/ttfdump/configure.in.orig b/Build/source/texk/ttfdump/configure.in.orig new file mode 100644 index 00000000000..7b5ab86ac91 --- /dev/null +++ b/Build/source/texk/ttfdump/configure.in.orig @@ -0,0 +1,31 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT +AC_CONFIG_SRCDIR([include/ttf.h]) + +dnl Checks for programs. +AC_PROG_CC +AC_PROG_INSTALL +AC_PROG_RANLIB +AC_PROG_MAKE_SET + +dnl Checks for libraries. + +dnl Checks for header files. +AC_HEADER_STDC + +dnl Checks for typedefs, structures, and compiler characteristics. + +AC_C_BIGENDIAN +AC_CHECK_SIZEOF(int) +AC_CHECK_SIZEOF(long) +AC_CHECK_SIZEOF(long long) +AC_C_INLINE + +dnl Checks for library functions. +AC_CHECK_FUNCS(strstr) + + +AC_CONFIG_HEADER(config.h) +AC_CONFIG_FILES([libttf/Makefile src/Makefile Makefile]) +AC_CONFIG_COMMANDS([default],[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h],[]) +AC_OUTPUT |