]> git.evergreen-ils.org Git - OpenSRF.git/blob - configure.ac
1a57438f7faa5f3b9b3c671ae2d0992324e74fa8
[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 AC_SUBST([CONF_DIR])
40
41 AC_SUBST(prefix)
42 AC_SUBST(bindir)
43
44
45 AC_DEFUN([AC_PYTHON_MOD],[
46     if test -z $PYTHON;
47     then
48         PYTHON="python"
49     fi
50     AC_MSG_CHECKING($PYTHON_NAME module: $1)
51         $PYTHON -c "import $1" 2>/dev/null
52         if test $? -eq 0;
53         then
54                 AC_MSG_RESULT(yes)
55                 eval AS_TR_CPP(HAVE_PYMOD_$1)=yes
56         else
57                 AC_MSG_ERROR(failed to find required module $1)
58                 exit 1
59         fi
60 ])
61
62 #-------------------------------
63 # Installation options
64 #-------------------------------
65
66 # build and install the java libs?
67 AC_ARG_ENABLE([java],
68 [  --enable-java    enable building and installing the java libraries],
69 [case "${enableval}" in
70     yes) OSRF_INSTALL_JAVA=true ;;
71     no) OSRF_INSTALL_JAVA=false ;; 
72   *) AC_MSG_ERROR([please choose another value for --enable-java (supported values are yes or no)]) ;;
73 esac],
74 [OSRF_INSTALL_JAVA=false])
75
76 AM_CONDITIONAL([BUILDJAVA], [test x$OSRF_INSTALL_JAVA = xtrue])
77 AC_SUBST([OSRF_INSTALL_JAVA])
78
79 # install the javascript files?
80 AC_ARG_ENABLE([javascript],
81 [  --disable-javascript    disable installing JavaScript libraries],
82 [case "${enableval}" in
83     yes) OSRF_INSTALL_JAVASCRIPT=true ;;
84     no) OSRF_INSTALL_JAVASCRIPT=false ;; 
85   *) AC_MSG_ERROR([please choose another value for --disable-javascript (supported values are yes or no)]) ;;
86 esac],
87 [OSRF_INSTALL_JAVASCRIPT=true])
88
89 AM_CONDITIONAL([INSTALLJAVASCRIPT], [test x$OSRF_INSTALL_JAVASCRIPT = xtrue])
90 AC_SUBST([OSRF_INSTALL_JAVASCRIPT])
91
92 # install the OpenSRF core files?
93 AC_ARG_ENABLE([core],
94 [  --disable-core    disable installing core files],
95 [case "${enableval}" in
96     yes) OSRF_INSTALL_CORE=true ;;
97     no) OSRF_INSTALL_CORE=false ;; 
98   *) AC_MSG_ERROR([please choose another value for --disable-core (supported values are yes or no)]) ;;
99 esac],
100 [OSRF_INSTALL_CORE=true])
101
102 AM_CONDITIONAL([BUILDCORE], [test x$OSRF_INSTALL_CORE = xtrue])
103 AC_SUBST([OSRF_INSTALL_CORE])
104
105
106 # build and install the python modules
107 AC_ARG_ENABLE([python],
108 [  --enable-python  enable building and installing python modules],
109 [case "${enableval}" in
110   yes) OSRF_INSTALL_PYTHON=true ;;
111   no) OSRF_INSTALL_PYTHON=false ;;
112   *) AC_MSG_ERROR([please choose another value for --enable-python (supported values are yes or no)]) ;;
113 esac],
114 [OSRF_INSTALL_PYTHON=false])
115
116 AM_CONDITIONAL([BUILDPYTHON], [test x$OSRF_INSTALL_PYTHON = xtrue])
117 AC_SUBST([OSRF_INSTALL_PYTHON])
118
119 # enable chopchop, the basic XMPP server
120
121 AC_ARG_ENABLE([chopchop],
122 [  --enable-chopchop    build and install chopchop, a basic XMPP server],
123 [case "${enableval}" in
124     yes) OSRF_INSTALL_CHOPCHOP=true ;;
125     no) OSRF_INSTALL_CHOPCHOP=false ;; 
126   *) AC_MSG_ERROR([please choose another value for --enable-chopchop (supported values are yes or no)]) ;;
127 esac],
128 [OSRF_INSTALL_CHOPCHOP=false])
129
130 AM_CONDITIONAL([BUILDCHOPCHOP], [test x$OSRF_INSTALL_CHOPCHOP = xtrue])
131 AC_SUBST([OSRF_INSTALL_CHOPCHOP])
132
133 # enable debug?
134
135 AC_ARG_ENABLE(debug,
136 [  --enable-debug    Turn on debugging],
137 [case "${enableval}" in
138   yes) debug=true ;;
139   no)  debug=false ;;
140   *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
141 esac],[debug=false])
142 AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
143  
144 # path to the directory containing the java dependency jar files (included if java installs)
145 if test $OSRF_INSTALL_JAVA; then
146         AC_SUBST([OSRF_JAVA_DEPSDIR], [/opt/java])
147     AC_CONFIG_FILES([src/java/Makefile])
148 fi
149
150 #--------------------------------
151 # Checks for programs.
152 #--------------------------------
153
154 AC_PROG_LIBTOOL
155 AC_PROG_AWK
156 AC_PROG_CC
157 AC_PROG_INSTALL
158 AC_PROG_MAKE_SET
159
160 #------------------------------
161 # Set install path variables
162 #------------------------------
163 AC_ARG_WITH([tmp],
164 [  --with-tmp=path                  location for the temporary directory for OpenSRF (default is /tmp)],
165 [TMP=${withval}],
166 [TMP=/tmp])
167 AC_SUBST([TMP])
168
169 AC_ARG_WITH([apxs],
170 [  --with-apxs=path                 location of the apxs (Apache extension) tool (default is /usr/bin/apxs2)],
171 [APXS2=${withval}],
172 [APXS2=/usr/bin/apxs2])
173 AC_SUBST([APXS2])
174
175 AC_ARG_WITH([apache],
176 [  --with-apache=path               location of the Apache headers (default is /usr/include/apache2)],
177 [APACHE2_HEADERS=${withval}],
178 [APACHE2_HEADERS=/usr/include/apache2])
179 AC_SUBST([APACHE2_HEADERS])
180
181 AC_ARG_WITH([apr],
182 [  --with-apr=path                  location of the Apache Portable Runtime headers (default is /usr/include/apr-1.0/)],
183 [APR_HEADERS=${withval}],
184 [APR_HEADERS=/usr/include/apr-1.0])
185 AC_SUBST([APR_HEADERS])
186
187 AC_ARG_WITH([libxml],
188 [  --with-libxml=path               location of the libxml2 headers (default is /usr/include/libxml2/))],
189 [LIBXML2_HEADERS=${withval}],
190 [LIBXML2_HEADERS=/usr/include/libxml2/])
191 AC_SUBST([LIBXML2_HEADERS])
192
193 AC_ARG_WITH([includes],
194 [  --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)],
195 [EXTRA_USER_INCLUDES=${withval}])
196
197 AC_ARG_WITH([libraries],
198 [  --with-libraries=DIRECTORIES     a colon-separated list of directories to search for libraries (Example: --with-libraries=/lib:/usr/lib)],
199 [EXTRA_USER_LIBRARIES=${withval}])
200
201 # Change these lists to proper compiler/linker options
202
203 IFSBAK=${IFS}
204 IFS="${IFS}:"
205
206 for dir in $EXTRA_USER_INCLUDES; do
207         if test -d "$dir"; then
208           INCLUDES="$INCLUDES -I$dir"
209         else
210           AC_MSG_WARN([*** Include directory $dir does not exist.])
211         fi
212 done
213 AC_SUBST(INCLUDES)
214
215 for dir in $EXTRA_USER_LIBRARIES; do
216         if test -d "$dir"; then
217           LIBDIRS="$LIBDIRS -L$dir"
218         else
219           AC_MSG_WARN([*** Library directory $dir does not exist.])
220         fi
221 done
222 AC_SUBST(LIBDIRS)
223
224 IFS=${IFSBAK}
225
226 AC_CONFIG_FILES([Makefile
227         src/Makefile])
228
229 #PYTHON TESTS
230 if test x$OSRF_INSTALL_PYTHON = xtrue; then
231     AC_CHECK_PROG([HAVE_PYTHON],python,yes,no)
232     if test $HAVE_PYTHON = "no"; then
233         AC_MSG_ERROR([*** python not found, aborting])
234     fi
235     AC_PYTHON_MOD([setuptools])
236     AC_CONFIG_FILES([
237         examples/math_client.py
238         src/python/Makefile
239     ])
240 fi
241
242 if test "x$OSRF_INSTALL_CORE" = "xtrue"; then
243         #--------------------------------
244         # Check for dependencies.
245         #--------------------------------
246
247         #APACHE PREFORK DEV TEST
248         AC_MSG_CHECKING([APXS])
249         if test -f "${APXS2}"; then
250         AC_MSG_RESULT([yes])
251         else
252         AC_MSG_ERROR([*** apxs not found, aborting])
253         fi  
254
255         #-----------------------------
256         # Checks for libraries.
257         #-----------------------------
258
259         AC_SEARCH_LIBS([dlerror], [dl], [],AC_MSG_ERROR([***OpenSRF requires a library (typically libdl) that provides dlerror()]))
260         AC_CHECK_LIB([ncurses], [initscr], [], AC_MSG_ERROR(***OpenSRF requires ncurses development headers))
261         AC_CHECK_LIB([readline], [readline], [], AC_MSG_ERROR(***OpenSRF requires readline development headers))
262         AC_CHECK_LIB([xml2], [xmlAddID], [], AC_MSG_ERROR(***OpenSRF requires xml2 development headers))
263         # Check for libmemcached and set flags accordingly
264         PKG_CHECK_MODULES(memcached, libmemcached >= 0.8.0)
265         AC_SUBST(memcached_CFLAGS)
266         AC_SUBST(memcached_LIBS)
267
268         #-----------------------------
269         # Checks for header files.
270         #-----------------------------
271
272         AC_HEADER_STDC
273         AC_HEADER_SYS_WAIT
274         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])
275
276         #------------------------------------------------------------------
277         # Checks for typedefs, structures, and compiler characteristics.
278         #------------------------------------------------------------------
279
280         AC_C_CONST
281         AC_C_INLINE
282         AC_TYPE_PID_T
283         AC_TYPE_SIZE_T
284         AC_HEADER_TIME
285         AC_STRUCT_TM
286
287         #----------------------------------
288         # Checks for library functions.
289         #----------------------------------
290
291         AC_FUNC_FORK
292         AC_FUNC_MALLOC
293         AC_FUNC_SELECT_ARGTYPES
294         AC_TYPE_SIGNAL
295         AC_FUNC_STRFTIME
296         AC_FUNC_STRTOD
297         AC_FUNC_VPRINTF
298         AC_CHECK_FUNCS([bzero dup2 gethostbyname gethostname gettimeofday malloc_stats memset select socket strcasecmp strchr strdup strerror strncasecmp strndup strrchr strtol])
299
300         #------------------------------------
301         # Configuration and output
302         #------------------------------------
303
304         AC_CONFIG_FILES([doc/dokuwiki-doc-stubber.pl
305                          examples/math_xul_client/Makefile
306                          examples/math_bench.pl
307                          examples/multisession-test.pl
308                          src/c-apps/Makefile
309                          src/gateway/Makefile
310                          src/jserver/Makefile
311                          src/libopensrf/Makefile
312                          src/perl/Makefile
313                          src/ports/strn_compat/Makefile
314                          src/router/Makefile
315                          src/srfsh/Makefile
316                          bin/opensrf-perl.pl
317                          bin/osrf_config
318                          bin/osrf_ctl.sh])
319 fi
320
321 AC_OUTPUT
322
323 AC_MSG_RESULT([])
324 AC_MSG_RESULT([--------------------- Configuration options:  -----------------------])
325
326 if test "$OSRF_INSTALL_JAVA" = "true" ; then
327         AC_MSG_RESULT([OSRF install Java support?       yes])
328         AC_MSG_RESULT([Java support files               $OSRF_JAVA_DEPSDIR])
329 else
330         AC_MSG_RESULT([OSRF install Java support?       no])
331 fi
332
333 if test "$OSRF_INSTALL_PYTHON" = "true" ; then
334         AC_MSG_RESULT([OSRF install Python support?     yes])
335 else
336         AC_MSG_RESULT([OSRF install Python support?     no])
337 fi
338
339 if test "$OSRF_INSTALL_CHOPCHOP" = "true" ; then
340         AC_MSG_RESULT([OSRF install chopchop?           yes])
341 else
342         AC_MSG_RESULT([OSRF install chopchop?           no])
343 fi
344
345         AC_MSG_RESULT(Installation directory prefix:   ${prefix})
346         AC_MSG_RESULT(Temporary directory:             ${TMP})
347         AC_MSG_RESULT(APXS2 location:                  ${APXS2})
348         AC_MSG_RESULT(Apache headers location:         ${APACHE2_HEADERS})
349         AC_MSG_RESULT(APR headers location:            ${APR_HEADERS})
350         AC_MSG_RESULT(libxml2 headers location:        ${LIBXML2_HEADERS})
351
352 AC_MSG_RESULT([----------------------------------------------------------------------])