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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
## This file is a source for configure.ac. -*- autoconf -*-
## Run ./bootstrap to create it.
## Run ./bootstrap --help for a detailed description.
## A short reminder:
## 1. Comments starting with ## are removed from the output.
## 2. A construct <NAME> is replaced with the value of the variable NAME.
## 3. <NAME#TEXT> on a line alone (arbitrary leading characters allowed)
## is replaced with (multiline) expansion of NAME. The second and
## subsequent lines are prefixed with TEXT (or leading characters, if
## TEXT is empty).
## 4. Everything else is reproduced verbatim.
dnl <HEADING#>
dnl Process this file with -*- autoconf -*- to produce a configure script.
# This file is part of GNU Dico
# Copyright (C) 1998-2024 Sergey Poznyakoff
#
# GNU Dico is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Dico is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Dico. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.71)
AC_INIT([GNU dico], 2.12, [bug-dico@gnu.org])
AC_CONFIG_SRCDIR([dicod/main.c])
AC_CONFIG_HEADERS(include/prog/config.h include/lib/config.h)
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR(m4)
AM_INIT_AUTOMAKE([1.16.5 nostdinc gnits tar-ustar dist-bzip2 dist-xz std-options subdir-objects])
dnl Enable silent rules by default:
AM_SILENT_RULES([yes])
dnl Some variables
AC_SUBST(DICO_MODDIR,'$(libdir)/$(PACKAGE)')
dnl Checks for programs.
AC_PROG_CC
gl_EARLY
AC_PROG_CPP
AC_PROG_AWK
AC_PROG_YACC
AC_PROG_LEX([noyywrap])
LT_PREREQ(2.4)
LT_CONFIG_LTDL_DIR([libltdl])
LT_INIT([dlopen])
LTDL_INIT([nonrecursive])
dnl Checks for libraries.
AC_CHECK_LIB(socket, socket)
AC_CHECK_LIB(rt, nanosleep)
dnl Checks for header files.
AC_HEADER_DIRENT dnl not needed ?
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(fcntl.h limits.h strings.h sys/time.h \
sys/socket.h socket.h syslog.h unistd.h \
crypt.h readline/readline.h)
dnl Checks for typedefs, structures, and compiler characteristics.
gl_INIT
AC_C_CONST
AC_C_INLINE
AC_TYPE_PID_T
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_SYS_LARGEFILE
AC_CHECK_TYPE([socklen_t],,
AC_DEFINE(socklen_t, int, [Define to int if <sys/types.h> does not define]),
[
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SOCKET_H
# include <socket.h>
#endif
])
dnl Checks for library functions.
AC_CHECK_FUNCS(select socket strdup strerror strtol \
setegid setregid setresgid seteuid setreuid \
sysconf getdtablesize)
# Crypt
AC_CHECK_DECLS(crypt,,,[
#include <unistd.h>
#ifdef HAVE_CRYPT_H
# include <crypt.h>
#endif])
AH_BOTTOM([
#if !HAVE_DECL_CRYPT
char *crypt(const char *key, const char *salt);
#endif])
AC_CHECK_LIB(crypt, crypt)
# Gettext.
AM_ICONV
AM_GNU_GETTEXT([external], [need-formatstring-macros])
AM_GNU_GETTEXT_VERSION([0.19])
AC_CONFIG_LINKS(include/gettext.h:xdico/gnu/gettext.h)
LOG_FACILITY="LOG_DAEMON"
AC_ARG_VAR([LOG_FACILITY],
[Default syslog facility])
if test -n "$LOG_FACILITY"; then
logfacility=`echo $LOG_FACILITY | tr a-z A-Z`
case $logfacility in
USER|DAEMON|AUTH|AUTHPRIV|MAIL|CRON|LOCAL[[0-7]])
LOG_FACILITY=LOG_$logfacility;;
LOG_USER|LOG_DAEMON|LOG_AUTH|LOG_AUTHPRIV|LOG_MAIL|LOG_CRON|LOG_LOCAL[[0-7]])
LOG_FACILITY=$logfacility;;
*) AC_MSG_ERROR([Invalid value of LOG_FACILITY]);;
esac
fi
AC_DEFINE_UNQUOTED([LOG_FACILITY],$LOG_FACILITY,
[Default syslog facility.])
AC_ARG_VAR([DEFAULT_DICT_SERVER],
[Set the name of the default DICT server for dico utility])
if test -z "$DEFAULT_DICT_SERVER" ; then
DEFAULT_DICT_SERVER="gnu.org.ua"
fi
AC_ARG_VAR([DEFAULT_INCLUDE_DIR],
[Default preprocessor include directory])
if test -z "$DEFAULT_INCLUDE_DIR"; then
DEFAULT_INCLUDE_DIR='$(pkgdatadir)/include'
fi
AC_ARG_VAR([DEFAULT_VERSION_INCLUDE_DIR],
[Default version-specific include directory])
if test -z "$DEFAULT_VERSION_INCLUDE_DIR"; then
DEFAULT_VERSION_INCLUDE_DIR='$(pkgdatadir)/$(VERSION)/include'
fi
AC_ARG_VAR([DEFAULT_PIDFILE_NAME],
[Default name for the dicod pid file])
if test -z "$DEFAULT_PIDFILE_NAME"; then
DEFAULT_PIDFILE_NAME='$(localstatedir)/run/dicod.pid'
fi
AC_SUBST([DICO_PROG_CONFIG],['-I$(top_builddir)/include/prog'])
AC_SUBST([DICO_LIB_CONFIG],['-I$(top_builddir)/include/lib'])
AC_SUBST([DICO_PROG_INCLUDES],[dnl
'$(DICO_PROG_CONFIG)\
-I$(top_srcdir)/include\
-I$(top_builddir)/include\
-I$(top_srcdir)/xdico/gnu\
-I$(top_builddir)/xdico/gnu\
$(GRECS_INCLUDES)'])
AC_SUBST([DICO_MODULE_INCLUDES],[dnl
'-I$(srcdir)\
$(DICO_LIB_CONFIG)\
-I$(top_srcdir)/include\
-I$(top_builddir)/include\
$(GRECS_INCLUDES)'])
# Grecs configuration system
AC_SUBST([DEFAULT_PP_SETUP])
# Don't install pp-setup if user explicitly requested another preprocessor,
if test -z "$DEFAULT_PREPROCESSOR"; then
DEFAULT_PP_SETUP=pp-setup
fi
GRECS_SETUP(grecs, [shared tests getopt git2chg sockaddr-list])
# Don't install pp-setup if they disabled preprocessor.
# FIXME: use_ext_pp is an internal grecs variable.
if test "$use_ext_pp" == no; then
unset DEFAULT_PP_SETUP
fi
GRECS_HOST_PROJECT_INCLUDES='$(DICO_LIB_CONFIG) -I$(top_builddir)/include'
# Tcl/tk
AC_ARG_WITH([tk],
AS_HELP_STRING([--with-tk],
[build Tcl/Tk-based applications (GCIDER)]),
[
case "${withval}" in
yes) status_tk=yes ;;
no) status_tk=no;;
*) AC_MSG_ERROR([bad value ${withval} for --with-tk])
esac],[status_tk=yes])
if test $status_tk=yes; then
AC_PATH_PROG([WISH], wish)
if test -z "$WISH"; then
status_tk=no
fi
AM_CONDITIONAL([TK_WISH_COND],[test $status_tk = yes])
fi
#
AC_ARG_WITH(autologin-file,
AS_HELP_STRING([--with-autologin-file@<:@=NAME@:>@],
[Use the autologin file (default NAME is .dicologin)]),
[case $withval in
yes) DEFAULT_AUTOLOGIN_FILE=".dicologin";;
no) DEFAULT_AUTOLOGIN_FILE=;;
*) DEFAULT_AUTOLOGIN_FILE=$withval;;
esac],
[DEFAULT_AUTOLOGIN_FILE=".dicologin"])
if test -n "$DEFAULT_AUTOLOGIN_FILE" ; then
AC_DEFINE_UNQUOTED(DEFAULT_AUTOLOGIN_FILE, "$DEFAULT_AUTOLOGIN_FILE",
[Define to the name of a netrc-style autologin file])
else
AC_DEFINE_UNQUOTED(DEFAULT_AUTOLOGIN_FILE, NULL,
[Define to the name of a netrc-style autologin file])
fi
AC_ARG_WITH([readline],
AS_HELP_STRING([--without-readline],
[do not use readline]),
[
case "${withval}" in
yes) status_readline=yes ;;
no) status_readline=no ;;
*) AC_MSG_ERROR(bad value ${withval} for --without-readline) ;;
esac],[status_readline=yes])
# Test for GNU Readline
AC_SUBST(READLINE_LIBS)
if test "$status_readline" != "no"; then
dnl FIXME This should only link in the curses libraries if it's
dnl really needed!
dnl Check for Curses libs.
CURSES_LIBS=
for lib in ncurses curses termcap
do
AC_CHECK_LIB($lib, tputs, [CURSES_LIBS="-l$lib"; break])
done
saved_LIBS=$LIBS
LIBS="$LIBS $CURSES_LIBS"
AC_CHECK_LIB(readline, readline, mf_have_readline=yes)
LIBS=$saved_LIBS
if test "$mf_have_readline" = "yes"; then
AC_CHECK_HEADERS(readline/readline.h,
AC_DEFINE(WITH_READLINE,1,[Enable use of readline]))
READLINE_LIBS="-lreadline $CURSES_LIBS"
saved_LIBS=$LIBS
LIBS="$LIBS $READLINE_LIBS"
AC_CHECK_FUNCS(rl_completion_matches)
LIBS=$saved_LIBS
status_readline="yes"
else
if test "$status_readline" = "yes"; then
AC_MSG_WARN(readline requested but does not seem to be installed)
fi
status_readline="no"
fi
fi
AH_BOTTOM([
/* Some older versions of readline have completion_matches */
#ifndef HAVE_RL_COMPLETION_MATCHES
# define rl_completion_matches completion_matches
#endif])
# GNU SASL
status_gsasl=no
MU_CHECK_GSASL(0.2.5, [
AC_DEFINE(WITH_GSASL,1,[Define if GNU SASL is present])
status_gsasl=yes
AC_SUBST(LIBDICOSASL,'$(top_builddir)/xdico/libdicosasl.a')])
AM_CONDITIONAL([COND_LIBDICOSASL],[test "$status_gsasl" = yes])
<MODULES>
# Imprimatur
IMPRIMATUR_INIT
# Tests
DICO_TESTS(lib)
DICO_TESTS(dicod)
AC_CONFIG_COMMANDS([status],[
cat <<EOT
*******************************************************************
Dico configured with the following settings:
GSASL ........................... $status_gsasl
Readline ........................ $status_readline
Preprocessor .................... $dicopp
<STATUS_OUTPUT>
Default server .................. $defserver
Autologin file .................. $autologin_file
*******************************************************************
EOT
],
[status_gsasl=$status_gsasl
status_readline=$status_readline
if test $use_ext_pp = no; then
dicopp=no
else
dicopp="$DEFAULT_PREPROCESSOR"
fi
defserver="$DEFAULT_DICT_SERVER"
autologin_file="$DEFAULT_AUTOLOGIN_FILE"
<STATUS_DEFN>
])
AC_CONFIG_FILES([Makefile
include/Makefile
include/dico/Makefile
examples/Makefile
gint/Makefile
xdico/gnu/Makefile
xdico/Makefile
lib/Makefile
dicod/Makefile
modules/Makefile
dico/Makefile
scripts/Makefile
doc/Makefile
po/Makefile.in
app/python/dicod.conf])
AC_OUTPUT
|