diff options
-rw-r--r-- | gettext-tools/lib/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-tools/lib/gen-lbrkprop.c | 22 | ||||
-rw-r--r-- | gettext-tools/lib/lbrkprop.h | 16 |
3 files changed, 42 insertions, 1 deletions
diff --git a/gettext-tools/lib/ChangeLog b/gettext-tools/lib/ChangeLog index 3e09f21..6717c45 100644 --- a/gettext-tools/lib/ChangeLog +++ b/gettext-tools/lib/ChangeLog @@ -1,3 +1,8 @@ +2004-10-07 Bruno Haible <bruno@clisp.org> + + * gen-lbrkprop.c (output_tables): Emit a GPL copyright notice. + * lbrkprop.h: Update. + 2004-09-11 Bruno Haible <bruno@clisp.org> * allocsa.valgrind: New file. diff --git a/gettext-tools/lib/gen-lbrkprop.c b/gettext-tools/lib/gen-lbrkprop.c index fe9341f..197cfb3 100644 --- a/gettext-tools/lib/gen-lbrkprop.c +++ b/gettext-tools/lib/gen-lbrkprop.c @@ -1,6 +1,6 @@ /* Generate a Unicode conforming Line Break Properties tables from a UnicodeData file. - Written by Bruno Haible <bruno@clisp.org>, 2000-2002. + Written by Bruno Haible <bruno@clisp.org>, 2000-2004. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -1352,6 +1352,26 @@ output_tables (const char *filename, const char *version) version); fprintf (stream, "\n"); + /* Put a GPL header on it. The gnulib module is under LGPL (although it + still carries the GPL header), and it's gnulib-tool which replaces the + GPL header with an LGPL header. */ + fprintf (stream, "/* Copyright (C) 2000-2004 Free Software Foundation, Inc.\n"); + fprintf (stream, "\n"); + fprintf (stream, "This program is free software; you can redistribute it and/or modify\n"); + fprintf (stream, "it under the terms of the GNU General Public License as published by\n"); + fprintf (stream, "the Free Software Foundation; either version 2, or (at your option)\n"); + fprintf (stream, "any later version.\n"); + fprintf (stream, "\n"); + fprintf (stream, "This program is distributed in the hope that it will be useful,\n"); + fprintf (stream, "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"); + fprintf (stream, "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"); + fprintf (stream, "GNU General Public License for more details.\n"); + fprintf (stream, "\n"); + fprintf (stream, "You should have received a copy of the GNU General Public License\n"); + fprintf (stream, "along with this program; if not, write to the Free Software\n"); + fprintf (stream, "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */\n"); + fprintf (stream, "\n"); + output_lbp (stream); if (ferror (stream) || fclose (stream)) diff --git a/gettext-tools/lib/lbrkprop.h b/gettext-tools/lib/lbrkprop.h index 7f029a5..90f32da 100644 --- a/gettext-tools/lib/lbrkprop.h +++ b/gettext-tools/lib/lbrkprop.h @@ -1,6 +1,22 @@ /* Line breaking properties of Unicode characters. */ /* Generated automatically by gen-lbrkprop for Unicode 3.1.0. */ +/* Copyright (C) 2000-2004 Free Software Foundation, Inc. + +This program 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, or (at your option) +any later version. + +This program 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 this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + #define lbrkprop_header_0 16 #define lbrkprop_header_1 15 #define lbrkprop_header_2 7 |