2012-09-01 19:32:03 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer 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.
|
|
|
|
*
|
|
|
|
* MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2014-11-02 16:37:28 +00:00
|
|
|
#include "common.h"
|
2012-09-01 19:32:03 +00:00
|
|
|
#include "version.h"
|
2013-07-10 09:48:19 +00:00
|
|
|
#ifdef NO_BUILD_TIMESTAMPS
|
|
|
|
#undef BUILDDATE
|
|
|
|
#define BUILDDATE "UNKNOWN"
|
|
|
|
#endif
|
2012-09-01 19:32:03 +00:00
|
|
|
|
2014-06-10 21:56:05 +00:00
|
|
|
const char *const mpv_version = "mpv " VERSION;
|
|
|
|
const char *const mpv_builddate = BUILDDATE;
|