diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-23 16:29:55 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-23 16:29:55 +0000 |
commit | 9e431b970f2875e6e30b0680ee54e7c90cfe537e (patch) | |
tree | d2201e0813ed9dfab88d0c5bf9764b54c7e24527 /Build/source/m4/kpse-common.m4 | |
parent | 371b8e253250c7ed1fde51ca0f9b0a25bd997fda (diff) |
completely drop HAVE_PROTOTYPES
git-svn-id: svn://tug.org/texlive/trunk@13922 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/m4/kpse-common.m4')
-rw-r--r-- | Build/source/m4/kpse-common.m4 | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Build/source/m4/kpse-common.m4 b/Build/source/m4/kpse-common.m4 index 859892ff166..d4da8aa8a82 100644 --- a/Build/source/m4/kpse-common.m4 +++ b/Build/source/m4/kpse-common.m4 @@ -242,10 +242,7 @@ AC_CACHE_CHECK([whether the compiler accepts prototypes], [[extern void foo(int i,...);]])], [kb_cv_c_prototypes=yes], [kb_cv_c_prototypes=no])]) -if test "$kb_cv_c_prototypes" = yes; then - AC_DEFINE([HAVE_PROTOTYPES], 1, - [Define to 1 if your compiler understands prototypes.]) -else +if test "x$kb_cv_c_prototypes" = xno; then AC_MSG_ERROR([Sorry, your compiler does not understand prototypes.]) fi dnl |