aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/Makefile.am5
-rw-r--r--src/app.h17
-rw-r--r--src/gsql_conn.c17
-rw-r--r--src/gsql_lib.c17
-rw-r--r--src/guile-sql.h17
-rw-r--r--src/mysql.c17
-rw-r--r--src/pgsql.c17
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 <config.h>
#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 <config.h>
#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 <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
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 <config.h>
#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 <config.h>
#endif

Return to:

Send suggestions and report system problems to the System administrator.