From a24ab3ae38131265d9ca6dee7db4262bb1630811 Mon Sep 17 00:00:00 2001 From: zwelch Date: Sun, 10 May 2009 20:10:11 +0000 Subject: [PATCH] Extend configure script to check for environ declaration in stdlib.h. Patch contributed by Martin Thomas . git-svn-id: svn://svn.berlios.de/openocd/trunk@1693 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- configure.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index bbd22d1efd..a6177e1d9d 100644 --- a/configure.in +++ b/configure.in @@ -788,11 +788,12 @@ AC_PROG_CC_C99 AM_PROG_CC_C_O AC_PROG_RANLIB -# Look for environ alternatives. Possibility #1: is environ in unistd.h? -AC_MSG_CHECKING([for environ in unistd.h]) +# Look for environ alternatives. Possibility #1: is environ in unistd.h or stdlib.h? +AC_MSG_CHECKING([for environ in unistd.h and stdlib.h]) AC_COMPILE_IFELSE([ #define _GNU_SOURCE #include +#include int main(int argc, char **argv) { char **ep = environ; } ], [ AC_MSG_RESULT([yes]) -- 2.30.2