From 551ad336c1367c64d331e31dd3ea23e17e721b9b Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Thu, 21 Apr 2011 12:35:42 +0200 Subject: add missing "LGPLv2.1 or later" header to source files --- client/gui/gui.cpp | 17 +++++++++++++++++ client/gui/gui.h | 17 +++++++++++++++++ client/gui/resource_provider.cpp | 17 +++++++++++++++++ client/gui/resource_provider.h | 17 +++++++++++++++++ client/gui/softrenderer.cpp | 17 +++++++++++++++++ client/gui/softrenderer.h | 17 +++++++++++++++++ client/gui/softtexture.cpp | 17 +++++++++++++++++ client/gui/softtexture.h | 18 +++++++++++++++++- client/smartcard_channel.cpp | 16 ++++++++++++++++ client/smartcard_channel.h | 16 ++++++++++++++++ client/zlib_decoder.cpp | 16 ++++++++++++++++ server/smartcard.c | 17 +++++++++++++++++ server/smartcard.h | 17 +++++++++++++++++ server/zlib_encoder.c | 17 +++++++++++++++++ 14 files changed, 235 insertions(+), 1 deletion(-) diff --git a/client/gui/gui.cpp b/client/gui/gui.cpp index d8513c62..eba241f7 100644 --- a/client/gui/gui.cpp +++ b/client/gui/gui.cpp @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #include "common.h" #include diff --git a/client/gui/gui.h b/client/gui/gui.h index 3b76b688..457c3512 100644 --- a/client/gui/gui.h +++ b/client/gui/gui.h @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #ifndef _H_GUI #define _H_GUI diff --git a/client/gui/resource_provider.cpp b/client/gui/resource_provider.cpp index 52e3381c..2b5c44f3 100644 --- a/client/gui/resource_provider.cpp +++ b/client/gui/resource_provider.cpp @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #include "common.h" #include "resource_provider.h" diff --git a/client/gui/resource_provider.h b/client/gui/resource_provider.h index c3136880..6f59cb8a 100644 --- a/client/gui/resource_provider.h +++ b/client/gui/resource_provider.h @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #ifndef _H_RESOURCE_PROVIDER #define _H_RESOURCE_PROVIDER diff --git a/client/gui/softrenderer.cpp b/client/gui/softrenderer.cpp index 87fffb8b..bdc7a6cd 100644 --- a/client/gui/softrenderer.cpp +++ b/client/gui/softrenderer.cpp @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #include "common.h" #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/client/gui/softrenderer.h b/client/gui/softrenderer.h index f5155ad2..f25f79e2 100644 --- a/client/gui/softrenderer.h +++ b/client/gui/softrenderer.h @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #ifndef _directfbrenderer_h_ #define _directfbrenderer_h_ diff --git a/client/gui/softtexture.cpp b/client/gui/softtexture.cpp index 562edeab..a633f24e 100644 --- a/client/gui/softtexture.cpp +++ b/client/gui/softtexture.cpp @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #include "common.h" #ifdef HAVE_CONFIG_H diff --git a/client/gui/softtexture.h b/client/gui/softtexture.h index 788795ff..65a4ece5 100644 --- a/client/gui/softtexture.h +++ b/client/gui/softtexture.h @@ -1,4 +1,20 @@ - +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #ifndef _softtexture_h_ #define _softtexture_h_ diff --git a/client/smartcard_channel.cpp b/client/smartcard_channel.cpp index 98f24a8d..b086ad79 100644 --- a/client/smartcard_channel.cpp +++ b/client/smartcard_channel.cpp @@ -1,3 +1,19 @@ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #include #include "client/red_client.h" diff --git a/client/smartcard_channel.h b/client/smartcard_channel.h index 752713ba..a84cbfdb 100644 --- a/client/smartcard_channel.h +++ b/client/smartcard_channel.h @@ -1,3 +1,19 @@ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #ifndef __SMART_CARD_H__ #define __SMART_CARD_H__ diff --git a/client/zlib_decoder.cpp b/client/zlib_decoder.cpp index 68b1b339..9cdadb3c 100644 --- a/client/zlib_decoder.cpp +++ b/client/zlib_decoder.cpp @@ -1,3 +1,19 @@ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #include "common.h" #include "zlib_decoder.h" #include "debug.h" diff --git a/server/smartcard.c b/server/smartcard.c index 852110bd..7136d111 100644 --- a/server/smartcard.c +++ b/server/smartcard.c @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #include #include "server/char_device.h" diff --git a/server/smartcard.h b/server/smartcard.h index 790eb878..b9011838 100644 --- a/server/smartcard.h +++ b/server/smartcard.h @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #ifndef __SMART_CARD_H__ #define __SMART_CARD_H__ diff --git a/server/zlib_encoder.c b/server/zlib_encoder.c index e0d8d830..214180ed 100644 --- a/server/zlib_encoder.c +++ b/server/zlib_encoder.c @@ -1,3 +1,20 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2010 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . +*/ #include "red_common.h" #include "zlib_encoder.h" #include -- cgit