diff options
author | ivmai <ivmai> | 2009-09-21 10:46:03 +0200 |
---|---|---|
committer | Ivan Maidanski <ivmai@mail.ru> | 2011-07-26 19:06:47 +0200 |
commit | 363b895d36e2334c27e9fdb781b52246e2363b16 (patch) | |
tree | 98cc7902fa89219ba82dc293ed5c0837ce8eccc6 /configure.ac | |
parent | a9bb70c52fa79ba2e7c8f440547fa19e12ba0186 (diff) |
2009-09-21 Ivan Maidanski <ivmai@mail.ru>
* configure.ac: Use EMPTY_GETENV_RESULTS instead of NO_GETENV for
Win32 (workaround for Wine bug).
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4e91724..e3655a3 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_INIT(gc,7.2alpha3,Hans.Boehm@hp.com) AC_CONFIG_SRCDIR(gcj_mlc.c) AC_CANONICAL_TARGET AC_PREREQ(2.53) -AC_REVISION($Revision: 1.46 $) +AC_REVISION($Revision: 1.47 $) GC_SET_VERSION AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects nostdinc]) AM_MAINTAINER_MODE @@ -199,7 +199,7 @@ case "$THREADS" in fi win32_threads=true dnl Wine getenv may not return NULL for missing entry - AC_DEFINE(NO_GETENV) + AC_DEFINE(EMPTY_GETENV_RESULTS) ;; dgux386) THREADS=dgux386 |