]> git.evergreen-ils.org Git - OpenSRF.git/blob - configure.ac
Teach Perl Makefile to build Build for every target
[OpenSRF.git] / configure.ac
1 # Copyright (C) 2008 Equinox Software, Inc.
2 # Kevin Beswick <kevinbeswick00@gmail.com>
3 # Copyright (C) 2009-2010 Dan Scott <dscott@laurentian.ca>
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # Process this file with autoconf to produce a configure script.
16
17
18 #-------------------------------
19 # Initialization
20 #-------------------------------
21
22 export PATH=${PATH}:/usr/sbin
23 AC_PREREQ(2.59)
24 AC_INIT([OpenSRF],[trunk],[open-ils-dev@list.georgialibraries.org])
25 AM_INIT_AUTOMAKE([OpenSRF], [trunk])
26 AC_REVISION($Revision: 0.1 $)
27 AC_CONFIG_SRCDIR([configure.ac])
28 AC_PREFIX_DEFAULT([/opensrf])
29 AC_CONFIG_MACRO_DIR([m4])
30
31 # Enable $prefix to resolve to a reasonable value in substitutions in
32 # scripts if no explict value was passed in to configure
33 if test "$prefix" == "NONE"; then
34    prefix=$ac_default_prefix
35 fi
36
37 # Perl and Python scripts don't want ${prefix} if no value was specified
38 eval "eval CONF_DIR=$sysconfdir"
39 eval "eval PID_DIR=$localstatedir"
40 AC_SUBST([CONF_DIR])
41 AC_SUBST([PID_DIR])
42
43 AC_SUBST(prefix)
44 AC_SUBST(bindir)
45
46
47 AC_DEFUN([AC_PYTHON_MOD],[
48     if test -z $PYTHON;
49     then
50         PYTHON="python"
51     fi
52     AC_MSG_CHECKING($PYTHON_NAME module: $1)
53         $PYTHON -c "import $1" 2>/dev/null
54         if test $? -eq 0;
55         then
56                 AC_MSG_RESULT(yes)
57                 eval AS_TR_CPP(HAVE_PYMOD_$1)=yes
58         else
59                 AC_MSG_ERROR(failed to find required module $1)
60                 exit 1
61         fi
62 ])
63
64 #-------------------------------
65 # Installation options
66 #-------------------------------
67
68 # build and install the java libs?
69 AC_ARG_ENABLE([java],
70 [  --enable-java    enable building and installing the java libraries],
71 [case "${enableval}" in
72     yes) OSRF_INSTALL_JAVA=true ;;
73     no) OSRF_INSTALL_JAVA=false ;; 
74   *) AC_MSG_ERROR([please choose another value for --enable-java (supported values are yes or no)]) ;;
75 esac],
76 [OSRF_INSTALL_JAVA=false])
77
78 AM_CONDITIONAL([BUILDJAVA], [test x$OSRF_INSTALL_JAVA = xtrue])
79 AC_SUBST([OSRF_INSTALL_JAVA])
80
81 # install the javascript files?
82 AC_ARG_ENABLE([javascript],
83 [  --disable-javascript    disable installing JavaScript libraries],
84 [case "${enableval}" in
85     yes) OSRF_INSTALL_JAVASCRIPT=true ;;
86     no) OSRF_INSTALL_JAVASCRIPT=false ;; 
87   *) AC_MSG_ERROR([please choose another value for --disable-javascript (supported values are yes or no)]) ;;
88 esac],
89 [OSRF_INSTALL_JAVASCRIPT=true])
90
91 AM_CONDITIONAL([INSTALLJAVASCRIPT], [test x$OSRF_INSTALL_JAVASCRIPT = xtrue])
92 AC_SUBST([OSRF_INSTALL_JAVASCRIPT])
93
94 # install the OpenSRF core files?
95 AC_ARG_ENABLE([core],
96 [  --disable-core    disable installing core files],
97 [case "${enableval}" in
98     yes) OSRF_INSTALL_CORE=true ;;
99     no) OSRF_INSTALL_CORE=false ;; 
100   *) AC_MSG_ERROR([please choose another value for --disable-core (supported values are yes or no)]) ;;
101 esac],
102 [OSRF_INSTALL_CORE=true])
103
104 AM_CONDITIONAL([BUILDCORE], [test x$OSRF_INSTALL_CORE = xtrue])
105 AC_SUBST([OSRF_INSTALL_CORE])
106
107
108 # build and install the python modules
109 AC_ARG_ENABLE([python],
110 [  --enable-python  enable building and installing python modules],
111 [case "${enableval}" in
112   yes) OSRF_INSTALL_PYTHON=true ;;
113   no) OSRF_INSTALL_PYTHON=false ;;
114   *) AC_MSG_ERROR([please choose another value for --enable-python (supported values are yes or no)]) ;;
115 esac],
116 [OSRF_INSTALL_PYTHON=false])
117
118 AM_CONDITIONAL([BUILDPYTHON], [test x$OSRF_INSTALL_PYTHON = xtrue])
119 AC_SUBST([OSRF_INSTALL_PYTHON])
120
121 # enable chopchop, the basic XMPP server
122
123 AC_ARG_ENABLE([chopchop],
124 [  --enable-chopchop    build and install chopchop, a basic XMPP server],
125 [case "${enableval}" in
126     yes) OSRF_INSTALL_CHOPCHOP=true ;;
127     no) OSRF_INSTALL_CHOPCHOP=false ;; 
128   *) AC_MSG_ERROR([please choose another value for --enable-chopchop (supported values are yes or no)]) ;;
129 esac],
130 [OSRF_INSTALL_CHOPCHOP=false])
131
132 AM_CONDITIONAL([BUILDCHOPCHOP], [test x$OSRF_INSTALL_CHOPCHOP = xtrue])
133 AC_SUBST([OSRF_INSTALL_CHOPCHOP])
134
135 # enable debug?
136
137 AC_ARG_ENABLE(debug,
138 [  --enable-debug    Turn on debugging],
139 [case "${enableval}" in
140   yes) debug=true ;;
141   no)  debug=false ;;
142   *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
143 esac],[debug=false])
144 AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
145  
146 # path to the directory containing the java dependency jar files (included if java installs)
147 if test $OSRF_INSTALL_JAVA; then
148         AC_SUBST([OSRF_JAVA_DEPSDIR], [/opt/java])
149     AC_CONFIG_FILES([src/java/Makefile])
150 fi
151
152 #--------------------------------
153 # Checks for programs.
154 #--------------------------------
155
156 AC_PROG_LIBTOOL
157 AC_PROG_AWK
158 AC_PROG_CC
159 AC_PROG_INSTALL
160 AC_PROG_MAKE_SET
161
162 #------------------------------
163 # Set install path variables
164 #------------------------------
165 AC_ARG_WITH([tmp],
166 [  --with-tmp=path                  location for the temporary directory for OpenSRF (default is /tmp)],
167 [TMP=${withval}],
168 [TMP=/tmp])
169 AC_SUBST([TMP])
170
171 AC_ARG_WITH([apxs],
172 [  --with-apxs=path                 location of the apxs (Apache extension) tool (default is /usr/bin/apxs2)],
173 [APXS2=${withval}],
174 [APXS2=/usr/bin/apxs2])
175 if ! test -x "$APXS2"; then
176         for i in /usr/bin /usr/sbin /usr/local/apache/bin /usr/local/apache2/bin ; do
177                 for j in apxs apxs2 ; do
178                         if test -x "$i/$j"; then
179                                 APXS2="$i/$j"
180                                 break
181                         fi
182                 done
183         done
184 fi
185 AC_SUBST([APXS2])
186
187 AC_ARG_WITH([apache],
188 [  --with-apache=path               location of the Apache headers (default is /usr/include/apache2)],
189 [APACHE2_HEADERS=${withval}],
190 [APACHE2_HEADERS=/usr/include/apache2])
191 if ! test -d "$APACHE2_HEADERS"; then
192         for i in /usr/include/httpd ; do
193                 if test -d "$i"; then
194                         APACHE2_HEADERS="$i"
195                         break
196                 fi
197         done
198 fi
199 AC_SUBST([APACHE2_HEADERS])
200
201 AC_ARG_WITH([apr],
202 [  --with-apr=path                  location of the Apache Portable Runtime headers (default is /usr/include/apr-1.0/)],
203 [APR_HEADERS=${withval}],
204 [APR_HEADERS=/usr/include/apr-1.0])
205 if ! test -d "$APR_HEADERS"; then
206         for i in /usr/include/apr-1 ; do
207                 if test -d "$i"; then
208                         APR_HEADERS="$i"
209                         break
210                 fi
211         done
212 fi
213 AC_SUBST([APR_HEADERS])
214
215 AC_ARG_WITH([libxml],
216 [  --with-libxml=path               location of the libxml2 headers (default is /usr/include/libxml2/))],
217 [LIBXML2_HEADERS=${withval}],
218 [LIBXML2_HEADERS=/usr/include/libxml2/])
219 AC_SUBST([LIBXML2_HEADERS])
220
221 AC_ARG_WITH([includes],
222 [  --with-includes=DIRECTORIES      a colon-separated list of directories that will be added to the list the compiler searches for header files (Example: --with-includes=/path/headers:/anotherpath/moreheaders)],
223 [EXTRA_USER_INCLUDES=${withval}])
224
225 AC_ARG_WITH([libraries],
226 [  --with-libraries=DIRECTORIES     a colon-separated list of directories to search for libraries (Example: --with-libraries=/lib:/usr/lib)],
227 [EXTRA_USER_LIBRARIES=${withval}])
228
229 # Change these lists to proper compiler/linker options
230
231 IFSBAK=${IFS}
232 IFS="${IFS}:"
233
234 for dir in $EXTRA_USER_INCLUDES; do
235         if test -d "$dir"; then
236           INCLUDES="$INCLUDES -I$dir"
237         else
238           AC_MSG_WARN([*** Include directory $dir does not exist.])
239         fi
240 done
241 AC_SUBST(INCLUDES)
242
243 for dir in $EXTRA_USER_LIBRARIES; do
244         if test -d "$dir"; then
245           LIBDIRS="$LIBDIRS -L$dir"
246         else
247           AC_MSG_WARN([*** Library directory $dir does not exist.])
248         fi
249 done
250 AC_SUBST(LIBDIRS)
251
252 IFS=${IFSBAK}
253
254 AC_CONFIG_FILES([Makefile
255         src/Makefile])
256
257 #PYTHON TESTS
258 if test x$OSRF_INSTALL_PYTHON = xtrue; then
259     AC_CHECK_PROG([HAVE_PYTHON],python,yes,no)
260     if test $HAVE_PYTHON = "no"; then
261         AC_MSG_ERROR([*** python not found, aborting])
262     fi
263     AC_PYTHON_MOD([setuptools])
264     AC_CONFIG_FILES([
265         examples/math_client.py
266         src/python/Makefile
267     ])
268 fi
269
270 if test "x$OSRF_INSTALL_CORE" = "xtrue"; then
271         #--------------------------------
272         # Check for dependencies.
273         #--------------------------------
274
275         #APACHE PREFORK DEV TEST
276         AC_MSG_CHECKING([APXS])
277         if test -f "${APXS2}"; then
278         AC_MSG_RESULT([yes])
279         else
280         AC_MSG_ERROR([*** apxs not found, aborting])
281         fi  
282
283         #-----------------------------
284         # Checks for libraries.
285         #-----------------------------
286
287         AC_SEARCH_LIBS([dlerror], [dl], [],AC_MSG_ERROR([***OpenSRF requires a library (typically libdl) that provides dlerror()]))
288         AC_CHECK_LIB([ncurses], [initscr], [], AC_MSG_ERROR(***OpenSRF requires ncurses development headers))
289         AC_CHECK_LIB([readline], [readline], [], AC_MSG_ERROR(***OpenSRF requires readline development headers))
290         AC_CHECK_LIB([xml2], [xmlAddID], [], AC_MSG_ERROR(***OpenSRF requires xml2 development headers))
291         # Check for libmemcached and set flags accordingly
292         PKG_CHECK_MODULES(memcached, libmemcached >= 0.8.0)
293         AC_SUBST(memcached_CFLAGS)
294         AC_SUBST(memcached_LIBS)
295
296         #-----------------------------
297         # Checks for header files.
298         #-----------------------------
299
300         AC_HEADER_STDC
301         AC_HEADER_SYS_WAIT
302         AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h malloc.h netdb.h netinet/in.h stdlib.h string.h strings.h sys/socket.h sys/time.h sys/timeb.h syslog.h unistd.h])
303
304         #------------------------------------------------------------------
305         # Checks for typedefs, structures, and compiler characteristics.
306         #------------------------------------------------------------------
307
308         AC_C_CONST
309         AC_C_INLINE
310         AC_TYPE_PID_T
311         AC_TYPE_SIZE_T
312         AC_HEADER_TIME
313         AC_STRUCT_TM
314
315         #----------------------------------
316         # Checks for library functions.
317         #----------------------------------
318
319         AC_FUNC_FORK
320         AC_FUNC_MALLOC
321         AC_FUNC_SELECT_ARGTYPES
322         AC_TYPE_SIGNAL
323         AC_FUNC_STRFTIME
324         AC_FUNC_STRTOD
325         AC_FUNC_VPRINTF
326         AC_CHECK_FUNCS([bzero dup2 gethostbyname gethostname gettimeofday malloc_stats memset select socket strcasecmp strchr strdup strerror strncasecmp strndup strrchr strtol])
327
328         #------------------------------------
329         # Configuration and output
330         #------------------------------------
331
332         AC_CONFIG_FILES([doc/dokuwiki-doc-stubber.pl
333                          examples/math_xul_client/Makefile
334                          examples/math_bench.pl
335                          examples/multisession-test.pl
336                          src/c-apps/Makefile
337                          src/gateway/Makefile
338                          src/jserver/Makefile
339                          src/libopensrf/Makefile
340                          src/perl/Makefile
341                          src/ports/strn_compat/Makefile
342                          src/router/Makefile
343                          src/srfsh/Makefile
344                          bin/opensrf-perl.pl
345                          bin/osrf_config
346                          bin/osrf_ctl.sh])
347 fi
348
349 AC_OUTPUT
350
351 AC_MSG_RESULT([])
352 AC_MSG_RESULT([--------------------- Configuration options:  -----------------------])
353
354 if test "$OSRF_INSTALL_JAVA" = "true" ; then
355         AC_MSG_RESULT([OSRF install Java support?       yes])
356         AC_MSG_RESULT([Java support files               $OSRF_JAVA_DEPSDIR])
357 else
358         AC_MSG_RESULT([OSRF install Java support?       no])
359 fi
360
361 if test "$OSRF_INSTALL_PYTHON" = "true" ; then
362         AC_MSG_RESULT([OSRF install Python support?     yes])
363 else
364         AC_MSG_RESULT([OSRF install Python support?     no])
365 fi
366
367 if test "$OSRF_INSTALL_CHOPCHOP" = "true" ; then
368         AC_MSG_RESULT([OSRF install chopchop?           yes])
369 else
370         AC_MSG_RESULT([OSRF install chopchop?           no])
371 fi
372
373         AC_MSG_RESULT(Installation directory prefix:   ${prefix})
374         AC_MSG_RESULT(Temporary directory:             ${TMP})
375         AC_MSG_RESULT(APXS2 location:                  ${APXS2})
376         AC_MSG_RESULT(Apache headers location:         ${APACHE2_HEADERS})
377         AC_MSG_RESULT(APR headers location:            ${APR_HEADERS})
378         AC_MSG_RESULT(libxml2 headers location:        ${LIBXML2_HEADERS})
379
380 AC_MSG_RESULT([----------------------------------------------------------------------])