From eadacb07b6f08c93bcb746d555668355bd6ad97e Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Mon, 29 Dec 2003 20:41:08 +0000 Subject: [PATCH] Make sure all files have GPL notice --- src/configfile.c | 2 +- src/configfile.h | 2 +- src/daap-proto.c | 2 +- src/daap-proto.h | 2 +- src/daapd.h | 2 +- src/err.c | 2 +- src/err.h | 2 +- src/lexer.l | 17 ++++++++++++++++- src/main.c | 2 +- src/parser.y | 23 +++++++++++++++++++++++ src/playlist.c | 16 ++++++++++++++++ src/playlist.h | 16 ++++++++++++++++ src/rend-howl.c | 16 ++++++++++++++++ src/rend-osx.c | 16 ++++++++++++++++ src/rend-posix.c | 19 +++++++++++++++++++ src/rend.h | 16 ++++++++++++++++ src/restart.c | 34 ++++++++++++++++++++++++++++++++++ src/restart.h | 34 ++++++++++++++++++++++++++++++++++ src/uici.c | 34 +++++++++++++++++++++++++++++++++- src/uici.h | 35 +++++++++++++++++++++++++++++++++++ src/webserver.c | 2 +- src/webserver.h | 2 +- 22 files changed, 284 insertions(+), 12 deletions(-) diff --git a/src/configfile.c b/src/configfile.c index 3fb6c9e2..27d51ad2 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -2,7 +2,7 @@ * $Id$ * Functions for reading and writing the config file * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/configfile.h b/src/configfile.h index df6b4103..b1425fcc 100644 --- a/src/configfile.h +++ b/src/configfile.h @@ -2,7 +2,7 @@ * $Id$ * Functions for reading and writing the config file * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/daap-proto.c b/src/daap-proto.c index 3f4ff77f..9ae25bb1 100644 --- a/src/daap-proto.c +++ b/src/daap-proto.c @@ -2,7 +2,7 @@ * $Id$ * Helper functions for formatting a daap message * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/daap-proto.h b/src/daap-proto.h index fe34b6ef..baf54b62 100644 --- a/src/daap-proto.h +++ b/src/daap-proto.h @@ -2,7 +2,7 @@ * $Id$ * Helper functions for formatting a daap message * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/daapd.h b/src/daapd.h index 2e3db601..10eddedb 100644 --- a/src/daapd.h +++ b/src/daapd.h @@ -2,7 +2,7 @@ * $Id$ * Header info for daapd server * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/err.c b/src/err.c index fdce9080..376e9233 100644 --- a/src/err.c +++ b/src/err.c @@ -2,7 +2,7 @@ * $Id$ * Generic error handling * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/err.h b/src/err.h index eeddd343..9014ad30 100644 --- a/src/err.h +++ b/src/err.h @@ -2,7 +2,7 @@ * $Id$ * Error related routines * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/lexer.l b/src/lexer.l index 9e2ebb02..2a749e75 100644 --- a/src/lexer.l +++ b/src/lexer.l @@ -1,8 +1,23 @@ %{ /* $Id$ - * * Simple playlist lexer + * + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) + * + * 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 diff --git a/src/main.c b/src/main.c index c33a910a..026decc8 100644 --- a/src/main.c +++ b/src/main.c @@ -2,7 +2,7 @@ * $Id$ * Driver for multi-threaded daap server * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/parser.y b/src/parser.y index 2ea1fc00..141fdd69 100644 --- a/src/parser.y +++ b/src/parser.y @@ -1,5 +1,28 @@ %{ + +/* $Id$ + * Simple playlist parser + * + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) + * + * 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 "playlist.h" diff --git a/src/playlist.c b/src/playlist.c index 62d07705..13e5d970 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1,6 +1,22 @@ /* * $Id$ + * iTunes-style smart playlists * + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) + * + * 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 diff --git a/src/playlist.h b/src/playlist.h index 7e1e01a7..3d5effc5 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -1,6 +1,22 @@ /* * $Id$ + * iTunes-style smart playlists * + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) + * + * 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 */ #ifndef _PL_H_ diff --git a/src/rend-howl.c b/src/rend-howl.c index 43ca5fbb..8b495c68 100644 --- a/src/rend-howl.c +++ b/src/rend-howl.c @@ -1,6 +1,22 @@ /* * $Id$ + * Rendezvous for SwampWolf's Howl (http://www.swampwolf.com) * + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) + * + * 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 diff --git a/src/rend-osx.c b/src/rend-osx.c index 3df6149b..923ef12f 100644 --- a/src/rend-osx.c +++ b/src/rend-osx.c @@ -1,6 +1,22 @@ /* * $Id$ + * Rendezvous - OSX style * + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) + * + * 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 diff --git a/src/rend-posix.c b/src/rend-posix.c index e8769d19..f5440bfa 100644 --- a/src/rend-posix.c +++ b/src/rend-posix.c @@ -3,6 +3,22 @@ * * Do the zeroconf/mdns/rendezvous (tm) thing. This is a hacked version * of Apple's Responder.c from the Rendezvous (tm) POSIX implementation + * + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) + * + * 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 */ /* @@ -73,6 +89,9 @@ Change History (most recent first): $Log$ + Revision 1.7 2003/12/29 20:41:08 ron + Make sure all files have GPL notice + Revision 1.6 2003/11/26 06:12:53 ron Exclude from memory checks diff --git a/src/rend.h b/src/rend.h index 0e0a63f0..3655835d 100644 --- a/src/rend.h +++ b/src/rend.h @@ -1,6 +1,22 @@ /* * $Id$ + * Rendezvous stuff * + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) + * + * 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 */ #ifndef _REND_H_ diff --git a/src/restart.c b/src/restart.c index db235227..4c035f5b 100644 --- a/src/restart.c +++ b/src/restart.c @@ -1,3 +1,37 @@ +/* + * $Id$ + * Restart Library + * + * ** NOTICE ** + * + * This code is written by (and is therefore copyright) Dr Kay Robbins + * (krobbins@cs.utsa.edu) and Dr. Steve Robbins (srobbins@cs.utsa.edu), + * and was released with unspecified licensing as part of their book + * _UNIX_Systems_Programming_ (Prentice Hall, ISBN: 0130424110). + * + * Dr. Steve Robbins was kind enough to allow me to re-license this + * software as GPL. I would request that any bugs or problems with + * this code be brought to my attention (ron@pedde.com), and I will + * submit appropriate patches upstream, should the problem be with + * the original code. + * + * ** NOTICE ** + * + * 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/restart.h b/src/restart.h index 5e201bd7..2efff48d 100644 --- a/src/restart.h +++ b/src/restart.h @@ -1,3 +1,37 @@ +/* + * $Id$ + * Restart Library + * + * ** NOTICE ** + * + * This code is written by (and is therefore copyright) Dr Kay Robbins + * (krobbins@cs.utsa.edu) and Dr. Steve Robbins (srobbins@cs.utsa.edu), + * and was released with unspecified licensing as part of their book + * _UNIX_Systems_Programming_ (Prentice Hall, ISBN: 0130424110). + * + * Dr. Steve Robbins was kind enough to allow me to re-license this + * software as GPL. I would request that any bugs or problems with + * this code be brought to my attention (ron@pedde.com), and I will + * submit appropriate patches upstream, should the problem be with + * the original code. + * + * ** NOTICE ** + * + * 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/uici.c b/src/uici.c index 062f9663..4d3f0235 100644 --- a/src/uici.c +++ b/src/uici.c @@ -1,4 +1,36 @@ -/* uici.c sockets implementation */ +/* + * $Id$ + * Sockets Library + * + * ** NOTICE ** + * + * This code is written by (and is therefore copyright) Dr Kay Robbins + * (krobbins@cs.utsa.edu) and Dr. Steve Robbins (srobbins@cs.utsa.edu), + * and was released with unspecified licensing as part of their book + * _UNIX_Systems_Programming_ (Prentice Hall, ISBN: 0130424110). + * + * Dr. Steve Robbins was kind enough to allow me to re-license this + * software as GPL. I would request that any bugs or problems with + * this code be brought to my attention (ron@pedde.com), and I will + * submit appropriate patches upstream, should the problem be with + * the original code. + * + * ** NOTICE ** + * + * 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 diff --git a/src/uici.h b/src/uici.h index 3a9abeaf..eff16da7 100644 --- a/src/uici.h +++ b/src/uici.h @@ -1,3 +1,38 @@ +/* + * $Id$ + * Sockets Library + * + * ** NOTICE ** + * + * This code is written by (and is therefore copyright) Dr Kay Robbins + * (krobbins@cs.utsa.edu) and Dr. Steve Robbins (srobbins@cs.utsa.edu), + * and was released with unspecified licensing as part of their book + * _UNIX_Systems_Programming_ (Prentice Hall, ISBN: 0130424110). + * + * Dr. Steve Robbins was kind enough to allow me to re-license this + * software as GPL. I would request that any bugs or problems with + * this code be brought to my attention (ron@pedde.com), and I will + * submit appropriate patches upstream, should the problem be with + * the original code. + * + * ** NOTICE ** + * + * 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 + */ + + /*********************************** uici.h **************************/ /* Prototypes for the three public UICI functions */ /*********************************************************************/ diff --git a/src/webserver.c b/src/webserver.c index af154c97..5a235ce4 100644 --- a/src/webserver.c +++ b/src/webserver.c @@ -2,7 +2,7 @@ * $Id$ * Webserver library * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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 diff --git a/src/webserver.h b/src/webserver.h index 707315dd..5e6fd89a 100644 --- a/src/webserver.h +++ b/src/webserver.h @@ -2,7 +2,7 @@ * $Id$ * Webserver library * - * Copyright (C) 2003 Ron Pedde (ron@corbey.com) + * Copyright (C) 2003 Ron Pedde (ron@pedde.com) * * 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