source: main/trunk/gs2-core/configure.ac@ 21507

Last change on this file since 21507 was 21474, checked in by mdewsnip, 14 years ago

Changed the SQLite configure stuff so USE_SQLITE is only defined if it is enabled (and undefined if it is disabled). This is required because the C++ code just uses "#ifdef USE_SQLITE", and previously this was always defined.

File size: 2.0 KB
Line 
1###########################################################################
2#
3# configure -- Configure script for top-level
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], [2.84-svn], [[email protected]])
29AC_CONFIG_AUX_DIR([.])
30AM_CONFIG_HEADER([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: SQLite support
56AC_ARG_ENABLE(sqlite, [ --enable-sqlite Enable SQLite support], USE_SQLITE=1 && AC_DEFINE(USE_SQLITE, 1, [SQLite support]), USE_SQLITE=0)
57AM_CONDITIONAL(USE_SQLITE, test "$USE_SQLITE" = 1)
58
59# Generate the Makefiles for this package
60AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.