Add HAVE_CONFIG_H ifdefs

This commit is contained in:
twinaphex 2016-09-08 11:22:08 +02:00
parent b15ec2f0d2
commit 87e33c56f1
3 changed files with 16 additions and 4 deletions

View File

@ -45,6 +45,14 @@
#include <file/file_path.h> #include <file/file_path.h>
#include <rhash.h> #include <rhash.h>
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#ifdef HAVE_MENU
#include "../../menu/menu_driver.h"
#endif
#include "../frontend_driver.h" #include "../frontend_driver.h"
#include "../../file_path_special.h" #include "../../file_path_special.h"
#include "../../configuration.h" #include "../../configuration.h"
@ -53,10 +61,6 @@
#include "../../verbosity.h" #include "../../verbosity.h"
#include "../../ui/ui_companion_driver.h" #include "../../ui/ui_companion_driver.h"
#ifdef HAVE_MENU
#include "../../menu/menu_driver.h"
#endif
#if 1 #if 1
#define RELEASE_BUILD #define RELEASE_BUILD
#endif #endif

View File

@ -29,6 +29,10 @@
#include <signal.h> #include <signal.h>
#include <pthread.h> #include <pthread.h>
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#ifdef ANDROID #ifdef ANDROID
#include <sys/system_properties.h> #include <sys/system_properties.h>
#ifdef __arm__ #ifdef __arm__

View File

@ -30,6 +30,10 @@
#include <file/file_path.h> #include <file/file_path.h>
#include <retro_miscellaneous.h> #include <retro_miscellaneous.h>
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#include "../../verbosity.h" #include "../../verbosity.h"
#define EXECUTE_ADDR ((uint8_t *) 0x91800000) #define EXECUTE_ADDR ((uint8_t *) 0x91800000)