diff options
author | unknown <bar@mysql.com/bar.myoffice.izhnet.ru> | 2007-07-05 11:36:31 +0500 |
---|---|---|
committer | unknown <bar@mysql.com/bar.myoffice.izhnet.ru> | 2007-07-05 11:36:31 +0500 |
commit | 32bdbc6d853a2e1615bcae7e9bd7044a3ae934fc (patch) | |
tree | 0c8503fb0d1cc7f65dbffad6baf56d0596afc506 /strings | |
parent | 8e871c1a39d92295934d4098536294ad59990973 (diff) | |
download | mariadb-git-32bdbc6d853a2e1615bcae7e9bd7044a3ae934fc.tar.gz |
Printing copyright into ctype-extra.c
Diffstat (limited to 'strings')
-rw-r--r-- | strings/conf_to_src.c | 23 | ||||
-rw-r--r-- | strings/ctype-extra.c | 3 |
2 files changed, 25 insertions, 1 deletions
diff --git a/strings/conf_to_src.c b/strings/conf_to_src.c index e2ac9846c85..75776d5e6d0 100644 --- a/strings/conf_to_src.c +++ b/strings/conf_to_src.c @@ -243,6 +243,28 @@ void dispcset(FILE *f,CHARSET_INFO *cs) } +static void +fprint_copyright(FILE *file) +{ + fprintf(file, +"/* Copyright (C) 2000-2007 MySQL AB\n" +"\n" +" This program is free software; you can redistribute it and/or modify\n" +" it under the terms of the GNU General Public License as published by\n" +" the Free Software Foundation; version 2 of the License.\n" +"\n" +" This program is distributed in the hope that it will be useful,\n" +" but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +" GNU General Public License for more details.\n" +"\n" +" You should have received a copy of the GNU General Public License\n" +" along with this program; if not, write to the Free Software\n" +" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */\n" +"\n"); +} + + int main(int argc, char **argv __attribute__((unused))) { @@ -283,6 +305,7 @@ main(int argc, char **argv __attribute__((unused))) "directory:\n"); fprintf(f, " ./conf_to_src ../sql/share/charsets/ > FILE\n"); fprintf(f, "*/\n\n"); + fprint_copyright(f); fprintf(f,"#include <my_global.h>\n"); fprintf(f,"#include <m_ctype.h>\n\n"); diff --git a/strings/ctype-extra.c b/strings/ctype-extra.c index dbb53da5e17..bf45b5b5d75 100644 --- a/strings/ctype-extra.c +++ b/strings/ctype-extra.c @@ -5,7 +5,8 @@ To re-generate, run the following in the strings/ directory: ./conf_to_src ../sql/share/charsets/ > FILE */ -/* Copyright (C) 2000-2003 MySQL AB + +/* Copyright (C) 2000-2007 MySQL AB 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 |