diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-06 17:56:36 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-06 17:56:36 +0100 |
commit | 80d6de097c0b85d354b57bcf1e2c3d46f08ec728 (patch) | |
tree | 2f70d1ebaa688367222ab5d6eb7e1f10256275af /src | |
parent | 9979d69ff71e3dda418f6d692b727f051d3e4d2b (diff) | |
download | yawa-80d6de097c0b85d354b57bcf1e2c3d46f08ec728.tar.xz |
Relicense under GPL2 only
Also add missing license headers to missing files.
Diffstat (limited to 'src')
-rw-r--r-- | src/config.h.in | 17 | ||||
-rw-r--r-- | src/utils.c | 17 | ||||
-rw-r--r-- | src/utils.h | 17 | ||||
-rw-r--r-- | src/yawa.c | 18 | ||||
-rw-r--r-- | src/yawa.h | 17 |
5 files changed, 77 insertions, 9 deletions
diff --git a/src/config.h.in b/src/config.h.in index 6d0e598..806faab 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -1,5 +1,22 @@ #ifndef CONFIG_H #define CONFIG_H +/* + * yawa - Yet Another Wallpaper Application + * Copyright (C) 2014, The YAWA Developers + * + * This file is part of yawa. yawa 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, version 2. + * + * 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, see <http://www.gnu.org/licenses/>. + */ + #define PACKAGE_NAME "@PACKAGE_NAME@" #define PACKAGE_VERSION "@PACKAGE_VERSION@" diff --git a/src/utils.c b/src/utils.c index 5bfbf5a..ede541e 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1,3 +1,20 @@ +/* + * yawa - Yet Another Wallpaper Application + * Copyright (C) 2014, The YAWA Developers + * + * This file is part of yawa. yawa 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, version 2. + * + * 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, see <http://www.gnu.org/licenses/>. + */ + #define _GNU_SOURCE #include <bsd/string.h> #include <stdbool.h> diff --git a/src/utils.h b/src/utils.h index eb0fb40..202db06 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,5 +1,22 @@ #ifndef UTILS_H #define UTILS_H +/* + * yawa - Yet Another Wallpaper Application + * Copyright (C) 2014, The YAWA Developers + * + * This file is part of yawa. yawa 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, version 2. + * + * 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, see <http://www.gnu.org/licenses/>. + */ + #include <stdbool.h> /// Prototypes @@ -1,16 +1,16 @@ /* + * yawa - Yet Another Wallpaper Application * Copyright (C) 2003, Hyriand <hyriand@thegraveyard.org> - * Copyright (C) 2014, Johannes Löthberg <johannes@kyriasis.com> + * Copyright (C) 2014, The YAWA Developers * - * 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 file is part of yawa. yawa 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, version 2. * - * 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. + * 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, see <http://www.gnu.org/licenses/>. @@ -1,5 +1,22 @@ #ifndef YAWA_H #define YAWA_H +/* + * yawa - Yet Another Wallpaper Application + * Copyright (C) 2014, The YAWA Developers + * + * This file is part of yawa. yawa 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, version 2. + * + * 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, see <http://www.gnu.org/licenses/>. + */ + #include <Imlib2.h> #include <argp.h> |