aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2010-03-06 16:32:49 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2010-03-06 16:32:49 +0200
commit3e26e4fdb0e87eb89055c150d5089b5f2b7f10e6 (patch)
tree8639552edda55ccbf8edb684647ff3e779b75882
parent1c2f2ebfe42aee715d96768bd15ea0e6f949a444 (diff)
downloadgamma-3e26e4fdb0e87eb89055c150d5089b5f2b7f10e6.tar.gz
gamma-3e26e4fdb0e87eb89055c150d5089b5f2b7f10e6.tar.bz2
Update copyright statements.
Remove gettext files, which resurrected mystically after transition to Git.
-rw-r--r--Makefile.am19
-rw-r--r--NEWS2
-rw-r--r--configure.ac16
-rw-r--r--examples/Makefile.am16
-rw-r--r--examples/README2
-rw-r--r--scripts/Makefile.am21
-rwxr-xr-xscripts/guile-doc-snarf4
-rw-r--r--scripts/guile-doc-snarf.awk2
-rw-r--r--src/Makefile.am17
-rw-r--r--src/app.h18
-rw-r--r--src/gettext.c136
-rw-r--r--src/gettext.h69
-rw-r--r--src/gettext.sci38
-rw-r--r--src/gettext.scm29
-rw-r--r--src/gsql_conn.c18
-rw-r--r--src/gsql_lib.c18
-rw-r--r--src/guile-sql.h18
-rw-r--r--src/mysql.c18
-rw-r--r--src/pgsql.c18
-rw-r--r--src/sql.sci18
20 files changed, 126 insertions, 371 deletions
diff --git a/Makefile.am b/Makefile.am
index fc6a79b..aba7c27 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,13 +1,18 @@
1# This file is part of guile-sql. 1# This file is part of Gamma.
2# Copyright (C) 2002, 2007, 2010 Sergey Poznyakoff 2# Copyright (C) 2002, 2007, 2010 Sergey Poznyakoff
3# 3#
4# This file is free software; as a special exception the author gives 4# Gamma is free software; you can redistribute it and/or modify
5# unlimited permission to copy and/or distribute it, with or without 5# it under the terms of the GNU General Public License as published by
6# modifications, as long as this notice is preserved. 6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
7# 8#
8# This program is distributed in the hope that it will be useful, but 9# Gamma is distributed in the hope that it will be useful,
9# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the 10# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 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 Gamma. If not, see <http://www.gnu.org/licenses/>.
11 16
12ACLOCAL_AMFLAGS = -I m4 -I am 17ACLOCAL_AMFLAGS = -I m4 -I am
13 18
diff --git a/NEWS b/NEWS
index 620cbc5..cbdc3f3 100644
--- a/NEWS
+++ b/NEWS
@@ -28,7 +28,7 @@ PostgreSQL.
28========================================================================= 28=========================================================================
29Copyright information: 29Copyright information:
30 30
31Copyright (C) 2004, 2007 Sergey Poznyakoff 31Copyright (C) 2004, 2007, 2010 Sergey Poznyakoff
32 32
33 Permission is granted to anyone to make or distribute verbatim copies 33 Permission is granted to anyone to make or distribute verbatim copies
34 of this document as received, in any medium, provided that the 34 of this document as received, in any medium, provided that the
diff --git a/configure.ac b/configure.ac
index 136b933..e34de72 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,20 +1,18 @@
1dnl This file is part of Gamma 1dnl This file is part of Gamma
2dnl Copyright (C) 2002, 2004, 2007, 2010 Sergey Poznyakoff 2dnl Copyright (C) 2002, 2004, 2007, 2010 Sergey Poznyakoff
3dnl 3dnl
4dnl This program is free software; you can redistribute it and/or modify it 4dnl Gamma is free software; you can redistribute it and/or modify
5dnl under the terms of the GNU General Public License as published by the 5dnl it under the terms of the GNU General Public License as published by
6dnl Free Software Foundation; either version 3 of the License, or (at your 6dnl the Free Software Foundation; either version 3, or (at your option)
7dnl option) any later version. 7dnl any later version.
8dnl 8dnl
9dnl This program is distributed in the hope that it will be useful, 9dnl Gamma is distributed in the hope that it will be useful,
10dnl but WITHOUT ANY WARRANTY; without even the implied warranty of 10dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12dnl GNU General Public License for more details. 12dnl GNU General Public License for more details.
13dnl 13dnl
14dnl You should have received a copy of the GNU General Public License along 14dnl You should have received a copy of the GNU General Public License
15dnl with this program. If not, see <http://www.gnu.org/licenses/>. */ 15dnl along with Gamma. If not, see <http://www.gnu.org/licenses/>.
16
17dnl Process this file with autoconf to produce a configure script.
18 16
19AC_PREREQ(2.59) 17AC_PREREQ(2.59)
20 18
diff --git a/examples/Makefile.am b/examples/Makefile.am
index ca2d904..dd33878 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1 +1,17 @@
1# This file is part of Gamma
2# Copyright (C) 2007, 2010 Sergey Poznyakoff
3#
4# Gamma 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 3, or (at your option)
7# any later version.
8#
9# Gamma 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 Gamma. If not, see <http://www.gnu.org/licenses/>.
16
1EXTRA_DIST = whoisd.scm README 17EXTRA_DIST = whoisd.scm README
diff --git a/examples/README b/examples/README
index a56a725..51e6370 100644
--- a/examples/README
+++ b/examples/README
@@ -1,4 +1,4 @@
1This directory contains examples of guile-sql usage. 1This directory contains examples of (gamma sql) usage.
2 2
3whoisd -- a simple whois daemon. 3whoisd -- a simple whois daemon.
4 4
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 850d661..291ff75 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -1,13 +1,18 @@
1# This file is part of guile-sql. 1# This file is part of Gamma.
2# Copyright (C) 2002, 2007, Sergey Poznyakoff 2# Copyright (C) 2002, 2007, 2010 Sergey Poznyakoff
3# 3#
4# This file is free software; as a special exception the author gives 4# Gamma is free software; you can redistribute it and/or modify
5# unlimited permission to copy and/or distribute it, with or without 5# it under the terms of the GNU General Public License as published by
6# modifications, as long as this notice is preserved. 6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
7# 8#
8# This program is distributed in the hope that it will be useful, but 9# Gamma is distributed in the hope that it will be useful,
9# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the 10# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 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 Gamma. If not, see <http://www.gnu.org/licenses/>.
11 16
12EXTRA_DIST = \ 17EXTRA_DIST = \
13 guile-doc-snarf\ 18 guile-doc-snarf\
diff --git a/scripts/guile-doc-snarf b/scripts/guile-doc-snarf
index 7ad40ba..6cc184f 100755
--- a/scripts/guile-doc-snarf
+++ b/scripts/guile-doc-snarf
@@ -1,11 +1,11 @@
1#! /bin/sh 1#! /bin/sh
2# Copyright (C) 2002 Sergey Poznyakoff 2# Copyright (C) 2002, 2010 Sergey Poznyakoff
3# 3#
4# This is a snarfer for guile version 1.6 4# This is a snarfer for guile version 1.6
5# 5#
6# This program is free software; you can redistribute it and/or modify 6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by 7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or 8# the Free Software Foundation; either version 3 of the License, or
9# (at your option) any later version. 9# (at your option) any later version.
10# 10#
11# This program is distributed in the hope that it will be useful, 11# This program is distributed in the hope that it will be useful,
diff --git a/scripts/guile-doc-snarf.awk b/scripts/guile-doc-snarf.awk
index 03c791f..2c8455e 100644
--- a/scripts/guile-doc-snarf.awk
+++ b/scripts/guile-doc-snarf.awk
@@ -1,4 +1,4 @@
1# Copyright (C) 2002 Sergey Poznyakoff 1# Copyright (C) 2002, 2010 Sergey Poznyakoff
2# 2#
3# This is a snarfer for guile version 1.6 3# This is a snarfer for guile version 1.6
4# 4#
diff --git a/src/Makefile.am b/src/Makefile.am
index 3f05164..46633c1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,13 +1,18 @@
1# This file is part of Gamma. 1# This file is part of Gamma.
2# Copyright (C) 2002, 2007, 2010 Sergey Poznyakoff 2# Copyright (C) 2002, 2007, 2010 Sergey Poznyakoff
3# 3#
4# This file is free software; as a special exception the author gives 4# Gamma is free software; you can redistribute it and/or modify
5# unlimited permission to copy and/or distribute it, with or without 5# it under the terms of the GNU General Public License as published by
6# modifications, as long as this notice is preserved. 6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
7# 8#
8# This program is distributed in the hope that it will be useful, but 9# Gamma is distributed in the hope that it will be useful,
9# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the 10# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 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 Gamma. If not, see <http://www.gnu.org/licenses/>.
11 16
12INCLUDES =-I$(top_builddir) -I$(srcdir) -I. @GUILE_INCLUDES@ @INCLUDEPATH@ 17INCLUDES =-I$(top_builddir) -I$(srcdir) -I. @GUILE_INCLUDES@ @INCLUDEPATH@
13 18
diff --git a/src/app.h b/src/app.h
index 6b205ee..e46ed2a 100644
--- a/src/app.h
+++ b/src/app.h
@@ -1,18 +1,18 @@
1/* This file is part of guile-sql. 1/* This file is part of Gamma.
2 Copyright (C) 2002 Sergey Poznyakoff 2 Copyright (C) 2002, 2010 Sergey Poznyakoff
3 3
4 This program is free software; you can redistribute it and/or modify it 4 Gamma is free software; you can redistribute it and/or modify
5 under the terms of the GNU General Public License as published by the 5 it under the terms of the GNU General Public License as published by
6 Free Software Foundation; either version 3 of the License, or (at your 6 the Free Software Foundation; either version 3, or (at your option)
7 option) any later version. 7 any later version.
8 8
9 This program is distributed in the hope that it will be useful, 9 Gamma is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11