summaryrefslogtreecommitdiffstats
path: root/gettext-tools/lib/gen-lbrkprop.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2004-10-07 12:53:31 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:11:56 +0200
commit8e90f64089cbf93460620adf9cf265f988547aac (patch)
treed9fd2ad452bd06d45d5bedb5840b7f588eb71024 /gettext-tools/lib/gen-lbrkprop.c
parentb360474ca43ff459ee6fe4c8e6d38aa81f19cecf (diff)
downloadexternal_gettext-8e90f64089cbf93460620adf9cf265f988547aac.zip
external_gettext-8e90f64089cbf93460620adf9cf265f988547aac.tar.gz
external_gettext-8e90f64089cbf93460620adf9cf265f988547aac.tar.bz2
Add a GPL copyright notice to lbrkprop.h.
Diffstat (limited to 'gettext-tools/lib/gen-lbrkprop.c')
-rw-r--r--gettext-tools/lib/gen-lbrkprop.c22
1 files changed, 21 insertions, 1 deletions
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))