aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am3
-rw-r--r--am/guile.m4110
-rw-r--r--configure.ac11
-rw-r--r--data/db.struct4
-rw-r--r--data/pl/Makefile.am4
-rw-r--r--data/ru/Makefile.am4
-rw-r--r--scm/dictrans.scm4
-rw-r--r--scm/neatrans.scm2
-rw-r--r--scm/verbop.scm4
-rw-r--r--src/cgi-bin/conj.scm49
-rw-r--r--src/cgi-bin/dict.scm428
-rw-r--r--src/cgi-bin/nea.scm422
-rw-r--r--src/ellinika/cgi.scm425
-rw-r--r--src/ellinika/i18n.scm6
-rw-r--r--xml/ru/ellinika.xml3
-rw-r--r--xml/ru/rhmata.xml8
16 files changed, 90 insertions, 157 deletions
diff --git a/Makefile.am b/Makefile.am
index 521b3e0..7fac923 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -43,3 +43,4 @@ install-html:
43 sed 's,^/,_,;s,\\.\\./,__/,g' | \ 43 sed 's,^/,_,;s,\\.\\./,__/,g' | \
44 while read S T; do ln -sf $$S $$T; done; \ 44 (cd $(DESTDIR)$(HTMLDIR)/$$dir; \
45 while read S T; do ln -sf $$S $$T; done); \
45 fi; \ 46 fi; \
diff --git a/am/guile.m4 b/am/guile.m4
deleted file mode 100644
index c793a70..0000000
--- a/am/guile.m4
+++ /dev/null
@@ -1,110 +0,0 @@
1dnl This file is part of GNU mailutils.
2dnl Copyright (C) 2001,2004 Free Software Foundation, Inc.
3dnl
4dnl This program is free software; you can redistribute it and/or modify
5dnl it under the terms of the GNU General Public License as published by
6dnl the Free Software Foundation; either version 2 of the License, or
7dnl (at your option) any later version.
8dnl
9dnl This program is distributed in the hope that it will be useful,
10dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12dnl GNU General Public License for more details.
13dnl
14dnl You should have received a copy of the GNU General Public License
15dnl along with this program; if not, write to the Free Software
16dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17dnl
18
19dnl MU_RESULT_ACTIONS -- generate shell code for the result of a test
20dnl $1 -- CVAR -- cache variable to check
21dnl $2 -- NAME -- if not empty, used to generate a default value TRUE:
22dnl `AC_DEFINE(HAVE_NAME)'
23dnl $2 -- TRUE -- what to do if the CVAR is not `no'
24dnl $3 -- FALSE -- what to do otherwise; defaults to `:'
25dnl
26AC_DEFUN([MU_RESULT_ACTIONS], [
27[if test "$$1" != "" -a "$$1" != no; then
28 ]ifelse([$3], ,
29 [AC_DEFINE(HAVE_]translit($2, [a-z ./<>], [A-Z___])[,1,[FIXME])],
30 [$3])[
31else
32 ]ifelse([$4], , [:], [$4])[
33fi]])dnl
34
35AC_DEFUN([MU_CHECK_GUILE],
36[
37 if test "x$mu_cv_lib_guile" = x; then
38 cached=""
39 AC_PATH_PROG(GUILE_CONFIG, guile-config, no, $PATH)
40 if test $GUILE_CONFIG = no; then
41 mu_cv_lib_guile=no
42 else
43 GUILE_INCLUDES=`guile-config compile`
44 GUILE_LIBS=`guile-config link`
45 fi
46
47 if test $GUILE_CONFIG != no; then
48 AC_MSG_CHECKING(for guile version 1.6 or higher)
49 GUILE_VERSION=`($GUILE_CONFIG --version 2>&1; echo '')|sed -n 's/guile-config - Guile version \([[0-9]][[0-9]]*\)\.\([[0-9]][[0-9]]*\).*/\1\2/p'`
50 case "x$GUILE_VERSION" in
51 x[[0-9]]*)
52 if test $GUILE_VERSION -lt 16; then
53 AC_MSG_RESULT(Nope. Version number too low.)
54 mu_cv_lib_guile=no
55 else
56 AC_DEFINE_UNQUOTED(GUILE_VERSION, $GUILE_VERSION,
57 [Guile version number: MAX*10 + MIN])
58 AC_MSG_RESULT(OK)
59 save_LIBS=$LIBS
60 save_CFLAGS=$CFLAGS
61 LIBS="$LIBS $GUILE_LIBS"
62 CFLAGS="$CFLAGS $GUILE_INCLUDES"
63 AC_TRY_LINK([#include <libguile.h>],
64 ifelse([$1], , scm_shell(0, NULL);, [$1]),
65 [mu_cv_lib_guile=yes],
66 [mu_cv_lib_guile=no])
67 LIBS=$save_LIBS
68 CFLAGS=$save_CFLAGS
69 fi ;;
70 *) AC_MSG_RESULT(Nope. Unknown version number)
71 mu_cv_lib_guile=no;;
72 esac
73 fi
74 else
75 cached=" (cached) "
76 GUILE_INCLUDES=`$GUILE_CONFIG compile`
77 GUILE_LIBS=`$GUILE_CONFIG link`
78 fi
79 AC_MSG_CHECKING(whether to build guile support)
80 MU_RESULT_ACTIONS([mu_cv_lib_guile],[LIBGUILE],[$2],[$3])
81 AC_MSG_RESULT(${cached}$mu_cv_lib_guile)
82
83 if test $mu_cv_lib_guile = yes; then
84 AC_ARG_WITH([guiledir],
85 AC_HELP_STRING([--with-guiledir=DIR],
86 [Specify the directory to install guile modules to]),
87 [case $withval in
88 /*) GUILE_SITE=$withval;;
89 yes) GUILE_SITE=`$GUILE_CONFIG info pkgdatadir`/site;;
90 *) AC_MSG_ERROR([Argument to --with-guiledir must be an absolute directory name]);;
91 esac],
92 [GUILE_SITE=`$GUILE_CONFIG info pkgdatadir`/site
93 pfx=$prefix
94 test "x$pfx" = xNONE && pfx=$ac_default_prefix
95 case $GUILE_SITE in
96 $pfx/*) ;; # OK
97 *) AC_MSG_WARN([guile site directory "$GUILE_SITE" lies outside your current prefix ($pfx).])
98 GUILE_SITE='$(datadir)/guile/site'
99 AC_MSG_WARN([Falling back to ${GUILE_SITE} instead. Use --with-guiledir to force using site directory.])
100 ;;
101 esac])
102 fi
103
104 AC_SUBST(GUILE_SITE)
105 AC_SUBST(GUILE_INCLUDES)
106 AC_SUBST(GUILE_LIBS)
107])
108
109
110
diff --git a/configure.ac b/configure.ac
index e545dfa..302f2df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,3 +19,3 @@ AC_PREREQ(2.61)
19 19
20AC_REVISION(2015-01-06 14:33:57 gray) 20AC_REVISION(2015-01-07 14:56:15 gray)
21AC_INIT(ellinika, 1.99.99, [gray+ellinika@gnu.org.ua]) 21AC_INIT(ellinika, 1.99.99, [gray+ellinika@gnu.org.ua])
@@ -60,3 +60,12 @@ LIBS="$LIBS $ra_cv_lib_mysqlclient"
60AC_SUBST(GUILE_BINDIR) 60AC_SUBST(GUILE_BINDIR)
61
61GUILE_BINDIR=`guile-config info bindir` 62GUILE_BINDIR=`guile-config info bindir`
63if test -z "$GUILE_BINDIR"; then
64 GUILE_BINDIR=`guile-config info prefix`
65 if test -n "$GUILE_BINDIR"; then
66 GUILE_BINDIR="$GUILE_BINDIR/bin"
67 else
68 AC_MSG_ERROR([Cannot determine guile bin directory])
69 fi
70fi
62 71
diff --git a/data/db.struct b/data/db.struct
index 1b2f160..61e3d25 100644
--- a/data/db.struct
+++ b/data/db.struct
@@ -1,3 +1,3 @@
1-- This file is part of Ellinika 1-- This file is part of Ellinika
2-- Copyright (C) 2004, 2005, 2007 Sergey Poznyakoff 2-- Copyright (C) 2004, 2005, 2007, 2015 Sergey Poznyakoff
3-- 3--
@@ -162,3 +162,3 @@ CREATE TABLE newsart(
162 162
163source dbverb.struct; 163source ./dbverb.struct;
164 164
diff --git a/data/pl/Makefile.am b/data/pl/Makefile.am
index 8707cf2..0965f9b 100644
--- a/data/pl/Makefile.am
+++ b/data/pl/Makefile.am
@@ -1,3 +1,3 @@
1# This file is part of Ellinika project. 1# This file is part of Ellinika project.
2# Copyright (C) 2004, 2007 Sergey Poznyakoff 2# Copyright (C) 2004, 2007, 2015 Sergey Poznyakoff
3# 3#
@@ -21,3 +21,3 @@ BASEXML=\
21dict: 21dict:
22 $(top_builddir)/scm/dictrans $(BASEXML) 22 $(AM_V_GEN)LC_ALL=en_US.UTF-8 $(top_builddir)/scm/dictrans $(BASEXML)
23 23
diff --git a/data/ru/Makefile.am b/data/ru/Makefile.am
index 18d1441..b8eb7c7 100644
--- a/data/ru/Makefile.am
+++ b/data/ru/Makefile.am
@@ -1,3 +1,3 @@
1# This file is part of Ellinika project. 1# This file is part of Ellinika project.
2# Copyright (C) 2004, 2007 Sergey Poznyakoff 2# Copyright (C) 2004, 2007, 2015 Sergey Poznyakoff
3# 3#
@@ -50,3 +50,3 @@ EXTRA_DIST=\
50dict: 50dict:
51 $(top_builddir)/scm/dictrans $(BASEXML) 51 $(AM_V_GEN)LC_ALL=en_US.UTF-8 $(top_builddir)/scm/dictrans $(BASEXML)
52 52
diff --git a/scm/dictrans.scm b/scm/dictrans.scm
index 2148929..9f1cfd5 100644
--- a/scm/dictrans.scm
+++ b/scm/dictrans.scm
@@ -4,3 +4,3 @@
4;;;; This file is part of Ellinika 4;;;; This file is part of Ellinika
5;;;; Copyright (C) 2004, 2005, 2007, 2010 Sergey Poznyakoff 5;;;; Copyright (C) 2004, 2005, 2007, 2010, 2015 Sergey Poznyakoff
6;;;; 6;;;;
@@ -95,2 +95,4 @@
95 95
96(setlocale LC_ALL "")
97
96(define compile-only #f) 98(define compile-only #f)
diff --git a/scm/neatrans.scm b/scm/neatrans.scm
index 333453f..4f0fea3 100644
--- a/scm/neatrans.scm
+++ b/scm/neatrans.scm
@@ -42,2 +42,4 @@
42 42
43(setlocale LC_ALL "")
44
43(define compile-only #f) 45(define compile-only #f)
diff --git a/scm/verbop.scm b/scm/verbop.scm
index 0ad0f90..b500213 100644
--- a/scm/verbop.scm
+++ b/scm/verbop.scm
@@ -6,3 +6,3 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (command-line))" "$@"
6;;;; This file is part of Ellinika 6;;;; This file is part of Ellinika
7;;;; Copyright (C) 2011 Sergey Poznyakoff 7;;;; Copyright (C) 2011, 2015 Sergey Poznyakoff
8;;;; 8;;;;
@@ -33,2 +33,4 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (command-line))" "$@"
33 33
34(setlocale LC_ALL "")
35
34(define cleanup-option #f) 36(define cleanup-option #f)
diff --git a/src/cgi-bin/conj.scm4 b/src/cgi-bin/conj.scm4
index 83fb846..6a49c62 100644
--- a/src/cgi-bin/conj.scm4
+++ b/src/cgi-bin/conj.scm4
@@ -1,3 +1,3 @@
1;;;; Greek Dictionary Web Engine 1;;;; Greek Dictionary Web Engine
2;;;; Copyright (C) 2004, 2005, 2006, 2007, 2010, 2011 Sergey Poznyakoff 2;;;; Copyright (C) 2004, 2005, 2006, 2007, 2010, 2011, 2015 Sergey Poznyakoff
3;;;; 3;;;;
@@ -20,2 +20,3 @@
20 20
21(setlocale LC_ALL "")
21(use-modules ifelse(IFACE,[CGI],(www cgi),(guile-user)) 22(use-modules ifelse(IFACE,[CGI],(www cgi),(guile-user))
@@ -63,3 +64,3 @@ ifelse(IF