diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2011-07-04 14:14:44 +0200 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2011-07-04 14:14:44 +0200 |
commit | adbcc89b3e93d0afcf0aee836d81424508f6edb5 (patch) | |
tree | e0eae4539f3eb95ca0fabf953ff5ddfc988241cb /configure.ac | |
parent | Apply fix for new clock applet gconf (Miloš Komarčević). (diff) | |
download | redshift-ng-adbcc89b3e93d0afcf0aee836d81424508f6edb5.tar.gz redshift-ng-adbcc89b3e93d0afcf0aee836d81424508f6edb5.tar.bz2 redshift-ng-adbcc89b3e93d0afcf0aee836d81424508f6edb5.tar.xz |
Install Ubuntu icons as option (--enable-ubuntu). (Francesco Marella)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 261c4ec..b6868e9 100644 --- a/configure.ac +++ b/configure.ac @@ -177,6 +177,17 @@ AS_IF([test "x$enable_gui" != xno], [ ]) AM_CONDITIONAL([ENABLE_GUI], [test "x$enable_gui" != xno]) +# Check for Ubuntu icons +AC_MSG_CHECKING([whether to enable Ubuntu icons]) +AC_ARG_ENABLE([ubuntu], [AC_HELP_STRING([--enable-ubuntu], + [enable Ubuntu icons])], + [enable_ubuntu=$enableval],[enable_ubuntu=no]) +AS_IF([test "x$enable_ubuntu" != xno], [ + AC_MSG_RESULT([yes]) +], [ + AC_MSG_RESULT([no]) +]) +AM_CONDITIONAL([ENABLE_UBUNTU], [test "x$enable_ubuntu" != xno]) # Checks for header files. AC_CHECK_HEADERS([locale.h stdint.h stdlib.h string.h unistd.h sys/signal.h]) @@ -216,4 +227,5 @@ echo " Geoclue: ${enable_geoclue} GUI: ${enable_gui} + Ubuntu icons: ${enable_ubuntu} " |