]> git.evergreen-ils.org Git - OpenSRF.git/blob - configure.ac
Typo in configure.ac: 'framweork'
[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
25 # Get our version number from one file
26 m4_include([version.m4])
27
28 # Version number gets turned into @PACKAGE_VERSION@
29 AC_INIT([OpenSRF],m4_defn([VERSION_NUMBER]),[open-ils-dev@list.georgialibraries.org])
30 AM_INIT_AUTOMAKE([OpenSRF], m4_defn([VERSION_NUMBER]))
31
32 AC_REVISION($Revision: 0.1 $)
33 AC_CONFIG_SRCDIR([configure.ac])
34 AC_PREFIX_DEFAULT([/opensrf])
35
36 # Enable $prefix to resolve to a reasonable value in substitutions in
37 # scripts if no explict value was passed in to configure
38 if test "$prefix" == "NONE"; then
39    prefix=$ac_default_prefix
40 fi
41
42 # Perl and Python scripts don't want ${prefix} if no value was specified
43 eval "eval CONF_DIR=$sysconfdir"
44 eval "eval PID_DIR=$localstatedir"
45 AC_SUBST([CONF_DIR])
46 AC_SUBST([PID_DIR])
47
48 AC_SUBST(prefix)
49 AC_SUBST(bindir)
50
51
52 AC_DEFUN([AC_PYTHON_MOD],[
53     if test -z $PYTHON;
54     then
55         PYTHON="python"
56     fi
57     AC_MSG_CHECKING($PYTHON_NAME module: $1)
58         $PYTHON -c "import $1" 2>/dev/null
59         if test $? -eq 0;
60         then
61                 AC_MSG_RESULT(yes)
62                 eval AS_TR_CPP(HAVE_PYMOD_$1)=yes
63         else
64                 AC_MSG_ERROR(failed to find required module $1)
65                 exit 1
66         fi
67 ])
68
69 #-------------------------------
70 # Installation options
71 #-------------------------------
72
73 # build and install the java libs?
74 AC_ARG_ENABLE([java],
75 [  --enable-java    enable building and installing the java libraries],
76 [case "${enableval}" in
77     yes) OSRF_INSTALL_JAVA=true ;;
78     no) OSRF_INSTALL_JAVA=false ;; 
79   *) AC_MSG_ERROR([please choose another value for --enable-java (supported values are yes or no)]) ;;
80 esac],
81 [OSRF_INSTALL_JAVA=false])
82
83 AM_CONDITIONAL([BUILDJAVA], [test x$OSRF_INSTALL_JAVA = xtrue])
84 AC_SUBST([OSRF_INSTALL_JAVA])
85
86 # install the javascript files?
87 AC_ARG_ENABLE([javascript],
88 [  --disable-javascript    disable installing JavaScript libraries],
89 [case "${enableval}" in
90     yes) OSRF_INSTALL_JAVASCRIPT=true ;;
91     no) OSRF_INSTALL_JAVASCRIPT=false ;; 
92   *) AC_MSG_ERROR([please choose another value for --disable-javascript (supported values are yes or no)]) ;;
93 esac],
94 [OSRF_INSTALL_JAVASCRIPT=true])
95
96 AM_CONDITIONAL([INSTALLJAVASCRIPT], [test x$OSRF_INSTALL_JAVASCRIPT = xtrue])
97 AC_SUBST([OSRF_INSTALL_JAVASCRIPT])
98
99 # install the OpenSRF core files?
100 AC_ARG_ENABLE([core],
101 [  --disable-core    disable installing core files],
102 [case "${enableval}" in
103     yes) OSRF_INSTALL_CORE=true ;;
104     no) OSRF_INSTALL_CORE=false ;; 
105   *) AC_MSG_ERROR([please choose another value for --disable-core (supported values are yes or no)]) ;;
106 esac],
107 [OSRF_INSTALL_CORE=true])
108
109 AM_CONDITIONAL([BUILDCORE], [test x$OSRF_INSTALL_CORE = xtrue])
110 AC_SUBST([OSRF_INSTALL_CORE])
111
112
113 # build and install the python modules
114 AC_ARG_ENABLE([python],
115 [  --enable-python  enable building and installing python modules],
116 [case "${enableval}" in
117   yes) OSRF_INSTALL_PYTHON=true ;;
118   no) OSRF_INSTALL_PYTHON=false ;;
119   *) AC_MSG_ERROR([please choose another value for --enable-python (supported values are yes or no)]) ;;
120 esac],
121 [OSRF_INSTALL_PYTHON=false])
122
123 AM_CONDITIONAL([BUILDPYTHON], [test x$OSRF_INSTALL_PYTHON = xtrue])
124 AC_SUBST([OSRF_INSTALL_PYTHON])
125
126 # enable debug?
127
128 AC_ARG_ENABLE(debug,
129 [  --enable-debug    Turn on debugging],
130 [case "${enableval}" in
131   yes) debug=true ;;
132   no)  debug=false ;;
133   *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
134 esac],[debug=false])
135 AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
136  
137 # path to the directory containing the java dependency jar files (included if java installs)
138 if test $OSRF_INSTALL_JAVA; then
139         AC_SUBST([OSRF_JAVA_DEPSDIR], [/opt/java])
140     AC_CONFIG_FILES([src/java/Makefile])
141 fi
142
143 #--------------------------------
144 # Checks for programs.
145 #--------------------------------
146
147 AC_PROG_LIBTOOL
148 AC_PROG_AWK
149 AC_PROG_CC
150 AC_PROG_INSTALL
151 AC_PROG_MAKE_SET
152
153 #------------------------------
154 # Set install path variables
155 #------------------------------
156 AC_ARG_WITH([tmp],
157 [  --with-tmp=path                  location for the temporary directory for OpenSRF (default is /tmp)],
158 [TMP=${withval}],
159 [TMP=/tmp])
160 AC_SUBST([TMP])
161
162 AC_ARG_WITH([apxs],
163 [  --with-apxs=path                 location of the apxs (Apache extension) tool (default is /usr/bin/apxs2)],
164 [APXS2=${withval}],
165 [APXS2=/usr/bin/apxs2])
166 if ! test -x "$APXS2"; then
167         for i in /usr/bin /usr/sbin /usr/local/apache/bin /usr/local/apache2/bin ; do
168                 for j in apxs apxs2 ; do
169                         if test -x "$i/$j"; then
170                                 APXS2="$i/$j"
171                                 break
172                         fi
173                 done
174         done
175 fi
176 AC_SUBST([APXS2])
177
178 AC_ARG_WITH([apache],
179 [  --with-apache=path               location of the Apache headers (default is /usr/include/apache2)],
180 [APACHE2_HEADERS=${withval}],
181 [APACHE2_HEADERS=/usr/include/apache2])
182 if ! test -d "$APACHE2_HEADERS"; then
183         for i in /usr/include/httpd ; do
184                 if test -d "$i"; then
185                         APACHE2_HEADERS="$i"
186                         break
187                 fi
188         done
189 fi
190 AC_SUBST([APACHE2_HEADERS])
191
192 AC_ARG_WITH([apr],
193 [  --with-apr=path                  location of the Apache Portable Runtime headers (default is /usr/include/apr-1.0/)],
194 [APR_HEADERS=${withval}],
195 [APR_HEADERS=/usr/include/apr-1.0])
196 if ! test -d "$APR_HEADERS"; then
197         for i in /usr/include/apr-1 ; do
198                 if test -d "$i"; then
199                         APR_HEADERS="$i"
200                         break
201                 fi
202         done
203 fi
204 AC_SUBST([APR_HEADERS])
205
206 AC_ARG_WITH([libxml],
207 [  --with-libxml=path               location of the libxml2 headers (default is /usr/include/libxml2/))],
208 [LIBXML2_HEADERS=${withval}],
209 [LIBXML2_HEADERS=/usr/include/libxml2/])
210 AC_SUBST([LIBXML2_HEADERS])
211
212 AC_ARG_WITH([includes],
213 [  --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)],
214 [EXTRA_USER_INCLUDES=${withval}])
215
216 AC_ARG_WITH([libraries],
217 [  --with-libraries=DIRECTORIES     a colon-separated list of directories to search for libraries (Example: --with-libraries=/lib:/usr/lib)],
218 [EXTRA_USER_LIBRARIES=${withval}])
219
220 # Change these lists to proper compiler/linker options
221
222 IFSBAK=${IFS}
223 IFS="${IFS}:"
224
225 for dir in $EXTRA_USER_INCLUDES; do
226         if test -d "$dir"; then
227           INCLUDES="$INCLUDES -I$dir"
228         else
229           AC_MSG_WARN([*** Include directory $dir does not exist.])
230         fi
231 done
232 AC_SUBST(INCLUDES)
233
234 for dir in $EXTRA_USER_LIBRARIES; do
235         if test -d "$dir"; then
236           LIBDIRS="$LIBDIRS -L$dir"
237         else
238           AC_MSG_WARN([*** Library directory $dir does not exist.])
239         fi
240 done
241 AC_SUBST(LIBDIRS)
242
243 IFS=${IFSBAK}
244
245 AC_CONFIG_FILES([Makefile
246         src/Makefile])
247
248 #PYTHON TESTS
249 if test x$OSRF_INSTALL_PYTHON = xtrue; then
250     AC_CHECK_PROG([HAVE_PYTHON],python,yes,no)
251     if test $HAVE_PYTHON = "no"; then
252         AC_MSG_ERROR([*** python not found, aborting])
253     fi
254     AC_PYTHON_MOD([setuptools])
255     AC_CONFIG_FILES([
256         examples/math_client.py
257         examples/simple_text.py
258         src/python/Makefile
259     ])
260 fi
261 # Check Unit test framework
262 PKG_CHECK_MODULES([CHECK], [check >= 0.9.0], [enable_tests=yes],
263                   [enable_tests=no])
264 AM_CONDITIONAL(CHECK_TESTS, test x$enable_tests = xyes)
265
266 if test "x$enable_tests" = "xno"; then
267   AC_MSG_WARN(Check unit testing framework not found.)
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     AM_PROG_CC_C_O
315
316         #----------------------------------
317         # Checks for library functions.
318         #----------------------------------
319
320         AC_FUNC_FORK
321         AC_FUNC_MALLOC
322         AC_FUNC_SELECT_ARGTYPES
323         AC_TYPE_SIGNAL
324         AC_FUNC_STRFTIME
325         AC_FUNC_STRTOD
326         AC_FUNC_VPRINTF
327         AC_CHECK_FUNCS([bzero dup2 gethostbyname gethostname gettimeofday malloc_stats memset select socket strcasecmp strchr strdup strerror strncasecmp strndup strrchr strtol])
328
329         #------------------------------------
330         # Configuration and output
331         #------------------------------------
332
333         AC_CONFIG_FILES([doc/dokuwiki-doc-stubber.pl
334                          examples/math_xul_client/Makefile
335                          examples/math_bench.pl
336                          examples/multisession-test.pl
337                          src/c-apps/Makefile
338                          src/gateway/Makefile
339                          src/libopensrf/Makefile
340                          src/perl/Makefile
341                          src/ports/strn_compat/Makefile
342                          src/python/opensrf.py
343                          src/router/Makefile
344                          src/srfsh/Makefile
345              tests/Makefile
346                          bin/opensrf-perl.pl
347                          bin/osrf_config
348                          bin/osrf_ctl.sh])
349 fi
350
351 AC_OUTPUT
352
353 AC_MSG_RESULT([])
354 AC_MSG_RESULT([--------------------- Configuration options:  -----------------------])
355
356 if test "$OSRF_INSTALL_JAVA" = "true" ; then
357         AC_MSG_RESULT([OSRF install Java support?       yes])
358         AC_MSG_RESULT([Java support files               $OSRF_JAVA_DEPSDIR])
359 else
360         AC_MSG_RESULT([OSRF install Java support?       no])
361 fi
362
363 if test "$OSRF_INSTALL_PYTHON" = "true" ; then
364         AC_MSG_RESULT([OSRF install Python support?     yes])
365 else
366         AC_MSG_RESULT([OSRF install Python support?     no])
367 fi
368
369         AC_MSG_RESULT(Installation directory prefix:   ${prefix})
370         AC_MSG_RESULT(Temporary directory:             ${TMP})
371         AC_MSG_RESULT(APXS2 location:                  ${APXS2})
372         AC_MSG_RESULT(Apache headers location:         ${APACHE2_HEADERS})
373         AC_MSG_RESULT(APR headers location:            ${APR_HEADERS})
374         AC_MSG_RESULT(libxml2 headers location:        ${LIBXML2_HEADERS})
375
376 AC_MSG_RESULT([----------------------------------------------------------------------])