Changeset 21468


Ignore:
Timestamp:
2010-01-15T14:22:51+13:00 (14 years ago)
Author:
mdewsnip
Message:

First attempt at an autoconf configure script for top-level.

Location:
main/trunk/gs2-core
Files:
10 added
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gs2-core/configure.ac

    r21457 r21468  
     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, USE_SQLITE=0)
     57AC_DEFINE_UNQUOTED([USE_SQLITE], $USE_SQLITE, [SQLite support])
     58AM_CONDITIONAL(USE_SQLITE, test "$USE_SQLITE" = 1)
     59
     60# Generate the Makefiles for this package
     61AC_OUTPUT(Makefile)
Note: See TracChangeset for help on using the changeset viewer.