]> Dogcows Code - chaz/openbox/blob - configure.ac
add doxygen to the project. 'make doc' builds the doxygen stuff. you need doxygen...
[chaz/openbox] / configure.ac
1 AC_INIT([src/main.cc])
2 AM_CONFIG_HEADER(config.h)
3 AM_INIT_AUTOMAKE([openbox], [2.90.0cvs])
4
5 AC_PREREQ([2.50])
6
7 AC_PATH_PROG([regex_cmd], [sed])
8 test -z $regex_cmd && AC_MSG_ERROR([sed not found])
9
10 AC_PROG_CC
11 AC_PROG_CXX
12 AC_PROG_LIBTOOL
13 LIBTOOL="$LIBTOOL --silent"
14 AC_PROG_INSTALL
15
16 ALL_LINGUAS=""
17 AM_GNU_GETTEXT
18
19 AC_LANG(C++)
20
21 dnl Check what compiler we are using
22 AC_MSG_CHECKING([for GCC])
23 if test "$GCC" = "yes"; then
24 AC_MSG_RESULT([yes])
25 CPPFLAGS="$CPPFLAGS -Wall -W -pedantic"
26 else
27 AC_MSG_RESULT([no, trying other compilers])
28 AC_MSG_CHECKING(for MIPSpro)
29 mips_pro_ver=`$CXX -version 2>&1 | grep -i mipspro | cut -f4 -d ' '`
30 if test -z "$mips_pro_ver"; then
31 AC_MSG_RESULT([no])
32 else
33 AC_MSG_RESULT([yes, version $mips_pro_ver.])
34 AC_MSG_CHECKING(for -LANG:std in CPPFLAGS)
35 lang_std_not_set=`echo $CPPFLAGS | grep "\-LANG:std"`
36 if test "x$lang_std_not_set" = "x"; then
37 AC_MSG_RESULT([not set, setting.])
38 CPPFLAGS="${CPPFLAGS} -LANG:std"
39 else
40 AC_MSG_RESULT([already set.])
41 fi
42 fi
43 fi
44
45 dnl Determine if maintainer portions of the Makefiles should be included.
46 AM_MAINTAINER_MODE
47
48 dnl Check for system header files
49 AC_CHECK_HEADERS(ctype.h dirent.h fcntl.h libgen.h locale.h nl_types.h process.h signal.h stdarg.h stdio.h stdlib.h string.h time.h unistd.h sys/param.h sys/select.h sys/signal.h sys/stat.h sys/time.h sys/types.h sys/wait.h)
50 AC_HEADER_TIME
51
52 dnl Determine the return type of signal handlers
53 AC_TYPE_SIGNAL
54
55 dnl Check whether to include debugging code
56 DEBUG=""
57 AC_MSG_CHECKING([whether to include verbose debugging code])
58 AC_ARG_ENABLE([debug],
59 [ --enable-debug include verbose debugging code @<:@default=no@:>@],
60 if test "$enableval" = "yes"; then
61 AC_MSG_RESULT([yes])
62 if test "$GCC" = "yes"; then
63 DEBUG="-DDEBUG -fno-inline -g"
64 else
65 DEBUG="-DDEBUG"
66 fi
67 else
68 AC_MSG_RESULT([no])
69 DEBUG="-DNDEBUG"
70 fi,
71 AC_MSG_RESULT([no])
72 DEBUG="-DNDEBUG"
73 )
74 CPPFLAGS="$CPPFLAGS $DEBUG"
75
76 dnl Check for X headers and libraries
77 AC_PATH_X
78 AC_PATH_XTRA
79 test "$no_x" = "yes" && AC_MSG_ERROR([No Xlibs found.])
80 test -z "$x_includes" && x_includes="/usr/include"
81 test -z "$x_libraries" && x_libraries="/usr/lib"
82
83 CPPFLAGS="$CPPFLAGS $X_CPPFLAGS"
84 LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS"
85 LDFLAGS="$LDFLAGS $X_PRE_LIBS $LIBS $X_EXTRA_LIBS"
86
87 dnl Check for required functions in -lX11
88 AC_CHECK_LIB([X11], [XOpenDisplay],
89 ,
90 AC_MSG_ERROR([Could not find XOpenDisplay in -lX11.])
91 )
92
93 dnl Check for XShape extension support
94 AC_CHECK_LIB([Xext], [XShapeCombineShape],
95 AC_MSG_CHECKING([for X11/extensions/shape.h])
96 AC_TRY_LINK(
97 [
98 #include <X11/Xlib.h>
99 #include <X11/Xutil.h>
100 #include <X11/extensions/shape.h>
101 ],
102 [
103 long foo = ShapeSet
104 ],
105 [
106 AC_MSG_RESULT([yes])
107 SHAPE="yes"
108 AC_DEFINE([HAVE_SHAPE], [1], [Found the XShape extension])
109 LIBS="$LIBS -lXext"
110 ],
111 [
112 AC_MSG_RESULT([no])
113 SHAPE="no"
114 ]
115 )
116 )
117 AC_MSG_CHECKING([for the XShape extension])
118 if test "$SHAPE" = "yes"; then
119 AC_MSG_RESULT([yes])
120 else
121 AC_MSG_RESULT([no])
122 fi
123
124 dnl Check for Xinerama extension support
125 AC_MSG_CHECKING([whether to build support for the Xinerama extension])
126 XINERAMA="no"
127 AC_ARG_ENABLE([xinerama],
128 [ --enable-xinerama enable support of the Xinerama extension @<:@default=no@:>@],
129 if test "$enableval" = "yes"; then
130 AC_MSG_RESULT([yes])
131
132 AC_CHECK_LIB([Xinerama], [XineramaQueryExtension],
133 [
134 AC_MSG_CHECKING([for X11/extensions/Xinerama.h])
135 AC_TRY_LINK(
136 [
137 #include <X11/Xlib.h>
138 #include <X11/extensions/Xinerama.h>
139 ],
140 [
141 XineramaScreenInfo foo
142 ],
143 [
144 AC_MSG_RESULT([yes])
145 XINERAMA="yes"
146 AC_DEFINE([XINERAMA], [1],
147 [Enable support of the Xinerama extension])
148 LIBS="$LIBS -lXinerama"
149 ],
150 [
151 AC_MSG_RESULT([no])
152 ]
153 )
154 ]
155 )
156
157 AC_MSG_CHECKING([for the Xinerama extension])
158 if test "$XINRERAMA" = "yes"; then
159 AC_MSG_RESULT([yes])
160 else
161 AC_MSG_RESULT([no])
162 fi
163 else
164 AC_MSG_RESULT([no])
165 fi,
166 AC_MSG_RESULT([no])
167 )
168
169 AC_CONFIG_FILES([Makefile
170 m4/Makefile
171 po/Makefile.in
172 intl/Makefile
173 otk/Makefile
174 src/Makefile
175 util/Makefile
176 util/epist/Makefile
177 doc/Makefile
178 doc/doxygen/Makefile
179 data/Makefile
180 data/styles/Makefile
181 version.h
182 ])
183 AC_OUTPUT
184
185 AC_MSG_RESULT
186 AC_MSG_RESULT([$PACKAGE version $VERSION configured successfully.])
187
188 AC_MSG_RESULT
189 AC_MSG_RESULT([Using '$prefix' for installation.])
190 AC_MSG_RESULT([Using '$CXX' for C++ compiler.])
191 AC_MSG_RESULT([Building with '$CPPFLAGS' for C++ compiler flags.])
192 AC_MSG_RESULT([Building with '$LIBS' for linker flags.])
193 AC_MSG_RESULT
194 AC_MSG_RESULT([configure complete, now type \"make\"])
195 AC_MSG_RESULT
This page took 0.040017 seconds and 4 git commands to generate.