summaryrefslogtreecommitdiffstats
path: root/player/main.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-10-04 19:10:52 +0200
committerwm4 <wm4@nowhere>2017-10-04 19:10:52 +0200
commitbfae72a2788d576bfa04c7e670fe68b52163e85f (patch)
tree57725a03007a471c30315ffabc6f31357fc08eea /player/main.c
parent72901bb16b7ac6c2e6d4e7a8d84fbfb0ad8c084a (diff)
downloadmpv-bfae72a2788d576bfa04c7e670fe68b52163e85f.tar.bz2
mpv-bfae72a2788d576bfa04c7e670fe68b52163e85f.tar.xz
player: change a minor code fragment to LGPL
Seems absurd to keep this under GPL, since it's only a tiny code fragment (that would always look the same, no matter if you rewrote it independently), but now I got proper permission from the original author anyway.
Diffstat (limited to 'player/main.c')
-rw-r--r--player/main.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/player/main.c b/player/main.c
index cf267fb170..afd35d5a0d 100644
--- a/player/main.c
+++ b/player/main.c
@@ -13,8 +13,6 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
- *
- * Parts under HAVE_GPL are licensed under GNU General Public License.
*/
#include <stdio.h>
@@ -149,10 +147,7 @@ void mp_print_version(struct mp_log *log, int always)
mp_msg(log, v, "\n");
// Only in verbose mode.
if (!always) {
-#if HAVE_GPL
- // Possibly GPL due to 0810e42750fb2e2e0d602388cef1b8ea8015d935.
mp_msg(log, MSGL_V, "Configuration: " CONFIGURATION "\n");
-#endif
mp_msg(log, MSGL_V, "List of enabled features: %s\n", FULLCONFIG);
}
}