Skip to content

Commit

Permalink
2005-10-04 Zoltan Varga <vargaz@freemail.hu>
Browse files Browse the repository at this point in the history
	* configure.in: Fix up problems with the latest libtool on win32.

svn path=/branches/mono-1-1-9/mono/; revision=51195
  • Loading branch information
vargaz committed Oct 4, 2005
1 parent fe50b85 commit 56884dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2005-10-04 Zoltan Varga <vargaz@freemail.hu>

* configure.in: Fix up problems with the latest libtool on win32.

2005-09-06 Chris Toshok <toshok@ximian.com>

* data/browscap.ini: Add the ecmascriptversion/w3cdomversion
Expand Down
4 changes: 4 additions & 0 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -1798,6 +1798,10 @@ runtime/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
# libtool seems to inherit -mno-cygwin from our CFLAGS, and uses it to compile its executable
# wrapper scripts which use exec(). gcc has no problem compiling+linking this, but the resulting
# executable doesn't work...
sed -e "s,-mno-cygwin,,g" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
fi

(
Expand Down

0 comments on commit 56884dc

Please sign in to comment.