]> Dogcows Code - chaz/tint2/blob - configure.ac
Fix installation of examples.
[chaz/tint2] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3 AC_PREREQ([2.61])
4 AC_INIT([tint2], [0.10-beta1], [http://code.google.com/p/tint2/issues])
5
6 AM_INIT_AUTOMAKE
7
8 AC_CONFIG_MACRO_DIR([m4])
9 AC_CONFIG_SRCDIR([src/tint.c])
10 AC_CONFIG_HEADERS([config.h])
11
12 # tint2
13 AC_ARG_ENABLE([battery],
14 [AS_HELP_STRING([--disable-battery], [Disable battery status plugin])],
15 [case "${enableval}" in
16 yes) battery=true ;;
17 no) battery=false ;;
18 *) AC_MSG_ERROR([bad value ${enableval} for --disable-battery]) ;;
19 esac], [battery=true])
20 AM_CONDITIONAL([ENABLE_BATTERY], [test x$battery = xtrue])
21 #
22
23 AC_ARG_ENABLE([examples],
24 [AS_HELP_STRING([--enable-examples], [Install additional tin2rc examples])],
25 [case "${enableval}" in
26 yes) examples=true ;;
27 no) examples=false ;;
28 *) AC_MSG_ERROR([bad value ${enableval} for --enable-examples]) ;;
29 esac],[examples=false])
30 AM_CONDITIONAL([INSTALL_EXAMPLES], [test x$examples = xtrue])
31
32 # tint2conf
33 AC_ARG_ENABLE([tint2conf],
34 [AS_HELP_STRING([--disable-tint2conf], [Disable tint2conf build, a GTK+2 theme switcher for tint2])],
35 [case "${enableval}" in
36 yes) tint2conf=true ;;
37 no) tint2conf=false ;;
38 *) AC_MSG_ERROR([bad value ${enableval} for --disable-tint2conf]) ;;
39 esac],[tint2conf=true])
40 AM_CONDITIONAL([ENABLE_TINT2CONF], [test x$tint2conf = xtrue])
41 #
42
43 # Checks for programs.
44 AC_LANG([C])
45 AC_PROG_CC
46 PKG_PROG_PKG_CONFIG
47
48 # Checks for libraries.
49 PKG_CHECK_MODULES([PANGOCAIRO], [pangocairo])
50 AC_SUBST(PANGOCAIRO_CFLAGS)
51 AC_SUBST(PANGOCAIRO_LIBS)
52
53 PKG_CHECK_MODULES([PANGO], [pango])
54 AC_SUBST(PANGO_CFLAGS)
55 AC_SUBST(PANGO_LIBS)
56
57 PKG_CHECK_MODULES([CAIRO], [cairo])
58 AC_SUBST(CAIRO_CFLAGS)
59 AC_SUBST(CAIRO_LIBS)
60
61 PKG_CHECK_MODULES([GLIB2], [glib-2.0])
62 AC_SUBST(GLIB2_CFLAGS)
63 AC_SUBST(GLIB2_LIBS)
64
65 PKG_CHECK_MODULES([GOBJECT2], [gobject-2.0])
66 AC_SUBST(GOBJECT2_CFLAGS)
67 AC_SUBST(GOBJECT2_LIBS)
68
69 PKG_CHECK_MODULES([X11], [x11 xcomposite xdamage xinerama xrender xrandr])
70 AC_SUBST(X11_CFLAGS)
71 AC_SUBST(X11_LIBS)
72
73 PKG_CHECK_MODULES([IMLIB2], [imlib2])
74 AC_SUBST(IMLIB2_CFLAGS)
75 AC_SUBST(IMLIB2_LIBS)
76
77 # Reset LIBS since AC_CHECK_LIB adds -lmylib on success
78 LIBS_SAVED=$LIBS
79 # Ensure that Imlib2 has been built with X support.
80 AC_CHECK_LIB([Imlib2], [imlib_context_set_display], [],
81 AC_MSG_ERROR([Imlib2 must be built with X support]))
82
83 AC_CHECK_LIB([rt], [clock_gettime])
84 LIBS=$LIBS_SAVED
85
86 # Checks for header files.
87 AC_PATH_X
88 AC_CHECK_HEADERS([fcntl.h locale.h stdint.h stdlib.h string.h sys/time.h unistd.h])
89
90 # Checks for typedefs, structures, and compiler characteristics.
91 AC_HEADER_STDBOOL
92 AC_TYPE_INT16_T
93 AC_TYPE_INT64_T
94 AC_TYPE_INT8_T
95 AC_TYPE_PID_T
96
97 # Checks for library functions.
98 AC_FUNC_FORK
99 AC_FUNC_MALLOC
100 AC_FUNC_REALLOC
101 AC_CHECK_FUNCS([clock_gettime gettimeofday memset select setenv setlocale strcasecmp strchr strdup strstr])
102
103 # tint2conf (experimental)
104 if test "x$tint2conf" = xtrue;
105 then
106 # We want just link against stuff we really need so thats why I don't use PKG_CHECK_MODULES.
107 # gtk/glib is a bit horrible because we have to add -I directives for various features (like cairo, pango etc.)
108 # even if we don't need them.
109 # Sorry if that might be confusing %-)
110
111 AC_CHECK_FUNCS([strndup strrchr])
112 # Save LIBS value and clear the variable, AC_CHECK_LIB will append all libs to LIBS on success.
113 LIBS_SAVED=$LIBS
114 LIBS=
115
116 AC_CHECK_LIB([pthread], [pthread_create], [],
117 [AC_MSG_ERROR([libpthread is missing, usually provided by glibc])])
118 AC_CHECK_LIB([glib-2.0], [g_free], [],
119 [AC_MSG_ERROR([glib-2.x is missing])])
120 AC_CHECK_LIB([gobject-2.0], [g_signal_connect_data], [],
121 [AC_MSG_ERROR([libgobject-2.0 is missing, usually provided by glib-2.x])])
122 AC_CHECK_LIB([gtk-x11-2.0], [gtk_main], [],
123 [AC_MSG_ERROR([gtk+-2.x is missing or not built with X support])])
124 AC_CHECK_LIB([gthread-2.0], [g_thread_init], [],
125 [AC_MSG_ERROR([libgthread-2.0 is missing, usually provided by glib-2.x])])
126
127 TINT2CONF_LIBS="${LIBS} ${PTHREAD_LIB} ${GLIB2_LIB} ${GOBJECT2_LIB} ${IMLIB2_LIBS}"
128 LIBS=$LIBS_SAVED
129
130 TINT2CONF_CFLAGS="$(${PKG_CONFIG} --cflags gtk+-x11-2.0 glib-2.0 gobject-2.0 gthread-2.0) ${IMLIB2_CFLAGS}"
131 AC_SUBST(TINT2CONF_CFLAGS)
132 AC_SUBST(TINT2CONF_LIBS)
133
134 # Python stuff
135 AC_PATH_PROG([__PYTHON], [python])
136 if test -z "${__PYTHON}";
137 then
138 AC_MSG_ERROR([tint2conf requires python to be installed])
139 fi
140
141 PKG_CHECK_EXISTS([pygtk-2.0],,[AC_MSG_ERROR([tint2conf requires >=pygtk-2.0])])
142 fi
143 #
144
145 #
146 AM_CFLAGS="-Wall"
147 AM_LDFLAGS="-Wl,--as-needed"
148 AC_SUBST(AM_CFLAGS)
149 AC_SUBST(AM_LDFLAGS)
150
151 DISTCLEANFILES="Makefile.in"
152 AC_SUBST(DISTCLEANFILES)
153
154 AC_CONFIG_FILES([Makefile
155 doc/Makefile
156 sample/Makefile
157 src/Makefile
158 src/tint2conf/Makefile
159 src/version.h])
160
161 AC_OUTPUT
This page took 0.043607 seconds and 4 git commands to generate.