source: trunk/indexers/packages/unac/configure.ac@ 13670

Last change on this file since 13670 was 13670, checked in by kjdon, 17 years ago

unac package needed for accent folding in mgpp, and possibly for mg in the future

  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 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
23AC_CONFIG_HEADER(config.h)
24
25AC_PROG_MAKE_SET
26
27dnl
28dnl Unicode version used by unac, as published at http://www.unicode.org/Public/
29dnl
30UNICODE_VERSION=3.2.0
31AC_SUBST(UNICODE_VERSION)
32
33AC_PROG_CC
34AC_AIX
35AC_COMPILE_WARNINGS
36
37AC_PROG_LIBTOOL
38
39AC_PATH_PROG(PERL, perl, /usr/bin/perl)
40AC_PATH_PROG(SH, sh, /bin/sh)
41
42AM_MAINTAINER_MODE
43
44AM_ICONV
45
46#AC_CHECK_FUNCS(iconv_open,,AC_MSG_ERROR([
47#iconv_open not found try to install replacement from
48#http://www.gnu.org/software/libiconv/
49#ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.8.tar.gz]))
50
51AC_CHECK_FUNCS(vsnprintf)
52
53AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.