Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2004-01-05 13:53:05 +0300
committerAtsushi Eno <atsushieno@gmail.com>2004-01-05 13:53:05 +0300
commit5dee0bf591ec3118442f341fb34f4d370dd8f1fc (patch)
tree40adaef1369547512b82266cfcc7a3a81e5a7cf2 /doc
parent278c916722c7a7698a38136ace5155f65a17ef93 (diff)
2004-01-05 Atsushi Enomoto <atsushi@ximian.com>
* mono-build-w32.sh : Maybe this fixes the latest cygwin build. svn path=/trunk/mono/; revision=21710
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/mono-build-w32.sh28
1 files changed, 15 insertions, 13 deletions
diff --git a/doc/mono-build-w32.sh b/doc/mono-build-w32.sh
index d9e1f963c79..3487fe093ac 100755
--- a/doc/mono-build-w32.sh
+++ b/doc/mono-build-w32.sh
@@ -59,11 +59,13 @@ else
echo "Automake version new enough."
fi
-# Select the stable version anyway...
-if [ ! -z "${AUTO_STABLE}" -o -e /usr/autotool/stable ]; then
- export AUTO_STABLE=${AUTO_STABLE:-/usr/autotool/stable}
- export AUTO_DEVEL=${AUTO_STABLE}
-fi
+# This causes libgc-not-found problem
+#
+## Select the stable version anyway...
+#if [ ! -z "${AUTO_STABLE}" -o -e /usr/autotool/stable ]; then
+# export AUTO_STABLE=${AUTO_STABLE:-/usr/autotool/stable}
+# export AUTO_DEVEL=${AUTO_STABLE}
+#fi
# Need to install pkgconfig and set ACLOCAL_FLAGS if there is not a
# pkgconfig installed already. Otherwise set PKG_CONFIG_PATH to the
@@ -123,11 +125,13 @@ else
install_pkgconfig=yes
fi
-# But we still need to use the mingw libs for glib & co
-ACLOCAL_FLAGS="-I $here/install/share/aclocal $ACLOCAL_FLAGS"
+# This causes libgc-not-found problem
+#
+## But we still need to use the mingw libs for glib & co
+#ACLOCAL_FLAGS="-I $here/install/share/aclocal $ACLOCAL_FLAGS"
-export PATH
-export ACLOCAL_FLAGS
+#export PATH
+#export ACLOCAL_FLAGS
# Grab pkg-config, glib etc
if [ ! -d $here/install ]; then
@@ -158,10 +162,8 @@ if [ $install_pkgconfig = "no" ]; then
fi
# Needed to find the libgc bits
-CPPFLAGS="$CPPFLAGS -I$here/install/include"
-LDFLAGS="$LDFLAGS -L$here/install/lib"
-export CPPFLAGS
-export LDFLAGS
+export CFLAGS="-I $here/install/include"
+export LDFLAGS="-L$here/install/lib"
# Make sure we build native w32, not cygwin
#CC="gcc -mno-cygwin"