Rename git_version.c to version_git.h, create separate

version.h file
This commit is contained in:
twinaphex 2016-09-01 17:49:28 +02:00
parent 1f471c7799
commit b6daaed566
10 changed files with 40 additions and 14 deletions

View file

@ -116,7 +116,7 @@ endif
GIT_VERSION := $(shell git rev-parse --short HEAD 2>/dev/null)
ifneq ($(GIT_VERSION),)
DEFINES += -DHAVE_GIT_VERSION -DGIT_VERSION=$(GIT_VERSION)
OBJ += git_version.o
OBJ += version_git.o
endif
# General object files

View file

@ -29,8 +29,6 @@
#include "config.h"
#endif
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "1.3.6"
#endif
#include "version.h"
#endif

View file

@ -782,7 +782,7 @@ GIT
============================================================ */
#ifdef HAVE_GIT_VERSION
#include "../git_version.c"
#include "../version_git.c"
#endif

View file

@ -23,6 +23,7 @@
#include <string/stdstring.h>
#include <lists/string_list.h>
#include <compat/strl.h>
#include <compat/posix_string.h>
#include <encodings/utf.h>
#include <file/file_path.h>
@ -32,13 +33,13 @@
#include "menu_generic.h"
#include "../../general.h"
#include "../menu_driver.h"
#include "../menu_animation.h"
#include "../menu_display.h"
#include "../menu_navigation.h"
#include "../../configuration.h"
#include "../../runloop.h"
#include "../../gfx/drivers_font_renderer/bitmap.h"
#define RGUI_TERM_START_X(width) (width / 21)

View file

@ -46,7 +46,7 @@
#include "../ui/ui_companion_driver.h"
#include "../gfx/video_shader_driver.h"
#include "../config.features.h"
#include "../git_version.h"
#include "../version_git.h"
#include "../input/input_config.h"
#include "../list_special.h"
#include "../performance_counters.h"

View file

@ -17,14 +17,17 @@
#include <string.h>
#include <retro_inline.h>
#include <compat/strl.h>
#include <string/stdstring.h>
#include "menu_driver.h"
#include "menu_cbs.h"
#include "menu_navigation.h"
#include "../general.h"
#include "../configuration.h"
#include "../runloop.h"
#include "../system.h"
#include "../version.h"
struct menu_list
{

View file

@ -59,13 +59,13 @@
#include "record/record_driver.h"
#include "core.h"
#include "configuration.h"
#include "general.h"
#include "runloop.h"
#include "managers/cheat_manager.h"
#include "system.h"
#include "tasks/tasks_internal.h"
#include "git_version.h"
#include "version.h"
#include "version_git.h"
#include "retroarch.h"

24
version.h Normal file
View file

@ -0,0 +1,24 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2016 - Daniel De Matteis
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef RARCH_VERSION_H__
#define RARCH_VERSION_H__
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "1.3.6"
#endif
#endif

View file

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "git_version.h"
#include "version_git.h"
#define STR_(x) #x
#define STR(x) STR_(x)
const char retroarch_git_version[] = STR(GIT_VERSION);

View file

@ -14,8 +14,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef RARCH_VERSION_H__
#define RARCH_VERSION_H__
#ifndef RARCH_VERSION_GIT_H__
#define RARCH_VERSION_GIT_H__
#include <retro_common_api.h>