Skip to content
Snippets Groups Projects
Commit b701f937 authored by Steve Langasek's avatar Steve Langasek Committed by Nick Schermer
Browse files

Missing fallback for AC_RUN_IF_ELSE() when cross-compiling (bug #8166).

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632507
parent 9c754faa
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,8 @@ if test x"$with_broken_putenv" != x"yes" -a x"$with_broken_putenv" != x"no"; the
return(strcmp(getenv("foo"), "bar") == 0 ? 0 : 1);
}],
[with_broken_putenv=no],
[with_broken_putenv=yes])
[with_broken_putenv=yes],
[with_broken_putenv=cross])
fi
if test x"$with_broken_putenv" = x"yes"; then
AC_DEFINE([HAVE_BROKEN_PUTENV], [1], [Define if putenv(3) is broken])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment