diff options
author | Perberos <[email protected]> | 2013-05-08 07:51:17 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2013-05-08 07:51:17 -0300 |
commit | 5f48e596944cd7c12aeb4074758dde4451ddccea (patch) | |
tree | af6e4f10a09c2474784c9d46931288a4cd9eda55 /configure.ac | |
parent | b6c58586657b3d11f7ade8f01d0dcb500732164b (diff) | |
download | mate-desktop-5f48e596944cd7c12aeb4074758dde4451ddccea.tar.bz2 mate-desktop-5f48e596944cd7c12aeb4074758dde4451ddccea.tar.xz |
fixed g_type_init() deprecation
added Not without my gnu
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8144c54..ce28760 100644 --- a/configure.ac +++ b/configure.ac @@ -189,7 +189,7 @@ PKG_CHECK_MODULES(XLIB, x11, [X11_PACKAGE= AC_PATH_XTRA if test "x$no_x" = xyes; then - AC_MSG_ERROR("no (requires X development libraries)") + AC_MSG_ERROR([no (requires X development libraries)]) else XLIB_LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS" XLIB_CFLAGS=$X_CFLAGS @@ -227,6 +227,20 @@ dnl mate-doc-utils stuff MATE_DOC_INIT + +dnl GNU MATE logo + +AC_ARG_ENABLE([gnucat], + [AS_HELP_STRING([--enable-gnucat], [enable the use of gnu cat as logo in mate-about])], + [enable_gnucat=yes], [enable_gnucat=no]) + +if test "x$enable_gnucat" = "xyes"; then + MATE_ABOUT_CFLAGS="$MATE_ABOUT_CFLAGS -DGNUCAT_ENABLED=1" +fi + +AM_CONDITIONAL(GNUCAT_ENABLED, test "x$enable_gnucat" = "xyes") + + dnl Language Support GETTEXT_PACKAGE=mate-desktop @@ -343,4 +357,6 @@ mate-desktop $VERSION `echo mate-desktop $VERSION | sed "s/./=/g"` Startup notification support: ${have_startup_notification} XRandr support: ${have_randr} Build gtk-doc documentation: ${enable_gtk_doc} + + Enable gnucat: ${enable_gnucat} " |