2004-06-11 Mike Kestner <mkestner@ximian.com>

* configure.in : remove the mint usage for darwin.

svn path=/trunk/gtk-sharp/; revision=29381
This commit is contained in:
Mike Kestner 2004-06-11 19:54:52 +00:00
parent 5b00f6f758
commit f3052784b7
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2004-06-11 Mike Kestner <mkestner@ximian.com>
* configure.in : remove the mint usage for darwin.
2004-06-11 Mike Kestner <mkestner@ximian.com>
* configure.in : deal with a csc-ism in source paths.

View File

@ -66,14 +66,12 @@ PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= $MONO_REQUIRED_VERSION, has_mono=true
if test "x$has_mono" = "xtrue"; then
GACUTIL_FLAGS='/package $(PACKAGE) /gacdir $(libdir)'
GENERATED_SOURCES=generated/*.cs
AC_PATH_PROG(RUNTIME, mono, no)
AC_PATH_PROG(CSC, mcs, no)
if test `uname -s` = "Darwin"; then
AC_PATH_PROG(RUNTIME, mint, no)
AC_PATH_PROG(CSC, mcs, no)
LIB_PREFIX=
LIB_SUFFIX=.dylib
else
AC_PATH_PROG(RUNTIME, mono, no)
AC_PATH_PROG(CSC, mcs, no)
LIB_PREFIX=.so
LIB_SUFFIX=
fi