mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-05-12 04:32:12 +00:00
2005-01-13 Mike Kestner <mkestner@novell.com>
* configure.in : make vte check conditional on gnome. * gtkdotnet/Makefile.am : add some references. svn path=/trunk/gtk-sharp/; revision=38884
This commit is contained in:
parent
027b9c0179
commit
248af5d510
|
@ -1,3 +1,8 @@
|
||||||
|
2005-01-13 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* configure.in : make vte check conditional on gnome.
|
||||||
|
* gtkdotnet/Makefile.am : add some references.
|
||||||
|
|
||||||
2005-01-13 Dan Winship <danw@novell.com>
|
2005-01-13 Dan Winship <danw@novell.com>
|
||||||
|
|
||||||
* generator/ObjectGen.cs: Make ContainerChild constructors
|
* generator/ObjectGen.cs: Make ContainerChild constructors
|
||||||
|
|
|
@ -193,8 +193,12 @@ fi
|
||||||
AC_SUBST(GTKHTML_VERSION)
|
AC_SUBST(GTKHTML_VERSION)
|
||||||
AC_SUBST(GTKHTML_SOVERSION)
|
AC_SUBST(GTKHTML_SOVERSION)
|
||||||
|
|
||||||
|
if test "x$enable_gnome" = "xyes"; then
|
||||||
VTE_REQUIRED_VERSION=0.11.10
|
VTE_REQUIRED_VERSION=0.11.10
|
||||||
PKG_CHECK_MODULES(VTE_DEPENDENCIES, vte >= $VTE_REQUIRED_VERSION, enable_vte=yes, enable_vte=no)
|
PKG_CHECK_MODULES(VTE_DEPENDENCIES, vte >= $VTE_REQUIRED_VERSION, enable_vte=yes, enable_vte=no)
|
||||||
|
else
|
||||||
|
enable_vte=no
|
||||||
|
fi
|
||||||
|
|
||||||
AM_CONDITIONAL(ENABLE_LIBART, test "x$enable_libart" = "xyes")
|
AM_CONDITIONAL(ENABLE_LIBART, test "x$enable_libart" = "xyes")
|
||||||
AM_CONDITIONAL(ENABLE_GNOMEVFS, test "x$enable_gnomevfs" = "xyes")
|
AM_CONDITIONAL(ENABLE_GNOMEVFS, test "x$enable_gnomevfs" = "xyes")
|
||||||
|
|
|
@ -12,7 +12,7 @@ noinst_DATA = $(TARGET)
|
||||||
CLEANFILES = $(ASSEMBLY) gtk-sharp.snk
|
CLEANFILES = $(ASSEMBLY) gtk-sharp.snk
|
||||||
DISTCLEANFILES = $(ASSEMBLY).config
|
DISTCLEANFILES = $(ASSEMBLY).config
|
||||||
|
|
||||||
references = ../gdk/gdk-sharp.dll ../glib/glib-sharp.dll
|
references = ../glib/glib-sharp.dll ../pango/pango-sharp.dll ../gdk/gdk-sharp.dll
|
||||||
build_references = $(addprefix -r:, $(references)) -r:System.Drawing
|
build_references = $(addprefix -r:, $(references)) -r:System.Drawing
|
||||||
|
|
||||||
sources = \
|
sources = \
|
||||||
|
|
Loading…
Reference in a new issue