1 dnl Process this file with autoconf to produce a configure script.
4 dnl AC_INIT(src/main.c)
5 dnl AM_INIT_AUTOMAKE(wmbatteries, 0.1.2)
6 AC_INIT(wmbatteries, 0.1.2, florian.krohs@informatik.uni-oldenburg.de)
9 AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION)
11 AC_CONFIG_SRCDIR(src/main.c)
12 AM_CONFIG_HEADER(config.h)
14 dnl Checks for programs.
21 dnl Specify paths to look for libraries and headers
22 dnl ===============================================
23 AC_ARG_WITH(libs-from,
24 [ --with-libs-from pass compiler flags to look for libraries],
25 [lib_search_path="$withval $lib_search_path"])
27 AC_ARG_WITH(incs-from,
28 [ --with-incs-from pass compiler flags to look for header files],
29 [inc_search_path="$withval $inc_search_path"])
32 dnl ===========================================
34 dnl ===========================================
38 X_LIBRARY_PATH=$x_libraries
44 XLIBS="-lX11 $X_EXTRA_LIBS"
46 lib_search_path="$lib_search_path $XLFLAGS -L/usr/local/lib"
47 inc_search_path="$inc_search_path $XCFLAGS -I/usr/local/include"
49 AC_SUBST(X_LIBRARY_PATH)
53 AC_CHECK_LIB(Xext, XShapeCombineMask, [XLIBS="$XLIBS -lXext"],
54 [echo "The shape extension stuff could not be found in the X client libraries"
56 $X_LIBS $X_EXTRA_LIBS -lX11)
60 AC_CHECK_LIB(Xpm, XpmCreatePixmapFromData, [XLIBS="$XLIBS -lXpm"],
61 [echo "The libXpm library was not found, but is necessary to build this library"
63 $X_LIBS $X_EXTRA_LIBS -lX11)
69 AC_SUBST(X_EXTRA_LIBS)
71 dnl ===============================================
72 dnl End of stuff that uses X
73 dnl ===============================================
79 [ --enable-debug turn on debugging [default=on]],,enable_debug=no)
80 if test "$enable_debug" = yes; then
81 DFLAGS="-Wall -g -ansi -pedantic"
82 AC_DEFINE(DEBUG, 1, [use debug code])
106 SETGID_FLAGS="-g kmem -m 2755 -o root"
116 echo "Sorry, ${host_os} is not supported yet"
123 AC_SUBST(SETGID_FLAGS)
126 if test "$ignore_buffers" = yes; then
127 AC_DEFINE(IGNORE_BUFFERS, 1, [use '--ignore-buffers' option])
129 if test "$ignore_cached" = yes; then
130 AC_DEFINE(IGNORE_CACHED, 1, [use '--ignore-cached' option])
132 if test "$ignore_wired" = yes; then
133 AC_DEFINE(IGNORE_WIRED, 1, [use '--ignore-wired' option])
137 dnl =============================
138 dnl Checks for library functions.
139 dnl =============================
141 LIBRARY_SEARCH_PATH="$lib_search_path"
142 HEADER_SEARCH_PATH="$inc_search_path"
144 AC_SUBST(LIBRARY_SEARCH_PATH)
145 AC_SUBST(HEADER_SEARCH_PATH)
147 dnl Checks for header files.
149 AC_CHECK_HEADERS([fcntl.h memory.h stddef.h stdlib.h string.h strings.h sys/param.h sys/time.h unistd.h])
151 dnl Checks for typedefs, structures, and compiler characteristics.
156 dnl Checks for library functions.
158 AC_CHECK_FUNCS(select strtoul uname)
160 AC_CONFIG_FILES(Makefile \