2002-11-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* autogen.sh:
	* configure.in: added configuration summary.

svn path=/trunk/gtk-sharp/; revision=8850
This commit is contained in:
Gonzalo Paniagua Javier 2002-11-06 03:53:24 +00:00
parent 6347ebc9be
commit 480cb88bf7
3 changed files with 24 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2002-11-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* autogen.sh:
* configure.in: added configuration summary.
2002-11-03 Alp Toker <alp@atoker.com>
* sources/gtk-sharp.sources: Update to support GStreamer 0.4.2

View File

@ -97,7 +97,7 @@ conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
if test x$NOCONFIGURE = x; then
echo Running $srcdir/configure $conf_flags "$@" ...
$srcdir/configure $conf_flags "$@" \
&& echo Now type \`make\' to compile $PKG_NAME || exit 1
&& echo Now type \`make linux\' or \`make windows\' to compile $PKG_NAME || exit 1
else
echo Skipping configure process.
fi

View File

@ -76,6 +76,7 @@ fi
LIBGDA_REQUIRED_VERSION=0.8.193
PKG_CHECK_MODULES(LIBGDA_DEPENDENCIES, libgda >= $LIBGDA_REQUIRED_VERSION, enable_gda=yes, enable_gda=no)
enable_gnomedb=no
if test "x$enable_gda" = "xyes"; then
BASE_DEPENDENCIES_CFLAGS="$BASE_DEPENDENCIES_CFLAGS $LIBGDA_DEPENDENCIES_CFLAGS"
BASE_DEPENDENCIES_LIBS="$BASE_DEPENDENCIES_LIBS $LIBGDA_DEPENDENCIES_LIBS"
@ -120,8 +121,21 @@ gst/Makefile
sample/Makefile
])
echo "
echo "---"
echo "Configuration summary"
echo ""
echo " * Installation prefix = $prefix"
echo ""
echo " Optional assemblies included in the build:"
echo ""
echo " * gnome-sharp.dll: $enable_gnome"
echo " * glade-sharp.dll: $enable_glade"
echo " * gda-sharp.dll: $enable_gda"
echo " * gnomedb-sharp.dll: $enable_gnomedb"
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 ""
echo "---"
Now do a "make linux" or "make windows" to build Gtk#.
"