From 83fda64d50599d1e5677e3637a01138723db2a42 Mon Sep 17 00:00:00 2001 From: Francesco Salvestrini Date: Sat, 13 Sep 2008 13:15:49 +0200 Subject: [PATCH] Replaced autoconfig.h with config.h --- src/beacon.cxx | 2 +- src/distribute.cxx | 2 +- src/misc/debug.cxx | 2 +- src/misc/debug.h | 2 +- src/misc/uuid.cxx | 2 +- src/misc/uuid.h | 2 +- src/vm/lua.cxx | 2 +- src/vm/lua.h | 8 ++++---- src/vm/vm.h | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/beacon.cxx b/src/beacon.cxx index 564a7b2..9833495 100644 --- a/src/beacon.cxx +++ b/src/beacon.cxx @@ -16,7 +16,7 @@ // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // -#include "autoconfig.h" +#include "config.h" #include #include diff --git a/src/distribute.cxx b/src/distribute.cxx index ab4afa8..f9a3a9e 100644 --- a/src/distribute.cxx +++ b/src/distribute.cxx @@ -16,7 +16,7 @@ // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // -#include "autoconfig.h" +#include "config.h" #include #include diff --git a/src/misc/debug.cxx b/src/misc/debug.cxx index 28ade10..38d3076 100644 --- a/src/misc/debug.cxx +++ b/src/misc/debug.cxx @@ -16,7 +16,7 @@ // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // -#include "autoconfig.h" +#include "config.h" // XXX FIXME: Ugly #if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE) && defined(HAVE_BACKTRACE_SYMBOLS) diff --git a/src/misc/debug.h b/src/misc/debug.h index aaccbc0..30de559 100644 --- a/src/misc/debug.h +++ b/src/misc/debug.h @@ -19,7 +19,7 @@ #ifndef DEBUG_H #define DEBUG_H -#include "autoconfig.h" +#include "config.h" #include #include diff --git a/src/misc/uuid.cxx b/src/misc/uuid.cxx index 16f24f3..30eba9f 100644 --- a/src/misc/uuid.cxx +++ b/src/misc/uuid.cxx @@ -16,4 +16,4 @@ // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // -#include "autoconfig.h" +#include "config.h" diff --git a/src/misc/uuid.h b/src/misc/uuid.h index d606c34..d7a9441 100644 --- a/src/misc/uuid.h +++ b/src/misc/uuid.h @@ -19,6 +19,6 @@ #ifndef UUID_H #define UUID_H -#include "autoconfig.h" +#include "config.h" #endif // UUID_H diff --git a/src/vm/lua.cxx b/src/vm/lua.cxx index a0f595f..caeccc3 100644 --- a/src/vm/lua.cxx +++ b/src/vm/lua.cxx @@ -16,7 +16,7 @@ // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // -#include "autoconfig.h" +#include "config.h" #ifdef HAVE_LUA extern "C" { diff --git a/src/vm/lua.h b/src/vm/lua.h index 612d4fd..e89bc17 100644 --- a/src/vm/lua.h +++ b/src/vm/lua.h @@ -19,7 +19,7 @@ #ifndef LUA_H #define LUA_H -#include "autoconfig.h" +#include "config.h" extern "C" { #include "lua.h" @@ -35,11 +35,11 @@ namespace VM { public: Lua(void); ~Lua(void); - + bool run(void); - + protected: - + private: lua_State * state; }; diff --git a/src/vm/vm.h b/src/vm/vm.h index 6d976a8..805bf1a 100644 --- a/src/vm/vm.h +++ b/src/vm/vm.h @@ -19,7 +19,7 @@ #ifndef VM_H #define VM_H -#include "autoconfig.h" +#include "config.h" namespace VM { -- 2.11.4.GIT