source: main/trunk/greenstone2/common-src/indexers/packages/unac/configure.ac@ 25148

Last change on this file since 25148 was 25148, checked in by kjdon, 12 years ago

getting greenstone to work properly on 64 bit machines. COMPAT32BITFLAGS is no more. Don't need -m32 option. Instead, have ARCH_DEP_FLAGS, which gets -fPIC on 64 bit machines.

  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1#
2# Copyright (C) 2000, 2001, 2002 Loic Dachary <[email protected]>
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17#
18AC_INIT(config.h.in)
19VERSION=`cat .version`
20AC_SUBST(VERSION)
21AC_PREREQ(2.13)
22
23
24dnl get $target_cpu, $target_vendor, and $target_os
25dnl (as well as host_*)
26AC_CANONICAL_SYSTEM
27
28AC_CONFIG_HEADER(config.h)
29
30AC_PROG_MAKE_SET
31
32dnl
33dnl Unicode version used by unac, as published at http://www.unicode.org/Public/
34dnl
35UNICODE_VERSION=3.2.0
36AC_SUBST(UNICODE_VERSION)
37
38AC_PROG_CC
39AC_AIX
40AC_COMPILE_WARNINGS
41
42AC_PROG_LIBTOOL
43
44AC_PATH_PROG(PERL, perl, /usr/bin/perl)
45AC_PATH_PROG(SH, sh, /bin/sh)
46
47AM_MAINTAINER_MODE
48
49AM_ICONV
50
51#AC_CHECK_FUNCS(iconv_open,,AC_MSG_ERROR([
52#iconv_open not found try to install replacement from
53#http://www.gnu.org/software/libiconv/
54#ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.8.tar.gz]))
55
56AC_CHECK_FUNCS(vsnprintf)
57
58AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.