From: Robin Gareus Date: Fri, 2 Oct 2015 11:17:45 +0000 (+0200) Subject: add a proper license to the GCC ABI check tool X-Git-Tag: 4.3~187 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=544815721fa1a3902edb171f4e91e54e30c7ff60;p=ardour.git add a proper license to the GCC ABI check tool --- diff --git a/tools/gccabicheck/abicheck.c b/tools/gccabicheck/abicheck.c index 3267bf2c1a..f64011b225 100644 --- a/tools/gccabicheck/abicheck.c +++ b/tools/gccabicheck/abicheck.c @@ -1,5 +1,15 @@ +/* Copyright (C) 2015 Robin Gareus + * + * This program is free software. It comes without any warranty, to + * the extent permitted by applicable law. You can redistribute it + * and/or modify it under the terms of the Do What The Fuck You Want + * To Public License, Version 2, as published by Sam Hocevar. See + * http://www.wtfpl.net/ for more details. + */ + // gcc -Wall -o gcc-glibmm-abi-check abicheck.c -ldl // help2man -N -n 'glib gcc4/5 C++11 ABI compatibility test' -o gcc-glibmm-abi-check.1 ./gcc-glibmm-abi-check + #include #include #include @@ -33,7 +43,7 @@ static void print_usage (void) { static void print_version (void) { printf ("gcc-glibmm-abi-check version %s\n\n", VERSION); printf ( - "Copyright (C) GPL 2015 Robin Gareus \n" + "Copyright (C) 2015 Robin Gareus \n" "This is free software; see the source for copying conditions. There is NO\n" "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"); }