Commit 90f76298 authored by bar@bar.myoffice.izhnet.ru's avatar bar@bar.myoffice.izhnet.ru

Merge mysql.com:/home/bar/mysql-work/mysql-5.0-rpl

into  mysql.com:/home/bar/mysql-work/mysql-5.1-new-rpl
parents 67f8a6a5 b351b0f1
...@@ -243,6 +243,28 @@ void dispcset(FILE *f,CHARSET_INFO *cs) ...@@ -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 int
main(int argc, char **argv __attribute__((unused))) main(int argc, char **argv __attribute__((unused)))
{ {
...@@ -283,6 +305,7 @@ main(int argc, char **argv __attribute__((unused))) ...@@ -283,6 +305,7 @@ main(int argc, char **argv __attribute__((unused)))
"directory:\n"); "directory:\n");
fprintf(f, " ./conf_to_src ../sql/share/charsets/ > FILE\n"); fprintf(f, " ./conf_to_src ../sql/share/charsets/ > FILE\n");
fprintf(f, "*/\n\n"); fprintf(f, "*/\n\n");
fprint_copyright(f);
fprintf(f,"#include <my_global.h>\n"); fprintf(f,"#include <my_global.h>\n");
fprintf(f,"#include <m_ctype.h>\n\n"); fprintf(f,"#include <m_ctype.h>\n\n");
......
...@@ -6,6 +6,21 @@ ...@@ -6,6 +6,21 @@
./conf_to_src ../sql/share/charsets/ > FILE ./conf_to_src ../sql/share/charsets/ > FILE
*/ */
/* 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
the Free Software Foundation; version 2 of the License.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <my_global.h> #include <my_global.h>
#include <m_ctype.h> #include <m_ctype.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment