diff options
author | kent@mysql.com/kent-amd64.(none) <> | 2007-04-11 01:47:42 +0200 |
---|---|---|
committer | kent@mysql.com/kent-amd64.(none) <> | 2007-04-11 01:47:42 +0200 |
commit | 8bcdaa86cf3655151ab6f1f9007e30c06ba16515 (patch) | |
tree | f717f9e181f6d688ad8b3ba340b07dda84b40556 /mysys | |
parent | 22f066e3549c45d743fce36419ae80785c830068 (diff) | |
download | mariadb-git-8bcdaa86cf3655151ab6f1f9007e30c06ba16515.tar.gz |
my_memmem.c:
Back port of include change and copyright from 5.1
Makefile.am, zlib.m4:
Use separate libtool convenience library for the bundled
zlib to embed into executables and shared libraries created,
and one to install into the pkglib directory
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/my_memmem.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/mysys/my_memmem.c b/mysys/my_memmem.c index 682a1314f09..9230337409d 100644 --- a/mysys/my_memmem.c +++ b/mysys/my_memmem.c @@ -1,4 +1,20 @@ -#include "my_base.h" +/* Copyright (C) 2000 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +#include <my_global.h> +#include <m_string.h> /* my_memmem, port of a GNU extension. |