2009-05-02 Mike Kestner <mkestner@novell.com>

* configure.in.in: forward port of a win32 fix from 2-12-branch.

svn path=/trunk/gtk-sharp/; revision=133392
This commit is contained in:
Mike Kestner 2009-05-02 16:21:07 +00:00
parent a3bb0c1e31
commit d83dcd8994
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2009-05-02 Mike Kestner <mkestner@novell.com>
* configure.in.in: forward port of a win32 fix from 2-12-branch.
2009-05-01 Mike Kestner <mkestner@novell.com>
* glib/Object.cs: get gtype from instance data.

View File

@ -63,11 +63,6 @@ AC_HEADER_STDC
AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
if test x$platform_win32 = xyes; then
# Get rid of 'cyg' prefixes in library names
sed -e "s/\/cyg\//\/\//" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
fi
# not 64 bit clean in cross-compile
AC_CHECK_SIZEOF(void *, 4)
@ -277,6 +272,11 @@ sample/gio/Makefile
sample/gtk-gio/Makefile
])
if test x$platform_win32 = xyes; then
# Get rid of 'cyg' prefixes in library names
sed -e "s/\/cyg\//\/\//" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
fi
if test "x$enable_mono_cairo" = "xyes"; then
cairo_comment="building local copy"
else