forked from hunspell/hunspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
121 lines (107 loc) · 3.38 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([hunspell],[1.6.2],[https://github.com/hunspell/hunspell/issues],,[https://hunspell.github.io])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])
AC_CANONICAL_HOST
AC_USE_SYSTEM_EXTENSIONS
AC_CONFIG_MACRO_DIRS([m4])
AM_INIT_AUTOMAKE
# the folowing 4 lines are used for pkg-check's .pc.in file
HUNSPELL_VERSION_MAJOR=`echo $VERSION | cut -d"." -f1`
HUNSPELL_VERSION_MINOR=`echo $VERSION | cut -d"." -f2`
AC_SUBST(HUNSPELL_VERSION_MAJOR)
AC_SUBST(HUNSPELL_VERSION_MINOR)
AX_CODE_COVERAGE
AS_IF([test x$enable_code_coverage = xyes],
[: ${CXXFLAGS=""}; : ${CFLAGS=""}])
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
LT_INIT
AC_PROG_AWK
# Checks for libraries.
AM_ICONV
BOOST_REQUIRE
BOOST_LOCALE
AC_REQUIRE_AUX_FILE([tap-driver.sh])
# Checks for header files.
AC_CHECK_HEADERS([fcntl.h libintl.h locale.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
gl_VISIBILITY
# Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_HEADER_STDC
AC_CHECK_FUNCS([memchr setlocale strchr strstr])
dnl internationalization macros
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_REQUIRE_VERSION(0.17)
AC_ARG_WITH(warnings,[ --with-warnings compile with warning messages], [
AC_DEFINE(HUNSPELL_WARNING_ON,1,"Define if you need warning messages")
])
CURSESLIB=""
AC_ARG_WITH(
[ui],
[AS_HELP_STRING([--with-ui],[support Curses user interface])],
[],
[with_ui=no]
)
AS_IF(
[test "x$with_ui" != xno],
[AC_CHECK_LIB(ncursesw,tparm,CURSESLIB=-lncursesw,
AC_CHECK_LIB(curses,tparm,CURSESLIB=-lcurses,
AC_CHECK_LIB(ncurses,tparm,CURSESLIB=-lncurses)))
if test "$CURSESLIB" != "" ; then
echo Compiling with curses user interface.
AC_DEFINE(HAVE_CURSES_H,1,"Define if you have the <curses.h> header")
if test "$CURSESLIB" != "-lncursesw" ; then
echo "No Unicode support on interactive console. (Install Ncursesw library.)"
else
AC_DEFINE(HAVE_NCURSESW_H,1,"Define if you have the <ncursesw/curses.h> header")
fi
AC_DEFINE(HUNSPELL_WARNING_ON,1,"Define if you need warning messages")
fi]
)
AC_SUBST(CURSESLIB)
AC_ARG_WITH(
[readline],
[AS_HELP_STRING([--with-readline],[support fancy command input editing])],
[],
[with_readline=no]
)
rl=n
AS_IF([test "x$with_readline" != xno],
[AC_CHECK_LIB(curses,tparm,TERMLIB=-lncurses,
AC_CHECK_LIB(termcap,tgetent,TERMLIB=-ltermcap))
LDSAVE=$LDFLAGS
LDFLAGS="$LDFLAGS $TERMLIB"
AC_CHECK_LIB(readline,readline,
[AC_CHECK_HEADER(readline/readline.h,
READLINELIB="-lreadline $TERMLIB";rl=y)],
READLINELIB="")
if test "$rl" = "y" ; then
echo Using the readline library.
AC_DEFINE(HAVE_READLINE,1,"Define if you have fancy command input editing with Readline")
fi
LDFLAGS=$LDSAVE]
)
AC_SUBST(READLINELIB)
AC_CONFIG_FILES([Makefile
hunspell.pc
docs/Makefile
docs/hu/Makefile
po/Makefile.in
src/Makefile
src/hunspell/Makefile
src/hunspell/hunvisapi.h
src/parsers/Makefile
src/tools/Makefile
src/hunspell2/Makefile
tests/Makefile
tests/suggestiontest/Makefile
tests/v1cmdline/Makefile
tests/hun2/Makefile])
AC_OUTPUT