2005-01-11 Ben Maurer <bmaurer@ximian.com>

* configure.in: There might be multiple S.D assemblies (eg, if you
	build the 2.0 crap, you get a 1.1 and a 2.0). So use head -n1 when
	looking at gacutil


svn path=/trunk/gtk-sharp/; revision=38757
This commit is contained in:
Ben Maurer 2005-01-12 02:57:52 +00:00
parent d944e97bf2
commit dc32d6bf6f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-01-11 Ben Maurer <bmaurer@ximian.com>
* configure.in: There might be multiple S.D assemblies (eg, if you
build the 2.0 crap, you get a 1.1 and a 2.0). So use head -n1 when
looking at gacutil
2005-01-11 Mike Kestner <mkestner@novell.com>
* configure.in : add test for System.Drawing. expand gtkdotnet.

View File

@ -102,7 +102,7 @@ if test "x$GACUTIL" = "xno" ; then
AC_MSG_ERROR([No gacutil tool found])
fi
SDCHECK="`$GACUTIL /l |grep ^System.Drawing, |cut -f1 -d','`"
SDCHECK="`$GACUTIL /l |grep ^System.Drawing, | head -n1 |cut -f1 -d','`"
if test "x$SDCHECK" = "xSystem.Drawing"; then
enable_dotnet=yes
else