From 19c0192cb4ce59aea6af17238745c26e22d05489 Mon Sep 17 00:00:00 2001 Message-Id: <19c0192cb4ce59aea6af17238745c26e22d05489.1714956780.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 5 May 1999 18:52:45 +0000 Subject: [PATCH] Change licensing conditions to LGPL. Organization: Straylight/Edgeware From: mdw --- .links | 2 +- .skelrc | 1 + Makefile.am | 19 +++++++++++-------- cancel.c | 19 +++++++++++-------- cancel.h | 19 +++++++++++-------- configure.in | 19 +++++++++++-------- mdwfocus.c | 19 +++++++++++-------- mdwfocus.h | 19 +++++++++++-------- msg.c | 19 +++++++++++-------- msg.h | 19 +++++++++++-------- 10 files changed, 90 insertions(+), 65 deletions(-) diff --git a/.links b/.links index 10f134c..251e82e 100644 --- a/.links +++ b/.links @@ -1,4 +1,4 @@ -COPYING +COPYING.LIB install-sh missing mkinstalldirs diff --git a/.skelrc b/.skelrc index 235e96e..e491163 100644 --- a/.skelrc +++ b/.skelrc @@ -4,5 +4,6 @@ (append '((author . "Straylight/Edgeware") (full-title . "the mgLib GTK utilities library") + (licence-text . skelrc-lgpl) (program . "mgLib")) skel-alist)) diff --git a/Makefile.am b/Makefile.am index ed1d723..a4b26c0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.2 1998/12/21 16:29:29 mdw Exp $ +## $Id: Makefile.am,v 1.3 1999/05/05 18:52:45 mdw Exp $ ## ## Makefile for mgLib ## @@ -12,22 +12,25 @@ ## This file is part of the mgLib GTK utilities library. ## ## mgLib 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. +## it under the terms of the GNU Library General Public License as +## published by the Free Software Foundation; either version 2 of the +## License, or (at your option) any later version. ## ## mgLib 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. +## GNU Library General Public License for more details. ## -## You should have received a copy of the GNU General Public License -## along with mgLib; if not, write to the Free Software Foundation, -## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +## You should have received a copy of the GNU Library General Public +## License along with mgLib; if not, write to the Free Software +## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ +## Revision 1.3 1999/05/05 18:52:45 mdw +## Change licensing conditions to LGPL. +## ## Revision 1.2 1998/12/21 16:29:29 mdw ## Install the include files properly. ## diff --git a/cancel.c b/cancel.c index d29b823..5c41fc5 100644 --- a/cancel.c +++ b/cancel.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: cancel.c,v 1.2 1999/03/25 23:36:07 mdw Exp $ + * $Id: cancel.c,v 1.3 1999/05/05 18:52:45 mdw Exp $ * * Handle Escape keypresses, directing them to cancel buttons * @@ -12,23 +12,26 @@ * This file is part of the mgLib GTK utilities library. * * mgLib 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. + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. * * mgLib 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. + * GNU Library General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with mgLib; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU Library General Public + * License along with mgLib; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*----- Revision history --------------------------------------------------* * * $Log: cancel.c,v $ + * Revision 1.3 1999/05/05 18:52:45 mdw + * Change licensing conditions to LGPL. + * * Revision 1.2 1999/03/25 23:36:07 mdw * Compile to nothing in absence of GTK, for the benefit of parent packages * which contain non-GTK-dependent parts. diff --git a/cancel.h b/cancel.h index aa78df6..88e0d05 100644 --- a/cancel.h +++ b/cancel.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: cancel.h,v 1.1 1998/12/11 09:44:21 mdw Exp $ + * $Id: cancel.h,v 1.2 1999/05/05 18:52:45 mdw Exp $ * * Handle Escape keypresses, directing them to cancel buttons * @@ -12,23 +12,26 @@ * This file is part of the mgLib GTK utilities library. * * mgLib 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. + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. * * mgLib 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. + * GNU Library General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with mgLib; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU Library General Public + * License along with mgLib; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*----- Revision history --------------------------------------------------* * * $Log: cancel.h,v $ + * Revision 1.2 1999/05/05 18:52:45 mdw + * Change licensing conditions to LGPL. + * * Revision 1.1 1998/12/11 09:44:21 mdw * Initial version. * diff --git a/configure.in b/configure.in index 4ed3643..25b9fb0 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl -*-fundamental-*- dnl -dnl $Id: configure.in,v 1.4 1999/03/25 23:36:08 mdw Exp $ +dnl $Id: configure.in,v 1.5 1999/05/05 18:52:45 mdw Exp $ dnl dnl Configuration script for mgLib dnl @@ -12,22 +12,25 @@ dnl dnl This file is part of the mgLib GTK utilities library. dnl dnl mgLib is free software; you can redistribute it and/or modify -dnl it under the terms of the GNU General Public License as published by -dnl the Free Software Foundation; either version 2 of the License, or -dnl (at your option) any later version. +dnl it under the terms of the GNU Library General Public License as +dnl published by the Free Software Foundation; either version 2 of the +dnl License, or (at your option) any later version. dnl dnl mgLib is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -dnl GNU General Public License for more details. +dnl GNU Library General Public License for more details. dnl -dnl You should have received a copy of the GNU General Public License -dnl along with mgLib; if not, write to the Free Software Foundation, -dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +dnl You should have received a copy of the GNU Library General Public +dnl License along with mgLib; if not, write to the Free Software +dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl ----- Revision history -------------------------------------------------- dnl dnl $Log: configure.in,v $ +dnl Revision 1.5 1999/05/05 18:52:45 mdw +dnl Change licensing conditions to LGPL. +dnl dnl Revision 1.4 1999/03/25 23:36:08 mdw dnl Compile to nothing in absence of GTK, for the benefit of parent packages dnl which contain non-GTK-dependent parts. diff --git a/mdwfocus.c b/mdwfocus.c index b238e50..4d08f0d 100644 --- a/mdwfocus.c +++ b/mdwfocus.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mdwfocus.c,v 1.2 1999/03/25 23:36:09 mdw Exp $ + * $Id: mdwfocus.c,v 1.3 1999/05/05 18:52:45 mdw Exp $ * * Tell my hacked `fvwm' to focus this window * @@ -12,23 +12,26 @@ * This file is part of the mgLib GTK utilities library. * * mgLib 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. + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. * * mgLib 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. + * GNU Library General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with mgLib; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU Library General Public + * License along with mgLib; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*----- Revision history --------------------------------------------------* * * $Log: mdwfocus.c,v $ + * Revision 1.3 1999/05/05 18:52:45 mdw + * Change licensing conditions to LGPL. + * * Revision 1.2 1999/03/25 23:36:09 mdw * Compile to nothing in absence of GTK, for the benefit of parent packages * which contain non-GTK-dependent parts. diff --git a/mdwfocus.h b/mdwfocus.h index 06b7254..db10b31 100644 --- a/mdwfocus.h +++ b/mdwfocus.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mdwfocus.h,v 1.1 1998/12/11 09:44:21 mdw Exp $ + * $Id: mdwfocus.h,v 1.2 1999/05/05 18:52:45 mdw Exp $ * * Tell my hacked `fvwm' to focus this window * @@ -12,23 +12,26 @@ * This file is part of the mgLib GTK utilities library. * * mgLib 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. + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. * * mgLib 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. + * GNU Library General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with mgLib; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU Library General Public + * License along with mgLib; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*----- Revision history --------------------------------------------------* * * $Log: mdwfocus.h,v $ + * Revision 1.2 1999/05/05 18:52:45 mdw + * Change licensing conditions to LGPL. + * * Revision 1.1 1998/12/11 09:44:21 mdw * Initial version. * diff --git a/msg.c b/msg.c index 08a0285..cbfede1 100644 --- a/msg.c +++ b/msg.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: msg.c,v 1.4 1999/04/29 20:48:13 mdw Exp $ + * $Id: msg.c,v 1.5 1999/05/05 18:52:45 mdw Exp $ * * Display a message and get an answer * @@ -12,23 +12,26 @@ * This file is part of the mgLib GTK utilities library. * * mgLib 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. + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. * * mgLib 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. + * GNU Library General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with mgLib; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU Library General Public + * License along with mgLib; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*----- Revision history --------------------------------------------------* * * $Log: msg.c,v $ + * Revision 1.5 1999/05/05 18:52:45 mdw + * Change licensing conditions to LGPL. + * * Revision 1.4 1999/04/29 20:48:13 mdw * Add documentation for `msg'. * diff --git a/msg.h b/msg.h index 9f7e825..31ba0de 100644 --- a/msg.h +++ b/msg.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: msg.h,v 1.2 1999/04/29 20:48:13 mdw Exp $ + * $Id: msg.h,v 1.3 1999/05/05 18:52:45 mdw Exp $ * * Display a message and get an answer * @@ -12,23 +12,26 @@ * This file is part of the mgLib GTK utilities library. * * mgLib 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. + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. * * mgLib 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. + * GNU Library General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with mgLib; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU Library General Public + * License along with mgLib; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*----- Revision history --------------------------------------------------* * * $Log: msg.h,v $ + * Revision 1.3 1999/05/05 18:52:45 mdw + * Change licensing conditions to LGPL. + * * Revision 1.2 1999/04/29 20:48:13 mdw * Add documentation for `msg'. * -- [mdw]