]> Dogcows Code - chaz/tint2/blobdiff - configure.ac
Remove odt/pdf related stuff.
[chaz/tint2] / configure.ac
index 8e3bc019229987bffe99f009c98c58b160b8443e..03209c012ea2bbef272926a1a6c0b0cef4c868f9 100644 (file)
@@ -1,6 +1,6 @@
 #                                               -*- Autoconf -*-
 # Process this file with autoconf to produce a configure script.
-AC_INIT([tint2], [0.7_beta2], [http://code.google.com/p/tint2/issues])
+AC_INIT([tint2], [0.7_beta3], [http://code.google.com/p/tint2/issues])
 
 LT_INIT
 AM_INIT_AUTOMAKE
@@ -45,11 +45,6 @@ PKG_CHECK_MODULES([IMLIB2], [imlib2])
 AC_SUBST(IMLIB2_CFLAGS)
 AC_SUBST(IMLIB2_LIBS)
 
-## We need just the header so AC_CHECK_HEADERS might be enough...
-#PKG_CHECK_MODULES([XRANDR], [xrandr])
-#AC_SUBST(XRANDR_CFLAGS)
-#AC_SUBST(XRANDR_LIBS)
-
 # Checks for header files.
 AC_PATH_X
 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/time.h unistd.h])
@@ -65,8 +60,17 @@ AC_FUNC_FORK
 AC_FUNC_MALLOC
 AC_CHECK_FUNCS([gettimeofday memset select setlocale strcasecmp strchr strdup])
 
+AC_ARG_ENABLE([battery],
+                         [AS_HELP_STRING([--disable-battery], [Disable battery status plugin])],
+                         [case "${enableval}" in
+                          yes) battery=true ;;
+                          no) battery=false ;;
+                          *) AC_MSG_ERROR([bad value ${enableval} for --disable-battery]) ;;
+                  esac], [battery=true])
+AM_CONDITIONAL([ENABLE_BATTERY], [test x$battery = xtrue])
+
 AC_ARG_ENABLE([examples],
-                         [AS_HELP_STRING([--enable-examples], [Install additional $(PACKAGE_NAME)rc examples])],
+                         [AS_HELP_STRING([--enable-examples], [Install additional tin2rc examples])],
                          [case "${enableval}" in
                           yes) examples=true ;;
                           no)  examples=false ;;
@@ -74,15 +78,6 @@ AC_ARG_ENABLE([examples],
                   esac],[examples=false])
 AM_CONDITIONAL([INSTALL_EXAMPLES], [test x$examples = xtrue])
 
-AC_ARG_ENABLE([doc],
-                         [AS_HELP_STRING([--enable-doc], [Install additional documentation])],
-              [case "${enableval}" in
-                          yes) doc=true ;;
-                          no)  doc=false ;;
-                          *) AC_MSG_ERROR([bad value ${enableval} for --enable-doc]) ;;
-                  esac],[doc=false])
-AM_CONDITIONAL([INSTALL_DOC], [test x$doc = xtrue])
-
 AC_CONFIG_FILES([
                                 Makefile
                                 doc/Makefile
This page took 0.021845 seconds and 4 git commands to generate.