[Goodies-commits] r6412 - xfce4-screenshooter/trunk

Jerome Guelfucci jeromeg at xfce.org
Thu Jan 8 17:20:19 CET 2009


Author: jeromeg
Date: 2009-01-08 16:20:19 +0000 (Thu, 08 Jan 2009)
New Revision: 6412

Modified:
   xfce4-screenshooter/trunk/
   xfce4-screenshooter/trunk/ChangeLog
   xfce4-screenshooter/trunk/configure.ac.in
Log:
* configure.ac.in: improve the autotools stuff and print the debug
  level when printing the configuration.



Property changes on: xfce4-screenshooter/trunk
___________________________________________________________________
Added: svn:ignore
   + configure
Makefile.in
config.log
depcomp
config.guess
config.h
ltmain.sh
config.sub
configure.ac
INSTALL
Makefile
mkinstalldirs
intltool-extract.in
svn-prop.tmp
config.status
intltool-update.in
stamp-h1
config.h.in
autom4te.cache
libtool
intltool-merge.in
missing
aclocal.m4
install-sh
src/Makefile.in
src/.deps
src/Makefile
panel-plugin/Makefile.in
panel-plugin/.deps
panel-plugin/Makefile
doc/Makefile.in
doc/Makefile
doc/C/Makefile.in
doc/C/Makefile
doc/C/images/Makefile.in
doc/C/images/Makefile
doc/fr/Makefile.in
doc/fr/Makefile
doc/fr/images/Makefile.in
doc/fr/images/Makefile
doc/id/Makefile.in
doc/id/Makefile
doc/id/images/Makefile.in
doc/id/images/Makefile
lib/Makefile.in
lib/.deps
lib/Makefile
icons/Makefile.in
icons/Makefile
icons/48x48/Makefile.in
icons/48x48/Makefile
icons/scalable/Makefile.in
icons/scalable/Makefile
po/Makefile.in
po/Makefile.in.in
po/stamp-it
po/Makefile
po/POTFILES



Modified: xfce4-screenshooter/trunk/ChangeLog
===================================================================
--- xfce4-screenshooter/trunk/ChangeLog	2009-01-07 20:23:40 UTC (rev 6411)
+++ xfce4-screenshooter/trunk/ChangeLog	2009-01-08 16:20:19 UTC (rev 6412)
@@ -1,3 +1,8 @@
+2009-01-08
+
+  * configure.ac.in: improve the autotools stuff and print the debug
+    level when printing the configuration.
+
 2009-01-05
 
   * Don't use -Werror.

Modified: xfce4-screenshooter/trunk/configure.ac.in
===================================================================
--- xfce4-screenshooter/trunk/configure.ac.in	2009-01-07 20:23:40 UTC (rev 6411)
+++ xfce4-screenshooter/trunk/configure.ac.in	2009-01-08 16:20:19 UTC (rev 6412)
@@ -11,51 +11,59 @@
 m4_define([xfce4_screenshooter_version_tag],   [svn])
 m4_define([xfce4_screenshooter_version], [xfce4_screenshooter_version_major().xfce4_screenshooter_version_minor().xfce4_screenshooter_version_micro()ifelse(xfce4_screenshooter_version_nano(), [], [], [.xfce4_screenshooter_version_nano()])ifelse(xfce4_screenshooter_version_tag(), [svn], [xfce4_screenshooter_version_tag()-xfce4_screenshooter_version_build()], [xfce4_screenshooter_version_tag()])])
 
-dnl *******************************************
-dnl *** Debugging support for SVN snapshots ***
-dnl *******************************************
-m4_define([xfce4_screenshooter_debug_default], [ifelse(xfce4_screenshooter_version_tag(), [svn], [full], [minimum])])
-
 AC_INIT([xfce4-screenshooter], [xfce4_screenshooter_version], [http://bugzilla.xfce.org/], [xfce4-screenshooter])
 
+dnl ***************************
+dnl *** Initialize automake ***
+dnl ***************************
 AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
 AM_CONFIG_HEADER([config.h])
+AM_MAINTAINER_MODE()
 
-AM_MAINTAINER_MODE
+dnl *******************************
+dnl *** Check for UNIX variants ***
+dnl *******************************
+AC_AIX()
+AC_ISC_POSIX()
+AC_MINIX()
 
-dnl Check for UNIX variants
-AC_AIX
-AC_ISC_POSIX
-AC_MINIX
+dnl ********************************
+dnl *** Check for basic programs ***
+dnl ********************************
+AC_PROG_CC()
+AC_PROG_CC_C_O()
+AC_PROG_LD()
+AC_PROG_INSTALL()
+AC_PROG_INTLTOOL()
 
-dnl Check for basic programs
-AC_PROG_CC
-AC_PROG_INSTALL
-AC_PROG_INTLTOOL
-AC_PROG_LIBTOOL
+dnl **************************
+dnl *** Initialize libtool ***
+dnl **************************
+AC_DISABLE_STATIC()
+AC_PROG_LIBTOOL()
 
-dnl Check for standard header files
+dnl **********************************
+dnl *** Check for standard headers ***
+dnl **********************************
 AC_HEADER_STDC
 
-dnl Check for xfce4-panel
-XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.4])
-
-dnl Check for xfce4util
-XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.4])
-
-dnl Check for xfcegui4
-XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.4])
-
-dnl Check for gtk
+dnl ***********************************
+dnl *** Check for required packages ***
+dnl ***********************************
+XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.4.0])
+XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.4.0])
+XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.4.0])
 XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.10.0])
-
-dnl Check for glib
 XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.12.0])
 
-dnl Optionnal check for gio
+dnl ***********************************
+dnl *** Check for optional packages ***
+dnl ***********************************
 XDT_CHECK_OPTIONAL_PACKAGE([GIO], [gio-2.0], [2.16])
 
-dnl Translations
+dnl ******************************
+dnl *** Check for i18n support ***
+dnl ******************************
 XDT_I18N([@LINGUAS@])
 
 dnl Check for debugging support
@@ -83,11 +91,15 @@
 dnl *** Print configuration ***
 dnl ***************************
 
+echo ""
 echo "Build Configuration:"
-
+echo ""
 if test x"$GIO_FOUND" = x"yes"; then
-echo "* Open with support:             yes"
+echo "  * Open with support:             yes"
 else
-echo "* Open with support:             no"
+echo "  * Open with support:             no"
 fi
-
+dnl
+echo "  * Debugging support:             $enable_debug"
+echo ""
+echo "Configure finished, type 'make' to build."




More information about the Goodies-commits mailing list