From afafee263a58050fa70b2c62fdb5ea7c126fbc37 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Fri, 24 May 2002 10:45:00 +0000 Subject: Added GNU copyleft headers. --- scripts/Makefile.am | 5 ++--- src/app.h | 17 +++++++++++++++++ src/gsql_conn.c | 17 +++++++++++++++++ src/gsql_lib.c | 17 +++++++++++++++++ src/guile-sql.h | 17 +++++++++++++++++ src/mysql.c | 17 +++++++++++++++++ src/pgsql.c | 17 +++++++++++++++++ 7 files changed, 104 insertions(+), 3 deletions(-) diff --git a/scripts/Makefile.am b/scripts/Makefile.am index f3d32f6..6e1c502 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -1,6 +1,5 @@ -# $Id: Makefile.am,v 1.1 2001/12/06 17:36:21 gray Exp $ -# This file is part of GNU RADIUS. -# Copyright (C) 2000,2001, Sergey Poznyakoff +# This file is part of guile-sql. +# Copyright (C) 2002, Sergey Poznyakoff # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/app.h b/src/app.h index 7b7358a..b91bac3 100644 --- a/src/app.h +++ b/src/app.h @@ -1,3 +1,20 @@ +/* This file is part of guile-sql. + Copyright (C) 2002 Sergey Poznyakoff + + 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 of the License, 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. */ + #ifdef USE_SQL_MYSQL extern struct sql_iface mysql_iface; #endif diff --git a/src/gsql_conn.c b/src/gsql_conn.c index 23d831b..cdd2dae 100644 --- a/src/gsql_conn.c +++ b/src/gsql_conn.c @@ -1,3 +1,20 @@ +/* This file is part of guile-sql. + Copyright (C) 2002 Sergey Poznyakoff + + 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 of the License, 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. */ + #ifdef HAVE_CONFIG_H # include #endif diff --git a/src/gsql_lib.c b/src/gsql_lib.c index 91be90a..686c9cb 100644 --- a/src/gsql_lib.c +++ b/src/gsql_lib.c @@ -1,3 +1,20 @@ +/* This file is part of guile-sql. + Copyright (C) 2002 Sergey Poznyakoff + + 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 of the License, 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. */ + #ifdef HAVE_CONFIG_H # include #endif diff --git a/src/guile-sql.h b/src/guile-sql.h index 64fd0eb..d6d11af 100644 --- a/src/guile-sql.h +++ b/src/guile-sql.h @@ -1,3 +1,20 @@ +/* This file is part of guile-sql. + Copyright (C) 2002 Sergey Poznyakoff + + 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 of the License, 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. */ + #include #include #include diff --git a/src/mysql.c b/src/mysql.c index 8491bb4..fdaaeee 100644 --- a/src/mysql.c +++ b/src/mysql.c @@ -1,3 +1,20 @@ +/* This file is part of guile-sql. + Copyright (C) 2002 Sergey Poznyakoff + + 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 of the License, 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. */ + #ifdef HAVE_CONFIG_H # include #endif diff --git a/src/pgsql.c b/src/pgsql.c index 956f517..1881135 100644 --- a/src/pgsql.c +++ b/src/pgsql.c @@ -1,3 +1,20 @@ +/* This file is part of guile-sql. + Copyright (C) 2002 Sergey Poznyakoff + + 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 of the License, 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. */ + #ifdef HAVE_CONFIG_H # include #endif -- cgit v1.2.1