2002-04-25 09:17:54 +00:00
AC_INIT(README)
AC_CANONICAL_SYSTEM
AM_CONFIG_HEADER(config.h)
2005-05-04 20:53:02 +00:00
AM_INIT_AUTOMAKE(gtk-sharp, @GTK_SHARP_VERSION@)
2002-04-25 09:17:54 +00:00
AM_MAINTAINER_MODE
2005-06-17 12:43:09 +00:00
API_VERSION=@ASSEMBLY_VERSION@
2004-04-30 18:24:16 +00:00
AC_SUBST(API_VERSION)
2005-09-22 04:26:52 +00:00
POLICY_VERSIONS=@POLICY_VERSIONS@
AC_SUBST(POLICY_VERSIONS)
2004-04-30 18:24:16 +00:00
2004-10-29 20:33:07 +00:00
PACKAGE_VERSION=gtk-sharp-2.0
AC_SUBST(PACKAGE_VERSION)
2005-08-25 20:59:21 +00:00
case "$host" in
*-*-mingw*|*-*-cygwin*)
platform_win32=yes
AC_DEFINE(PLATFORM_WIN32,1,[Platform is Win32])
CC="gcc -mno-cygwin -g"
HOST_CC="gcc"
;;
*)
platform_win32=no
;;
esac
AM_CONDITIONAL(PLATFORM_WIN32, test x$platform_win32 = xyes)
2002-04-25 09:17:54 +00:00
AC_CHECK_TOOL(CC, gcc, gcc)
AC_PROG_CC
AM_PROG_CC_STDC
AC_PROG_INSTALL
dnl may require a specific autoconf version
dnl AC_PROG_CC_FOR_BUILD
dnl CC_FOR_BUILD not automatically detected
CC_FOR_BUILD=$CC
BUILD_EXEEXT=
if test "x$cross_compiling" = "xyes"; then
CC_FOR_BUILD=cc
BUILD_EXEEXT=""
fi
AC_SUBST(CC_FOR_BUILD)
AC_SUBST(HOST_CC)
AC_SUBST(BUILD_EXEEXT)
# Set STDC_HEADERS
AC_HEADER_STDC
2004-06-11 18:19:41 +00:00
AC_LIBTOOL_WIN32_DLL
2002-04-25 09:17:54 +00:00
AM_PROG_LIBTOOL
2005-08-25 20:59:21 +00:00
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
2002-04-25 09:17:54 +00:00
# not 64 bit clean in cross-compile
AC_CHECK_SIZEOF(void *, 4)
CFLAGS='-g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wshadow -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings'
2005-05-06 20:36:21 +00:00
if test "x$enable_maintainer_mode" = "xyes"; then
2005-05-12 00:02:21 +00:00
DEBUG_FLAGS='-debug'
2005-05-06 20:36:21 +00:00
else
2005-05-04 20:53:02 +00:00
DEBUG_FLAGS=
2005-04-11 14:56:29 +00:00
AC_ARG_ENABLE(debug, [ --enable-debug Build debugger (.mdb) files for dlls],
2005-05-12 00:02:21 +00:00
DEBUG_FLAGS='-debug'
2005-04-11 14:56:29 +00:00
)
2005-05-06 20:36:21 +00:00
fi
2005-05-04 20:53:02 +00:00
CSDEFINES='@VERSIONCSDEFINES@'
CSFLAGS="$DEBUG_FLAGS $CSDEFINES"
2005-04-11 14:56:29 +00:00
AC_SUBST(CSFLAGS)
2005-05-04 20:53:02 +00:00
GTK_SHARP_VERSION_CFLAGS='@VERSIONCFLAGS@'
AC_SUBST(GTK_SHARP_VERSION_CFLAGS)
2002-04-25 09:17:54 +00:00
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
if test "x$PKG_CONFIG" = "xno"; then
AC_MSG_ERROR([You need to install pkg-config])
fi
dnl for use on the build system
2002-06-10 12:34:09 +00:00
BUILD_GTK_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0`
BUILD_GTK_LIBS=`$PKG_CONFIG --libs gtk+-2.0`
AC_SUBST(BUILD_GTK_CFLAGS)
AC_SUBST(BUILD_GTK_LIBS)
2002-04-25 09:17:54 +00:00
2004-10-29 20:33:07 +00:00
MONO_REQUIRED_VERSION=1.0
2004-05-03 22:59:30 +00:00
PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= $MONO_REQUIRED_VERSION, has_mono=true, has_mono=false)
2003-11-07 18:14:35 +00:00
2005-08-25 22:32:18 +00:00
AC_PATH_PROG(GACUTIL, gacutil, no)
if test "x$GACUTIL" = "xno" ; then
AC_MSG_ERROR([No gacutil tool found. You need to install either the mono or .Net SDK.])
fi
2005-09-22 04:26:52 +00:00
AC_PATH_PROG(AL, al, no)
if test "x$AL" = "xno" ; then
AC_MSG_ERROR([No al tool found. You need to install either the mono or .Net SDK.])
fi
2004-03-12 21:18:11 +00:00
if test "x$has_mono" = "xtrue"; then
2005-04-27 22:05:12 +00:00
GACUTIL_FLAGS='/package $(PACKAGE_VERSION) /gacdir $(DESTDIR)$(prefix)/lib'
2004-06-11 18:19:41 +00:00
GENERATED_SOURCES=generated/*.cs
2004-06-11 19:54:52 +00:00
AC_PATH_PROG(RUNTIME, mono, no)
AC_PATH_PROG(CSC, mcs, no)
2004-03-10 15:57:33 +00:00
if test `uname -s` = "Darwin"; then
2004-04-29 15:00:24 +00:00
LIB_PREFIX=
LIB_SUFFIX=.dylib
2004-03-10 15:57:33 +00:00
else
2004-04-29 15:00:24 +00:00
LIB_PREFIX=.so
LIB_SUFFIX=
2004-03-10 15:57:33 +00:00
fi
2005-08-25 20:59:21 +00:00
SDCHECK="`$GACUTIL /l |grep ^System.Drawing, | head -n1 |cut -f1 -d','`"
if test "x$SDCHECK" = "xSystem.Drawing"; then
enable_dotnet=yes
else
enable_dotnet=no
fi
2004-03-12 21:18:11 +00:00
else
2004-03-22 06:23:07 +00:00
AC_PATH_PROG(CSC, csc.exe, no)
2004-06-10 19:45:20 +00:00
GACUTIL_FLAGS=
2004-06-11 18:19:41 +00:00
GENERATED_SOURCES=generated\\\\*.cs
2005-08-25 20:59:21 +00:00
enable_dotnet=yes
2004-06-10 19:45:20 +00:00
2004-03-22 06:23:07 +00:00
if test x$CSC = "xno"; then
2004-03-12 21:18:11 +00:00
AC_MSG_ERROR([You need to install either mono or .Net])
else
RUNTIME=
2004-04-29 15:00:24 +00:00
LIB_PREFIX=
LIB_SUFFIX=.dylib
2004-03-12 21:18:11 +00:00
fi
fi
2004-03-22 06:23:07 +00:00
CS="C#"
if test "x$CSC" = "xno" ; then
AC_MSG_ERROR([No $CS compiler found])
fi
2004-03-12 21:18:11 +00:00
AC_SUBST(RUNTIME)
AC_SUBST(CSC)
2004-05-01 03:38:54 +00:00
AC_SUBST(GACUTIL)
2004-06-10 19:45:20 +00:00
AC_SUBST(GACUTIL_FLAGS)
2004-04-29 15:00:24 +00:00
AC_SUBST(LIB_PREFIX)
AC_SUBST(LIB_SUFFIX)
2004-06-11 18:19:41 +00:00
AC_SUBST(GENERATED_SOURCES)
2004-03-12 21:18:11 +00:00
2005-05-04 20:53:02 +00:00
GTK_REQUIRED_VERSION=@GTK_REQUIRED_VERSION@
PKG_CHECK_MODULES(GLIB, gobject-2.0 >= $GTK_REQUIRED_VERSION)
2004-03-12 21:18:11 +00:00
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
2005-05-04 20:53:02 +00:00
PKG_CHECK_MODULES(PANGO, pango)
2004-06-07 18:59:16 +00:00
AC_SUBST(PANGO_CFLAGS)
AC_SUBST(PANGO_LIBS)
2005-05-04 20:53:02 +00:00
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_REQUIRED_VERSION)
2004-04-30 19:08:16 +00:00
AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)
2002-04-25 09:17:54 +00:00
## Versions of dependencies
2005-08-03 21:51:23 +00:00
GNOME_REQUIRED_VERSION=@GNOME_REQUIRED_VERSION@
2004-10-29 20:33:07 +00:00
ART_REQUIRED_VERSION=2.3.16
2004-03-12 21:18:11 +00:00
2004-10-29 20:33:07 +00:00
PKG_CHECK_MODULES(LIBART, libart-2.0 >= $ART_REQUIRED_VERSION, enable_libart=yes, enable_libart=no)
2004-03-12 21:18:11 +00:00
AC_SUBST(LIBART_CFLAGS)
AC_SUBST(LIBART_LIBS)
2004-11-09 18:36:27 +00:00
PKG_CHECK_MODULES(GNOMEVFS, gnome-vfs-2.0 >= $GNOME_REQUIRED_VERSION, enable_gnomevfs=yes, enable_gnomevfs=no)
AC_SUBST(GNOMEVFS_CFLAGS)
AC_SUBST(GNOMEVFS_LIBS)
2005-01-07 21:29:38 +00:00
PKG_CHECK_MODULES(GNOME, libgnomecanvas-2.0 >= $GNOME_REQUIRED_VERSION libgnomeui-2.0 >= $GNOME_REQUIRED_VERSION gtk+-2.0 >= $GTK_REQUIRED_VERSION libgnomeprintui-2.2 >= $GNOME_REQUIRED_VERSION gmodule-2.0 >= $GTK_REQUIRED_VERSION libpanelapplet-2.0 >= $GNOME_REQUIRED_VERSION, enable_gnome=yes, enable_gnome=no)
2004-04-30 19:08:16 +00:00
AC_SUBST(GNOME_CFLAGS)
AC_SUBST(GNOME_LIBS)
2002-04-25 09:17:54 +00:00
2004-10-29 20:33:07 +00:00
GLADE_REQUIRED_VERSION=2.3.6
2004-04-30 19:08:16 +00:00
PKG_CHECK_MODULES(GLADE, libglade-2.0 >= $GLADE_REQUIRED_VERSION, enable_glade=yes, enable_glade=no)
AC_SUBST(GLADE_CFLAGS)
AC_SUBST(GLADE_LIBS)
2002-04-25 09:17:54 +00:00
2003-02-27 05:16:47 +00:00
RSVG_REQUIRED_VERSION=2.0.1
PKG_CHECK_MODULES(RSVG_DEPENDENCIES, librsvg-2.0 >= $RSVG_REQUIRED_VERSION, enable_rsvg=yes, enable_rsvg=no)
2004-12-13 17:50:40 +00:00
if test "x$enable_gnome" = "xyes"; then
2005-09-15 21:47:53 +00:00
GTKHTML_REQUIRED_VERSION=3.8.0
PKG_CHECK_MODULES(GTKHTML_DEPENDENCIES, libgtkhtml-3.8 >= $GTKHTML_REQUIRED_VERSION, enable_gtkhtml=yes, enable_gtkhtml=no)
2005-07-14 16:59:27 +00:00
if test "x$enable_gtkhtml" = "xyes"; then
GTKHTML_VERSION=3.8
GTKHTML_SOVERSION=15
else
2005-03-15 04:26:50 +00:00
GTKHTML_REQUIRED_VERSION=3.6.0
PKG_CHECK_MODULES(GTKHTML_DEPENDENCIES, libgtkhtml-3.6 >= $GTKHTML_REQUIRED_VERSION, enable_gtkhtml=yes, enable_gtkhtml=no)
if test "x$enable_gtkhtml" = "xyes"; then
GTKHTML_VERSION=3.6
GTKHTML_SOVERSION=18
else
GTKHTML_REQUIRED_VERSION=3.2.0
PKG_CHECK_MODULES(GTKHTML_DEPENDENCIES, libgtkhtml-3.1 >= $GTKHTML_REQUIRED_VERSION, enable_gtkhtml=yes, enable_gtkhtml=no)
if test "x$enable_gtkhtml" = "xyes"; then
GTKHTML_VERSION=3.1
GTKHTML_SOVERSION=11
else
2004-05-04 04:53:28 +00:00
GTKHTML_REQUIRED_VERSION=3.0.10
2003-11-18 19:57:05 +00:00
PKG_CHECK_MODULES(GTKHTML_DEPENDENCIES, libgtkhtml-3.0 >= $GTKHTML_REQUIRED_VERSION, enable_gtkhtml=yes, enable_gtkhtml=no)
2004-05-03 16:22:35 +00:00
if test "x$enable_gtkhtml" = "xyes"; then
2005-03-15 04:26:50 +00:00
GTKHTML_VERSION=3.0
GTKHTML_SOVERSION=4
2004-05-03 16:22:35 +00:00
else
2005-03-15 04:26:50 +00:00
GTKHTML_VERSION=
GTKHTML_SOVERSION=
fi
2004-05-03 16:22:35 +00:00
fi
2004-12-13 17:50:40 +00:00
fi
2005-07-14 16:59:27 +00:00
fi
2004-05-03 16:22:35 +00:00
AC_SUBST(GTKHTML_VERSION)
AC_SUBST(GTKHTML_SOVERSION)
2005-03-15 04:26:50 +00:00
else
enable_gtkhtml=no
fi
2003-02-27 05:16:47 +00:00
2005-01-13 17:50:15 +00:00
if test "x$enable_gnome" = "xyes"; then
2004-01-17 22:47:35 +00:00
VTE_REQUIRED_VERSION=0.11.10
PKG_CHECK_MODULES(VTE_DEPENDENCIES, vte >= $VTE_REQUIRED_VERSION, enable_vte=yes, enable_vte=no)
2005-01-13 17:50:15 +00:00
else
enable_vte=no
fi
2002-04-25 09:17:54 +00:00
2005-08-29 00:02:37 +00:00
AC_PATH_PROG(MDASSEMBLER, mdassembler, no)
2005-05-23 20:41:51 +00:00
AC_PATH_PROG(MONODOCER, monodocer, no)
2005-08-29 00:02:37 +00:00
if test "x$MONODOCER" = "xno" -o "x$MDASSEMBLER" = "xno"; then
2005-05-23 20:41:51 +00:00
enable_monodoc=no
2005-09-07 16:54:16 +00:00
doc_sources_dir=
2005-08-29 00:02:37 +00:00
else
enable_monodoc=yes
2005-09-07 16:54:16 +00:00
doc_sources_dir="`pkg-config --variable=sourcesdir monodoc`"
2005-05-23 20:41:51 +00:00
fi
2005-08-29 00:02:37 +00:00
AC_SUBST(MDASSEMBLER)
2005-05-23 20:41:51 +00:00
AC_SUBST(MONODOCER)
2004-03-12 21:18:11 +00:00
AM_CONDITIONAL(ENABLE_LIBART, test "x$enable_libart" = "xyes")
2004-11-09 18:36:27 +00:00
AM_CONDITIONAL(ENABLE_GNOMEVFS, test "x$enable_gnomevfs" = "xyes")
2002-07-05 20:22:21 +00:00
AM_CONDITIONAL(ENABLE_GNOME, test "x$enable_gnome" = "xyes")
2002-08-12 19:14:44 +00:00
AM_CONDITIONAL(ENABLE_GLADE, test "x$enable_glade" = "xyes")
2003-02-27 05:16:47 +00:00
AM_CONDITIONAL(ENABLE_RSVG, test "x$enable_rsvg" = "xyes")
2003-11-18 19:57:05 +00:00
AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes")
2004-01-17 22:47:35 +00:00
AM_CONDITIONAL(ENABLE_VTE, test "x$enable_vte" = "xyes")
2005-01-12 00:11:08 +00:00
AM_CONDITIONAL(ENABLE_DOTNET, test "x$enable_dotnet" = "xyes")
2005-05-23 20:41:51 +00:00
AM_CONDITIONAL(ENABLE_MONODOC, test "x$enable_monodoc" = "xyes")
2005-08-09 20:10:45 +00:00
AM_CONDITIONAL(ENABLE_ALL_OPTIONAL, test "x$enable_libart" = "xyes" -a "x$enable_gnomevfs" = "xyes" -a "x$enable_gnome" = "xyes" -a "x$enable_glade" = "xyes" -a "x$enable_rsvg" = "xyes" -a "x$enable_gtkhtml" = "xyes" -a "x$enable_vte" = "xyes" -a "x$enable_dotnet" = "xyes" -a "x$enable_monodoc" = "xyes")
2002-04-25 09:17:54 +00:00
AC_SUBST(CFLAGS)
AC_OUTPUT([
2005-01-09 00:26:45 +00:00
AssemblyInfo.cs
Makefile
2005-09-22 04:26:52 +00:00
policy.config
2004-03-12 21:18:11 +00:00
sources/Makefile
2002-08-20 20:46:14 +00:00
parser/Makefile
2004-10-29 20:33:07 +00:00
parser/gapi-2.0.pc
parser/gapi2-fixup
parser/gapi2-parser
2002-08-20 20:54:28 +00:00
generator/Makefile
2004-10-29 20:33:07 +00:00
generator/gapi2-codegen
2002-05-02 21:57:41 +00:00
glib/Makefile
2005-09-23 22:36:33 +00:00
glib/glib-sharp-2.0.pc
2004-04-29 15:00:24 +00:00
glib/glib-sharp.dll.config
2004-03-12 21:18:11 +00:00
glib/glue/Makefile
2002-05-02 21:57:41 +00:00
pango/Makefile
2004-04-29 15:00:24 +00:00
pango/pango-sharp.dll.config
2004-06-07 18:59:16 +00:00
pango/glue/Makefile
2002-05-02 21:57:41 +00:00
atk/Makefile
2004-04-29 15:00:24 +00:00
atk/atk-sharp.dll.config
2002-08-15 16:44:41 +00:00
art/Makefile
2004-04-29 15:00:24 +00:00
art/art-sharp.dll.config
2004-10-29 20:33:07 +00:00
art/art-sharp-2.0.pc
2002-05-02 21:57:41 +00:00
gdk/Makefile
2004-04-29 15:00:24 +00:00
gdk/gdk-sharp.dll.config
2004-03-12 21:18:11 +00:00
gdk/glue/Makefile
2002-05-02 21:57:41 +00:00
gtk/Makefile
2005-01-09 00:26:45 +00:00
gtk/gtk-sharp-2.0.pc
2004-04-29 15:00:24 +00:00
gtk/gtk-sharp.dll.config
2004-03-12 21:18:11 +00:00
gtk/glue/Makefile
2002-08-12 19:14:44 +00:00
glade/Makefile
2004-04-29 15:00:24 +00:00
glade/glade-sharp.dll.config
2004-10-29 20:33:07 +00:00
glade/glade-sharp-2.0.pc
2004-03-12 21:18:11 +00:00
glade/glue/Makefile
2002-06-26 Rachel Hestilow <hestilow@ximian.com>
* configure.in, makefile, makefile.win32: add gnome.
* doc/index.html, netdoc.xsl: Add gnome.
* gdk/Event.cs: New manual wrap for GdkEvent.
* generator/ClassBase.cs: Add methods GetProperty,
GetPropertyRecursively, GetMethodRecursively.
Move Parent property here from ObjectGen.cs. Pass this pointer
into Property.
* generator/Ctor.cs: Generate docs.
* generator/Method.cs, Property.cs: Tag method as "new" if a
Method/Property with the same name is found in the class hierarchy.
* generator/SignalHandler.cs: Correctly wrap complex signal argument
types. Add gnome directory.
* generator/SymbolTable.cs: Add manually wrapped types hash
(contains GLib.GSList and Gdk.Event). Add method IsManuallyWrapped.
* glib/SList.cs: Add constructor from IntPtr.
* glue/slist.c, glue/event.c: Added (field accessor glue).
* glue/Makefile.am: Update.
* parser/Gtk.metadata: Add new signal renames for new signals
exposed by GdkEvent changes.
* parser/README, parser/build.pl: Add libgnome, libgnomecanvas,
libgnomeui.
* parser/gapi2xml.pl: Handle literal-length array parameters,
and NULL property doc strings.
* sample/: Add new test GnomeHelloWorld.cs.
* gnome/: Added.
* parser/Gnome.metadata: Added.
svn path=/trunk/gtk-sharp/; revision=5461
2002-06-26 08:36:05 +00:00
gnome/Makefile
2004-04-29 15:00:24 +00:00
gnome/gnome-sharp.dll.config
2004-10-29 20:33:07 +00:00
gnome/gnome-sharp-2.0.pc
2004-03-12 21:18:11 +00:00
gnome/glue/Makefile
2004-10-29 20:33:07 +00:00
gnomevfs/Makefile
gnomevfs/gnome-vfs-sharp.dll.config
gnomevfs/gnome-vfs-sharp-2.0.pc
2002-10-19 09:31:20 +00:00
gconf/Makefile
2004-03-12 21:18:11 +00:00
gconf/doc/Makefile
2002-10-19 09:31:20 +00:00
gconf/GConf/Makefile
2004-04-29 15:00:24 +00:00
gconf/GConf/gconf-sharp.dll.config
2004-10-29 20:33:07 +00:00
gconf/GConf/gconf-sharp-2.0.pc
2002-10-19 09:31:20 +00:00
gconf/GConf.PropertyEditors/Makefile
gconf/tools/Makefile
2004-10-29 20:33:07 +00:00
gconf/tools/gconfsharp2-schemagen
2003-10-07 05:52:23 +00:00
gtkhtml/Makefile
2004-04-29 15:00:24 +00:00
gtkhtml/gtkhtml-sharp.dll.config
2004-10-29 20:33:07 +00:00
gtkhtml/gtkhtml-sharp-2.0.pc
2003-02-27 05:16:47 +00:00
rsvg/Makefile
2004-04-29 15:00:24 +00:00
rsvg/rsvg-sharp.dll.config
2004-10-29 20:33:07 +00:00
rsvg/rsvg-sharp-2.0.pc
2004-01-17 22:47:35 +00:00
vte/Makefile
2005-05-16 15:43:13 +00:00
vte/glue/Makefile
2004-04-29 15:00:24 +00:00
vte/vte-sharp.dll.config
2004-10-29 20:33:07 +00:00
vte/vte-sharp-2.0.pc
2005-01-12 00:11:08 +00:00
gtkdotnet/Makefile
gtkdotnet/gtk-dotnet.dll.config
gtkdotnet/gtk-dotnet-2.0.pc
2004-03-30 22:32:46 +00:00
doc/Makefile
2004-03-12 21:18:11 +00:00
sample/GtkDemo/Makefile
2002-05-02 21:57:41 +00:00
sample/Makefile
2004-03-12 21:18:11 +00:00
sample/gconf/Makefile
2004-10-29 20:33:07 +00:00
sample/gnomevfs/Makefile
2004-03-12 21:18:11 +00:00
sample/pixmaps/Makefile
2003-03-14 07:31:51 +00:00
sample/rsvg/Makefile
2004-03-12 21:18:11 +00:00
sample/test/Makefile
2005-07-22 18:36:50 +00:00
sample/valtest/Makefile
sample/valtest/valtest.exe.config
2005-08-09 14:44:32 +00:00
sample/opaquetest/Makefile
sample/opaquetest/opaquetest.exe.config
2004-09-06 23:54:48 +00:00
sample/cairo-sample.exe.config
2002-04-25 09:17:54 +00:00
])
2002-11-06 03:53:24 +00:00
echo "---"
echo "Configuration summary"
echo ""
echo " * Installation prefix = $prefix"
2005-04-11 14:56:29 +00:00
echo " * $CS compiler: $CSC $CSFLAGS"
2002-11-06 03:53:24 +00:00
echo ""
echo " Optional assemblies included in the build:"
echo ""
2004-03-12 21:18:11 +00:00
echo " * art-sharp.dll: $enable_libart"
2004-11-09 18:36:27 +00:00
echo " * gnomevfs-sharp.dll: $enable_gnomevfs"
2002-11-06 03:53:24 +00:00
echo " * gnome-sharp.dll: $enable_gnome"
echo " * glade-sharp.dll: $enable_glade"
2003-02-27 05:16:47 +00:00
echo " * rsvg-sharp.dll: $enable_rsvg "
2003-11-18 19:57:05 +00:00
echo " * gtkhtml-sharp.dll: $enable_gtkhtml "
2004-01-17 22:47:35 +00:00
echo " * vte-sharp.dll: $enable_vte "
2005-01-12 00:11:08 +00:00
echo " * gtk-dotnet.dll: $enable_dotnet "
2002-11-06 03:53:24 +00:00
echo ""
echo " NOTE: if any of the above say 'no' you may install the"
echo " corresponding development packages for them, rerun"
echo " autogen.sh to include them in the build."
echo ""
2005-05-23 20:41:51 +00:00
echo " * Documentation build enabled: $enable_monodoc "
2005-09-07 16:54:16 +00:00
if test "x$enable_monodoc" = "xyes" -a "x$doc_sources_dir" != "x$prefix/lib/monodoc/sources"; then
echo " WARNING: The install prefix is different than the monodoc prefix."
echo " Monodoc will not be able to load the documentation."
fi
2002-11-06 03:53:24 +00:00
echo "---"
2002-04-25 09:17:54 +00:00