X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=userv.git;a=blobdiff_plain;f=configure.in;h=f46c56a4c0c0252df0d60be669052763dd53ca58;hp=8c69ffdbc2010fff510f120db0b1930a1e81579a;hb=f53cd40f20431be077e96cb70e6dae9692276356;hpb=af5c97dd0b7e37e1fb3ad1f7ac81fa31a48be7f8;ds=sidebyside diff --git a/configure.in b/configure.in index 8c69ffd..f46c56a 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ # userv - configure.in # -# Copyright (C)1996-1997,1999 Ian Jackson +# Copyright (C)1996-1997,1999-2000,2003 Ian Jackson # # This is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -46,7 +46,7 @@ AC_CHECK_PROGS(MD5SUM_SIMPLE, md5sum md5 gmd5sum) CFLAGS="$CFLAGS -D_GNU_SOURCE" AC_CHECK_LIB(socket,socket) -AC_CHECK_FUNCS(setenv) +AC_CHECK_FUNCS(setenv strsignal vsnprintf) AC_CACHE_CHECK(for EPROTO,userv_cv_hdr_eproto, AC_EGREP_CPP(yes, @@ -74,6 +74,20 @@ then AC_DEFINE(HAVE_LOG_AUTHPRIV) fi +AC_CACHE_CHECK(for WCOREDUMP,userv_cv_hdr_wcoredump, + AC_EGREP_CPP(yes, +[ +#include +#include +#ifdef WCOREDUMP + yes +#endif +],userv_cv_hdr_wcoredump=yes,userv_cv_hdr_wcoredump=no)) +if test $userv_cv_hdr_wcoredump = yes +then + AC_DEFINE(HAVE_WCOREDUMP) +fi + AC_SUBST(OPTIMISE) if test "${GCC-no}" = yes; then OPTIMISE=-O2