From: zwelch Date: Sun, 10 May 2009 20:10:11 +0000 (+0000) Subject: Extend configure script to check for environ declaration in stdlib.h. X-Git-Tag: v0.2.0~813 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=a24ab3ae38131265d9ca6dee7db4262bb1630811 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 --- 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])