diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-12-21 14:33:10 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-12-21 14:33:10 +0000 |
commit | f6f1ff9d851efde5d6a2c556ad6adfe5cd86375e (patch) | |
tree | 5baa9d51b58eac1b858f0205de37a4a8a17d6c87 /Build/source/utils/xindy-new/configure.ac | |
parent | 3dcdc887a16bca462dc75ab4ac28319b61802c5e (diff) |
minor build fixes
git-svn-id: svn://tug.org/texlive/trunk@16470 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/xindy-new/configure.ac')
-rw-r--r-- | Build/source/utils/xindy-new/configure.ac | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/utils/xindy-new/configure.ac b/Build/source/utils/xindy-new/configure.ac index 6856416ec61..6fdee54ffdc 100644 --- a/Build/source/utils/xindy-new/configure.ac +++ b/Build/source/utils/xindy-new/configure.ac @@ -118,10 +118,16 @@ else fi AC_SUBST([CONVERT_FROM_UTF8]) +# No checks for header files. We use stdio.h, unistd.h, and string.h. +# Today, they are universally available if a C compiler is installed. + # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. -AC_CHECK_FUNCS([strrchr strtoul]) +# The code in tex2indy.l simply assumes that strtoul() is there, would +# need a replacement. +AC_CHECK_FUNCS([strtoul], [], + [AC_MSG_ERROR([strtoul() is needed])]) echo timestamp >config.force fi |