kill unused BUF_TO_VAL macro
[paraslash.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ(2.53)
5
6
7 AC_INIT(paraslash, [git], maan@systemlinux.org)
8 AC_CONFIG_HEADER([config.h])
9
10 ########################################################################### generic
11 AC_PROG_CC
12 AC_PROG_CPP
13 AC_PROG_INSTALL
14
15 AC_HEADER_DIRENT
16 AC_HEADER_STDC
17 AC_HEADER_SYS_WAIT
18 AC_CHECK_HEADERS([arpa/inet.h ctype.h fcntl.h limits.h netdb.h netinet/in.h stdlib.h \
19         string.h sys/socket.h sys/time.h sys/timeb.h sys/un.h sys/ipc.h unistd.h utime.h malloc.h], \
20         [], [AC_MSG_ERROR([$ac_header not found])])
21
22 AC_CHECK_HEADER(linux/soundcard.h, [extras="$extras para_fade"], 
23         [AC_MSG_WARN([linux/soundcard.h not found, \
24         cannot build para_fade])])
25
26 # Checks for typedefs, structures, and compiler characteristics.
27 AC_C_CONST
28 AC_TYPE_OFF_T
29 AC_TYPE_PID_T
30 AC_TYPE_SIZE_T
31 AC_HEADER_TIME
32 AC_STRUCT_TM
33
34 # Checks for library functions.
35 AC_FUNC_FORK
36 AC_PROG_GCC_TRADITIONAL
37 AC_FUNC_MALLOC
38 AC_FUNC_MEMCMP
39 AC_FUNC_MKTIME
40 AC_FUNC_MMAP
41 AC_FUNC_REALLOC
42 AC_FUNC_SELECT_ARGTYPES
43 AC_TYPE_SIGNAL
44 AC_FUNC_STAT
45 AC_FUNC_STRFTIME
46 AC_FUNC_VPRINTF
47 AC_CHECK_FUNCS([atexit dup2 gethostbyname inet_ntoa memchr memmove memset \
48         regcomp select socket strchr strdup strerror strstr strtol uname], [], 
49         [AC_MSG_ERROR([function not found, cannot live without it])])
50 ########################################################################### curses
51 AC_CHECK_LIB([ncurses], [initscr], [], 
52         [AC_MSG_ERROR([libncurses not found])])
53
54 AC_CHECK_LIB([menu], [new_menu], [extras="$extras para_dbadm"],
55         [AC_MSG_WARN([libmenu not found,  cannot build para_dbadm])])
56
57
58 recv_cmdline_objs="recv.cmdline http_recv.cmdline dccp_recv.cmdline"
59 recv_errlist_objs="http_recv recv_common recv time string net dccp_recv
60         dccp fd"
61 recv_ldflags=""
62
63 filter_cmdline_objs="filter.cmdline compress_filter.cmdline"
64 filter_errlist_objs="filter_chain wav compress filter string"
65 filter_ldflags=""
66
67 audiod_cmdline_objs="audiod.cmdline grab_client.cmdline compress_filter.cmdline
68         http_recv.cmdline dccp_recv.cmdline"
69 audiod_errlist_objs="audiod exec close_on_fork signal string daemon stat net
70         time grab_client filter_chain wav compress http_recv dccp dccp_recv recv_common fd"
71 audiod_ldflags=""
72
73 server_cmdline_objs="server.cmdline"
74 server_errlist_objs="server mp3 afs command net string signal random_selector
75         time daemon stat crypt http_send db close_on_fork playlist_selector
76         ipc dccp dccp_send fd"
77 server_ldflags=""
78
79 write_cmdline_objs="write.cmdline"
80 write_errlist_objs="write write_common file_writer time fd string"
81 write_ldflags=""
82 write_writers="file"
83
84
85 ########################################################################### ssl
86 dnl @synopsis CHECK_SSL
87 dnl
88 dnl based on the follwing macro from the autoconf archive
89 dnl
90 dnl @category InstalledPackages
91 dnl @author Mark Ethan Trostler <trostler@juniper.net>
92 dnl @version 2003-01-28
93 dnl @license AllPermissive
94
95 AC_DEFUN([CHECK_SSL],
96 [
97         for ssldir in $1 /usr/local/ssl /usr/lib/ssl /usr/ssl /usr/pkg /usr/local /usr; do
98                 AC_MSG_CHECKING(for openssl in $ssldir)
99                 if test -f "$ssldir/include/openssl/ssl.h"; then
100                         found_ssl="yes"
101                         AC_MSG_RESULT(yes)
102                         SSL_CFLAGS="-I$ssldir/include/openssl"
103                         SSL_CPPFLAGS="-I$ssldir/include/openssl"
104                         break
105                 fi
106                 if test -f "$ssldir/include/ssl.h"; then
107                         found_ssl="yes";
108                         AC_MSG_RESULT(yes)
109                         SSL_CFLAGS="-I$ssldir/include/";
110                         SSL_CPPFLAGS="-I$ssldir/include/";
111                         break
112                 fi
113                 AC_MSG_RESULT(no)
114         done
115         if test x_$found_ssl != x_yes; then
116                 AC_MSG_ERROR(Cannot find ssl libraries)
117         else
118                 SSL_LIBS="-lssl -lcrypto";
119                 SSL_LDFLAGS="-L$ssldir/lib";
120         fi
121         AC_SUBST(SSL_CPPFLAGS)
122         AC_SUBST(SSL_CFLAGS)
123         AC_SUBST(SSL_LIBS)
124         AC_SUBST(SSL_LDFLAGS)
125 ])dnl
126
127 AC_ARG_ENABLE(ssldir, [AS_HELP_STRING(--enable-ssldir=path,
128                 [Search for openssl also in path.])])
129 if test "$enable_ssldir" = "yes"; then enable_ssldir=""; fi
130 CHECK_SSL($enable_ssldir)
131 server_ldflags="$srver_ldflags $SSL_LDFLAGS $SSL_LIBS"
132
133 ########################################################################### ucred
134
135 AC_MSG_CHECKING(for struct ucred)
136 AC_TRY_LINK([
137         #include <sys/types.h>
138         #include <sys/socket.h>
139 ],[
140         struct ucred sucred; sucred.pid=0;
141 ],[have_ucred=yes],[have_ucred=no])
142 AC_MSG_RESULT($have_ucred)
143 if test ${have_ucred} = yes; then
144         AC_DEFINE(HAVE_UCRED, 1, define to 1 you have struct ucred)
145 fi
146
147 ########################################################################### gtk2
148
149 pkg_modules="gtk+-2.0 >= 2.0.0"
150 PKG_CHECK_MODULES(GTK, [$pkg_modules], [extras="$extras para_krell.so"], [
151         AC_MSG_WARN([gtk+-2 not found, can not build para_krell])
152 ])
153 AC_SUBST(GTK_CFLAGS)
154 AC_SUBST(GTK_LIBS)
155
156 ########################################################################### sdl
157 AC_CHECK_LIB([SDL_image], [SDL_Init], [extras="$extras para_sdl_gui"], [
158         AC_MSG_WARN([libSDL_image not found, cannot build para_sdl_gui])
159 ])
160 AC_CHECK_HEADER(SDL/SDL.h, [], 
161         [AC_MSG_WARN([SDL/SDL.h not found])])
162
163 ########################################################################### mysql
164 have_mysql="yes"
165 AC_CHECK_HEADER(mysql/mysql.h, [], [
166         have_mysql="no"
167 ])
168 AC_CHECK_LIB([mysqlclient], [mysql_init], [], [
169         have_mysql="no"
170 ])
171 if test "$have_mysql" = "yes"; then
172         server_ldflags="$server_ldflags -lmysqlclient"
173         server_errlist_objs="$server_errlist_objs mysql_selector"
174         AC_DEFINE(HAVE_MYSQL, 1, [define to 1 to turn on mysql support])
175 else
176         AC_MSG_WARN([cannot build mysql-based audio file selector])
177 fi
178 ########################################################################### ogg
179 have_ogg="yes"
180 AC_CHECK_LIB([ogg], [ogg_stream_init], [], [
181         have_ogg="no"
182 ])
183 AC_CHECK_LIB([vorbis], [vorbis_info_init], [], [
184         have_ogg="no"
185 ])
186 AC_CHECK_HEADERS([ogg/ogg.h vorbis/codec.h], [], [
187         have_ogg="no"
188 ])
189 if test "$have_ogg" = "yes"; then
190         AC_DEFINE(HAVE_OGGVORBIS, 1, define to 1 to turn on ogg vorbis support)
191         server_ldflags="$server_ldflags -logg -lvorbis -lvorbisfile"
192         filter_ldflags="$filter_ldflags -lvorbis -lvorbisfile"
193         audiod_ldflags="$audiod_ldflags -lvorbis -lvorbisfile"
194
195         filter_cmdline_objs="$filter_cmdline_objs oggdec_filter.cmdline"
196         audiod_cmdline_objs="$audiod_cmdline_objs oggdec_filter.cmdline"
197
198         server_errlist_objs="$server_errlist_objs ogg"
199         filter_errlist_objs="$filter_errlist_objs oggdec"
200         audiod_errlist_objs="$audiod_errlist_objs oggdec"
201 else
202         AC_MSG_WARN([no ogg vorbis support in para_server/para_filter])
203 fi
204 ########################################################################### mad
205 have_mad="yes"
206 AC_CHECK_HEADERS([mad.h], [], [
207         have_mad="no"
208 ])
209 AC_CHECK_LIB([mad], [mad_stream_init], [], [
210         have_mad="no"
211 ])
212 if test "$have_mad" = "yes"; then
213         AC_DEFINE(HAVE_MAD, 1, define to 1 if you want to build the mp3dec filter)
214         filter_errlist_objs="$filter_errlist_objs mp3dec"
215         audiod_errlist_objs="$audiod_errlist_objs mp3dec"
216         filter_ldflags="$filter_ldflags -lmad"
217         audiod_ldflags="$audiod_ldflags -lmad"
218 else
219         AC_MSG_WARN([no mp3dec support in para_audiod/para_filter])
220 fi
221 ########################################################################### alsa
222 have_alsa="yes"
223 msg="=> no alsa support for para_write"
224 AC_CHECK_HEADERS([alsa/asoundlib.h], [], [
225         AC_MSG_WARN([no alsa/asoundlib $msg])
226         have_alsa="no"
227 ])
228 AC_CHECK_LIB([asound], [snd_pcm_open], [], [
229         AC_MSG_WARN([no libasound $msg])
230         have_alsa="no"
231 ])
232 if test "$have_alsa" = "yes"; then
233         write_errlist_objs="$write_errlist_objs alsa_writer"
234         write_ldflags="$write_ldflags -lasound"
235         write_writers="$write_writers alsa"
236 fi
237 ########################################################################### ortp
238 have_ortp="yes"
239 AC_CHECK_HEADERS([ortp/ortp.h], [], [
240         have_ortp="no"
241 ])
242 AC_CHECK_LIB([ortp], [ortp_init], [], [
243         have_ortp="no"
244 ])
245 if test "$have_ortp" = "yes"; then
246         recv_cmdline_objs="$recv_cmdline_objs ortp_recv.cmdline"
247         recv_errlist_objs="$recv_errlist_objs ortp_recv"
248
249         audiod_cmdline_objs="$audiod_cmdline_objs ortp_recv.cmdline"
250         audiod_errlist_objs="$audiod_errlist_objs ortp_recv"
251
252         server_errlist_objs="$server_errlist_objs ortp_send"
253
254         recv_ldflags="$recv_ldflags -lortp"
255         server_ldflags="$server_ldflags -lortp"
256         audiod_ldflags="$audiod_ldflags -lortp"
257         AC_DEFINE(HAVE_ORTP, 1, [define to 1 to turn on ortp support])
258
259 else
260         AC_MSG_WARN([deactivating ortp support])
261 fi
262 AC_SUBST(GLIB_CFLAGS)
263 AC_SUBST(GLIB_LIBS)
264
265 ########################################################################### zmw
266 slide="para_slider"
267 msg="can not build para_slider"
268 CPPFLAGS="$GTK_CFLAGS"
269 LDFLAGS="$LDFLAGS $GTK_LIBS"
270 AC_CHECK_HEADERS([zmw/zmw.h], [], [
271         AC_MSG_WARN([zero memory widget header files not found, $msg])
272         slide=""
273 ])
274 AC_CHECK_LIB([zmw], [zmw_init], [], [
275         AC_MSG_WARN([zero memory widget library not found, $msg])
276         slide=""
277 ])
278 extras="$extras $slide"
279
280
281
282
283
284 AC_SUBST(extra_binaries, [$extras])
285 AC_SUBST(extra_filter_objs, [$extra_filter_objs])
286 AC_SUBST(extra_filter_libs, [$extra_filter_libs])
287 AC_SUBST(install_sh, [$INSTALL])
288 AC_CONFIG_FILES([Makefile])
289
290
291
292 AC_DEFUN([add_dot_o],[$(for i in $@; do printf "$i.o "; done)])
293 AC_DEFUN([objlist_to_errlist],[$(for i in $@; do printf "DEFINE_ERRLIST($(echo $i| tr 'a-z' 'A-Z'));"; done) [const char **para_errlist[[]]] = {$(for i in $@; do printf "PARA_ERRLIST($(echo $i | tr 'a-z' 'A-Z')), "; done) }])
294
295 recv_objs="$recv_cmdline_objs $recv_errlist_objs"
296 filter_objs="$filter_cmdline_objs $filter_errlist_objs"
297 audiod_objs="$audiod_cmdline_objs $audiod_errlist_objs"
298 server_objs="$server_cmdline_objs $server_errlist_objs"
299 write_objs="$write_cmdline_objs $write_errlist_objs"
300
301 AC_SUBST(recv_objs, add_dot_o($recv_objs))
302 AC_SUBST(recv_ldflags, $recv_ldflags)
303 AC_DEFINE_UNQUOTED(INIT_RECV_ERRLISTS, objlist_to_errlist($recv_errlist_objs),
304         errors used by para_recv)
305
306 AC_SUBST(filter_objs, add_dot_o($filter_objs))
307 AC_SUBST(filter_ldflags, $filter_ldflags)
308 AC_DEFINE_UNQUOTED(INIT_FILTER_ERRLISTS,
309         objlist_to_errlist($filter_errlist_objs), errors used by para_filter)
310
311 AC_SUBST(audiod_objs, add_dot_o($audiod_objs))
312 AC_SUBST(audiod_ldflags, $audiod_ldflags)
313 AC_DEFINE_UNQUOTED(INIT_AUDIOD_ERRLISTS, objlist_to_errlist($audiod_errlist_objs),
314         errors used by para_audiod)
315
316 AC_SUBST(server_objs, add_dot_o($server_objs))
317 AC_SUBST(server_ldflags, $server_ldflags)
318 AC_DEFINE_UNQUOTED(INIT_SERVER_ERRLISTS,
319         objlist_to_errlist($server_errlist_objs), errors used by para_server)
320
321 AC_SUBST(write_objs, add_dot_o($write_objs))
322 AC_SUBST(write_ldflags, $write_ldflags)
323 AC_DEFINE_UNQUOTED(INIT_WRITE_ERRLISTS,
324         objlist_to_errlist($write_errlist_objs), errors used by para_write)
325
326 enum="$(for i in $write_writers; do printf "${i}_WRITE, " | tr '[a-z]' '[A-Z]'; done)"
327 AC_DEFINE_UNQUOTED(WRITER_ENUM, $enum NUM_SUPPORTED_WRITERS,
328         enum of supported writers)
329 names="$(for i in $write_writers; do printf \"$i\",' ' ; done)"
330 AC_DEFINE_UNQUOTED(WRITER_NAMES, $names, supported writer names)
331 inits="$(for i in $write_writers; do printf 'extern void '$i'_writer_init(struct writer *); '; done)"
332 AC_DEFINE_UNQUOTED(DECLARE_WRITER_INITS, $inits, init functions of the supported writers)
333 array="$(for i in $write_writers; do printf '{.init = '$i'_writer_init},'; done)"
334 AC_DEFINE_UNQUOTED(WRITER_ARRAY, $array, array of supported writers)
335
336 gui_cmdline_objs="gui.cmdline"
337 gui_errlist_objs="exec close_on_fork signal string stat ringbuffer fd"
338 gui_other_objs="gui gui_common gui_theme"
339 gui_objs="$gui_cmdline_objs $gui_errlist_objs $gui_other_objs"
340 AC_DEFINE_UNQUOTED(INIT_GUI_ERRLISTS,
341         objlist_to_errlist($gui_errlist_objs), errors used by para_gui)
342 AC_SUBST(gui_objs, add_dot_o($gui_objs))
343
344 AC_OUTPUT
345 AC_MSG_NOTICE([creating Makefile.deps])
346 gcc -MM -MG *.c > Makefile.deps
347 AC_MSG_NOTICE([
348 paraslash configuration:
349 ~~~~~~~~~~~~~~~~~~~~~~~~
350 mysql support: $have_mysql
351 ogg vorbis support: $have_ogg
352 mp3dec support (libmad): $have_mad
353 ortp support: $have_ortp
354 unix socket credentials: $have_ucred
355 supported writers for para_write: $write_writers
356 ])