Re: [PATCH] Fix compiling on platforms lacking setenv

2013-07-17 Thread Jean-Marc Lasgouttes
Le 14/07/2013 16:55, Jean-Marc Lasgouttes a écrit : Le 14/07/13 12:46, Richard Heck a écrit : On 07/13/2013 10:59 AM, Enrico Forestieri wrote: Using autotools, the availability of putenv is not checked, so the macro HAVE_PUTENV is not defined and compiling stops with the error "No environment-s

Re: [PATCH] Fix compiling on platforms lacking setenv

2013-07-14 Thread Jean-Marc Lasgouttes
Le 14/07/13 12:46, Richard Heck a écrit : On 07/13/2013 10:59 AM, Enrico Forestieri wrote: Using autotools, the availability of putenv is not checked, so the macro HAVE_PUTENV is not defined and compiling stops with the error "No environment-setting function has been defined." So, also check for

Re: [PATCH] Fix compiling on platforms lacking setenv

2013-07-14 Thread Richard Heck
On 07/13/2013 10:59 AM, Enrico Forestieri wrote: Using autotools, the availability of putenv is not checked, so the macro HAVE_PUTENV is not defined and compiling stops with the error "No environment-setting function has been defined." So, also check for putenv. You can certainly commit this to

[PATCH] Fix compiling on platforms lacking setenv

2013-07-13 Thread Enrico Forestieri
Using autotools, the availability of putenv is not checked, so the macro HAVE_PUTENV is not defined and compiling stops with the error "No environment-setting function has been defined." So, also check for putenv. -- Enrico diff --git a/configure.ac b/configure.ac index df1ba41..40a9322 100644 --