source: main/trunk/gs2-core/common-src/configure.ac@ 21677

Last change on this file since 21677 was 21626, checked in by mdewsnip, 14 years ago

Changed the SQLite configure command so the --bindir argument is passed through to it correctly.

File size: 3.0 KB
Line 
1###########################################################################
2#
3# configure -- Configure script for common-src
4#
5# A component of the Greenstone digital library software
6# from the New Zealand Digital Library Project at the
7# University of Waikato, New Zealand.
8#
9# Copyright (C) 1999-2010 The New Zealand Digital Library Project
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25###########################################################################
26
27
28AC_INIT([greenstone2-common-src], [2.84], [[email protected]])
29AC_CONFIG_AUX_DIR([.])
30AC_CONFIG_HEADERS([config.h])
31AM_INIT_AUTOMAKE([-Wall -Werror foreign no-define])
32
33# This package requires C++ compilation and library creation
34AC_PROG_CXX
35AC_PROG_INSTALL
36AC_PROG_RANLIB
37
38# Check for 64-bit machines
39AC_CANONICAL_HOST
40AC_MSG_CHECKING(if architecture is 64-bit)
41arch_64bit=no
42case "$host_cpu" in
43 x86_64) arch_64bit=yes ;;
44esac
45if test "$arch_64bit" = yes; then
46 AC_MSG_RESULT(yes)
47 if test -z "$COMPAT32BITFLAGS" ; then
48 COMPAT32BITFLAGS="-m32"
49 fi
50else
51 AC_MSG_RESULT(no)
52fi
53AC_SUBST(COMPAT32BITFLAGS)
54
55# Option: Lucene support (enabled by default)
56AC_ARG_ENABLE([lucene], [AS_HELP_STRING([--disable-lucene], [Disable Lucene support])], [], [enable_lucene=yes])
57if test "x$enable_lucene" != xno; then
58 AC_DEFINE(ENABLE_LUCENE, 1, [Lucene support])
59
60 # Unpack Expat (if it hasn't already been done)
61 if test ! -d "packages/expat/expat-1.95.8"; then
62 cd packages/expat
63 gzip -dc expat-1.95.8.tar.gz | tar -xf -
64 cd ../..
65 fi
66
67 # Configure Expat manually
68 cd packages/expat/expat-1.95.8
69 ./configure --prefix=`pwd`/..
70 cd ../../..
71fi
72AM_CONDITIONAL(ENABLE_LUCENE, test "x$enable_lucene" != xno)
73
74# Option: SQLite support (enabled by default)
75AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite], [Disable SQLite support])], [], [enable_sqlite=yes])
76if test "x$enable_sqlite" != xno; then
77 AC_DEFINE(USE_SQLITE, 1, [SQLite support])
78
79 # Unpack SQLite (if it hasn't already been done)
80 if test ! -d "packages/sqlite/sqlite-amalgamation-3.5.9"; then
81 cd packages/sqlite
82 gzip -dc sqlite-amalgamation-3.5.9.tar.gz | tar -xf -
83 cd ../..
84 fi
85
86 # Configure SQLite manually
87 cd packages/sqlite/sqlite-amalgamation-3.5.9
88 ./configure --prefix=`pwd`/.. --bindir="$bindir"
89 cd ../../..
90fi
91AM_CONDITIONAL(USE_SQLITE, test "x$enable_sqlite" != xno)
92
93# Generate the Makefiles for this package
94AC_OUTPUT(Makefile src/lib/Makefile)
Note: See TracBrowser for help on using the repository browser.