aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: ca2444f6cde34f28d140204e0c322606ea6a1d25 (plain)
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
# This file is part of Ellinika         -*- autoconf -*-
# Copyright (C) 2004, 2005 Sergey Poznyakoff
#
# Ellinika 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 2 of the License, or
# (at your option) any later version.
#
# Ellinika 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 Ellinika; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#

AC_PREREQ(2.59)

AC_REVISION($Revision$)
AC_INIT(ellinika, 1.0, gray@gnu.org)
AC_CONFIG_SRCDIR(cgi-bin/dict.cgi.in)
AC_CONFIG_AUX_DIR([scripts])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(no-exeext)

## * Checks for programs.

M4='`cd $(top_srcdir); pwd`/scripts/missing --run m4'
AC_SUBST(M4)

AM_GNU_GETTEXT(external, need-ngettext)
AM_GNU_GETTEXT_VERSION(0.14.1)

MU_CHECK_GUILE(,,
               [AC_MSG_ERROR([You need Guile 1.6 or better])])

RA_CHECK_LIB(mysqlclient, 
             mysql_real_connect, 
             [-lm],
             [],
 	     [AC_MSG_FAILURE([The required library libmysqlclient is not found or is unusable])],
             [/usr/local/lib/mysql /usr/lib/mysql])

LIBS="$LIBS $ra_cv_lib_mysqlclient"

## **************
## Directories
## **************

AC_SUBST(GUILE_BINDIR)
GUILE_BINDIR=`guile-config info bindir`

case `guile -c "(display (member \"$GUILE_SITE\" %load-path))(newline)"` in
\#f) GUILE_COMMENT=;;
*)   GUILE_COMMENT=";;" ;;
esac

AC_SUBST(GUILE_COMMENT)
AC_SUBST(GUILE_SITE)


CGIDIR='$(prefix)/cgi-bin'
AC_ARG_WITH(cgi-bin,
	AC_HELP_STRING([--with-cgi-bin=DIR],
	[install CGI programs in DIR [[PREFIX/cgi-bin]]]),
	[CGIDIR=$withval])
AC_SUBST(CGIDIR)

HTMLDIR='$(prefix)/ellinika'
AC_ARG_WITH(html-dir,
	AC_HELP_STRING([--with-html-dir=DIR],
	[install HTML pages in DIR [[PREFIX/ellinika]]]),
	[HTMLDIR=$withval])
AC_SUBST(HTMLDIR)

AC_SUBST(BASE_HREF)
AC_SUBST(TARGET_DIR)

dnl Check for Emacs site-lisp directory
AM_PATH_LISPDIR
if test "$EMACS" != "no"; then
	lisp_LISP='$(LISPSRC)'
fi
AC_SUBST(lisp_LISP)

AC_SUBST(AUTOGENERATED)
AUTOGENERATED=";;;; This file is generated automatically. Please do not edit."

AC_CONFIG_FILES(Makefile
                cgi-bin/Makefile
                elisp/Makefile
                data/Makefile
                scm/Makefile
                ellinika/Makefile
                xml/Makefile
                xml/pl/Makefile
                xml/ru/Makefile
                po/Makefile.in)

AC_OUTPUT

Return to:

Send suggestions and report system problems to the System administrator.