diff --git a/ChangeLog b/ChangeLog index 6330ebd55..3de90ad92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-11-06 Gonzalo Paniagua Javier + + * autogen.sh: + * configure.in: added configuration summary. + 2002-11-03 Alp Toker * sources/gtk-sharp.sources: Update to support GStreamer 0.4.2 diff --git a/autogen.sh b/autogen.sh index 7e1340d52..0a2112c5f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 diff --git a/configure.in b/configure.in index 3361e92b4..288cfa4db 100644 --- a/configure.in +++ b/configure.in @@ -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#. - -"