[Xfce4-commits] <libxfce4util:master> Missing fallback for AC_RUN_IF_ELSE() when cross-compiling (bug #8166).
Nick Schermer
noreply at xfce.org
Thu Nov 17 21:42:01 CET 2011
Updating branch refs/heads/master
to b701f937f5b60173c00a249a584abbb1433352f3 (commit)
from 9c754faa52fd7c0029be351cf1b052990239f4e3 (commit)
commit b701f937f5b60173c00a249a584abbb1433352f3
Author: Steve Langasek <steve.langasek at ubuntu.com>
Date: Thu Nov 17 21:39:48 2011 +0100
Missing fallback for AC_RUN_IF_ELSE() when cross-compiling (bug #8166).
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632507
configure.in.in | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/configure.in.in b/configure.in.in
index 1e0b78a..eadc7e9 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -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])
More information about the Xfce4-commits
mailing list