From 41403fb3d6c03130c871b172550aed40c5ff5c4e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 19 Feb 2015 00:47:19 +0100 Subject: [PATCH] Rename libretrodb to libretro-db --- Makefile.common | 10 +++++----- database_info.h | 2 +- griffin/griffin.c | 10 +++++----- {libretrodb => libretro-db}/.ycm_extra_conf.py | 0 {libretrodb => libretro-db}/Makefile | 0 {libretrodb => libretro-db}/README.md | 0 {libretrodb => libretro-db}/bintree.c | 0 {libretrodb => libretro-db}/bintree.h | 0 {libretrodb => libretro-db}/check_style | 0 {libretrodb => libretro-db}/compat/fnmatch.h | 0 {libretrodb => libretro-db}/compat_fnmatch.c | 0 {libretrodb => libretro-db}/crustydiff | 0 {libretrodb => libretro-db}/dat_converter | 0 {libretrodb => libretro-db}/dat_converter.c | 0 {libretrodb => libretro-db}/dat_converter.lua | 0 {libretrodb => libretro-db}/db_parser.c | 0 {libretrodb => libretro-db}/libretrodb.c | 0 {libretrodb => libretro-db}/libretrodb.h | 0 {libretrodb => libretro-db}/libretrodb_endian.h | 0 {libretrodb => libretro-db}/libretrodb_tool.c | 0 {libretrodb => libretro-db}/lua_common.c | 0 {libretrodb => libretro-db}/lua_common.h | 0 {libretrodb => libretro-db}/lua_converter.c | 0 {libretrodb => libretro-db}/query.c | 0 {libretrodb => libretro-db}/query.h | 0 {libretrodb => libretro-db}/retro_endianness.h | 0 {libretrodb => libretro-db}/retro_inline.h | 0 {libretrodb => libretro-db}/rmsgpack.c | 0 {libretrodb => libretro-db}/rmsgpack.h | 0 {libretrodb => libretro-db}/rmsgpack_dom.c | 0 {libretrodb => libretro-db}/rmsgpack_dom.h | 0 {libretrodb => libretro-db}/rmsgpack_test.c | 0 {libretrodb => libretro-db}/testlib.c | 0 {libretrodb => libretro-db}/tests.lua | 0 {libretrodb => libretro-db}/uncrustify | 0 {libretrodb => libretro-db}/uncrustify.cfg | 0 menu/menu_database.h | 2 +- 37 files changed, 12 insertions(+), 12 deletions(-) rename {libretrodb => libretro-db}/.ycm_extra_conf.py (100%) rename {libretrodb => libretro-db}/Makefile (100%) rename {libretrodb => libretro-db}/README.md (100%) rename {libretrodb => libretro-db}/bintree.c (100%) rename {libretrodb => libretro-db}/bintree.h (100%) rename {libretrodb => libretro-db}/check_style (100%) rename {libretrodb => libretro-db}/compat/fnmatch.h (100%) rename {libretrodb => libretro-db}/compat_fnmatch.c (100%) rename {libretrodb => libretro-db}/crustydiff (100%) rename {libretrodb => libretro-db}/dat_converter (100%) rename {libretrodb => libretro-db}/dat_converter.c (100%) rename {libretrodb => libretro-db}/dat_converter.lua (100%) rename {libretrodb => libretro-db}/db_parser.c (100%) rename {libretrodb => libretro-db}/libretrodb.c (100%) rename {libretrodb => libretro-db}/libretrodb.h (100%) rename {libretrodb => libretro-db}/libretrodb_endian.h (100%) rename {libretrodb => libretro-db}/libretrodb_tool.c (100%) rename {libretrodb => libretro-db}/lua_common.c (100%) rename {libretrodb => libretro-db}/lua_common.h (100%) rename {libretrodb => libretro-db}/lua_converter.c (100%) rename {libretrodb => libretro-db}/query.c (100%) rename {libretrodb => libretro-db}/query.h (100%) rename {libretrodb => libretro-db}/retro_endianness.h (100%) rename {libretrodb => libretro-db}/retro_inline.h (100%) rename {libretrodb => libretro-db}/rmsgpack.c (100%) rename {libretrodb => libretro-db}/rmsgpack.h (100%) rename {libretrodb => libretro-db}/rmsgpack_dom.c (100%) rename {libretrodb => libretro-db}/rmsgpack_dom.h (100%) rename {libretrodb => libretro-db}/rmsgpack_test.c (100%) rename {libretrodb => libretro-db}/testlib.c (100%) rename {libretrodb => libretro-db}/tests.lua (100%) rename {libretrodb => libretro-db}/uncrustify (100%) rename {libretrodb => libretro-db}/uncrustify.cfg (100%) diff --git a/Makefile.common b/Makefile.common index 5e1236c0fc..74078a2177 100644 --- a/Makefile.common +++ b/Makefile.common @@ -170,11 +170,11 @@ OBJ += frontend/frontend.o \ # LibretroDB ifeq ($(HAVE_LIBRETRODB), 1) -OBJ += libretrodb/bintree.o \ - libretrodb/libretrodb.o \ - libretrodb/query.o \ - libretrodb/rmsgpack.o \ - libretrodb/rmsgpack_dom.o \ +OBJ += libretro-db/bintree.o \ + libretro-db/libretrodb.o \ + libretro-db/query.o \ + libretro-db/rmsgpack.o \ + libretro-db/rmsgpack_dom.o \ database_info.o endif diff --git a/database_info.h b/database_info.h index 405d19f0f8..341dbef339 100644 --- a/database_info.h +++ b/database_info.h @@ -20,7 +20,7 @@ #include #include -#include "libretrodb/libretrodb.h" +#include "libretro-db/libretrodb.h" #ifdef __cplusplus extern "C" { diff --git a/griffin/griffin.c b/griffin/griffin.c index ad4005eab7..dc0fbf97b1 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -799,11 +799,11 @@ XML LIBRETRODB ============================================================ */ #ifdef HAVE_LIBRETRODB -#include "../libretrodb/bintree.c" -#include "../libretrodb/libretrodb.c" -#include "../libretrodb/rmsgpack.c" -#include "../libretrodb/rmsgpack_dom.c" -#include "../libretrodb/query.c" +#include "../libretro-db/bintree.c" +#include "../libretro-db/libretrodb.c" +#include "../libretro-db/rmsgpack.c" +#include "../libretro-db/rmsgpack_dom.c" +#include "../libretro-db/query.c" #include "../database_info.c" #endif diff --git a/libretrodb/.ycm_extra_conf.py b/libretro-db/.ycm_extra_conf.py similarity index 100% rename from libretrodb/.ycm_extra_conf.py rename to libretro-db/.ycm_extra_conf.py diff --git a/libretrodb/Makefile b/libretro-db/Makefile similarity index 100% rename from libretrodb/Makefile rename to libretro-db/Makefile diff --git a/libretrodb/README.md b/libretro-db/README.md similarity index 100% rename from libretrodb/README.md rename to libretro-db/README.md diff --git a/libretrodb/bintree.c b/libretro-db/bintree.c similarity index 100% rename from libretrodb/bintree.c rename to libretro-db/bintree.c diff --git a/libretrodb/bintree.h b/libretro-db/bintree.h similarity index 100% rename from libretrodb/bintree.h rename to libretro-db/bintree.h diff --git a/libretrodb/check_style b/libretro-db/check_style similarity index 100% rename from libretrodb/check_style rename to libretro-db/check_style diff --git a/libretrodb/compat/fnmatch.h b/libretro-db/compat/fnmatch.h similarity index 100% rename from libretrodb/compat/fnmatch.h rename to libretro-db/compat/fnmatch.h diff --git a/libretrodb/compat_fnmatch.c b/libretro-db/compat_fnmatch.c similarity index 100% rename from libretrodb/compat_fnmatch.c rename to libretro-db/compat_fnmatch.c diff --git a/libretrodb/crustydiff b/libretro-db/crustydiff similarity index 100% rename from libretrodb/crustydiff rename to libretro-db/crustydiff diff --git a/libretrodb/dat_converter b/libretro-db/dat_converter similarity index 100% rename from libretrodb/dat_converter rename to libretro-db/dat_converter diff --git a/libretrodb/dat_converter.c b/libretro-db/dat_converter.c similarity index 100% rename from libretrodb/dat_converter.c rename to libretro-db/dat_converter.c diff --git a/libretrodb/dat_converter.lua b/libretro-db/dat_converter.lua similarity index 100% rename from libretrodb/dat_converter.lua rename to libretro-db/dat_converter.lua diff --git a/libretrodb/db_parser.c b/libretro-db/db_parser.c similarity index 100% rename from libretrodb/db_parser.c rename to libretro-db/db_parser.c diff --git a/libretrodb/libretrodb.c b/libretro-db/libretrodb.c similarity index 100% rename from libretrodb/libretrodb.c rename to libretro-db/libretrodb.c diff --git a/libretrodb/libretrodb.h b/libretro-db/libretrodb.h similarity index 100% rename from libretrodb/libretrodb.h rename to libretro-db/libretrodb.h diff --git a/libretrodb/libretrodb_endian.h b/libretro-db/libretrodb_endian.h similarity index 100% rename from libretrodb/libretrodb_endian.h rename to libretro-db/libretrodb_endian.h diff --git a/libretrodb/libretrodb_tool.c b/libretro-db/libretrodb_tool.c similarity index 100% rename from libretrodb/libretrodb_tool.c rename to libretro-db/libretrodb_tool.c diff --git a/libretrodb/lua_common.c b/libretro-db/lua_common.c similarity index 100% rename from libretrodb/lua_common.c rename to libretro-db/lua_common.c diff --git a/libretrodb/lua_common.h b/libretro-db/lua_common.h similarity index 100% rename from libretrodb/lua_common.h rename to libretro-db/lua_common.h diff --git a/libretrodb/lua_converter.c b/libretro-db/lua_converter.c similarity index 100% rename from libretrodb/lua_converter.c rename to libretro-db/lua_converter.c diff --git a/libretrodb/query.c b/libretro-db/query.c similarity index 100% rename from libretrodb/query.c rename to libretro-db/query.c diff --git a/libretrodb/query.h b/libretro-db/query.h similarity index 100% rename from libretrodb/query.h rename to libretro-db/query.h diff --git a/libretrodb/retro_endianness.h b/libretro-db/retro_endianness.h similarity index 100% rename from libretrodb/retro_endianness.h rename to libretro-db/retro_endianness.h diff --git a/libretrodb/retro_inline.h b/libretro-db/retro_inline.h similarity index 100% rename from libretrodb/retro_inline.h rename to libretro-db/retro_inline.h diff --git a/libretrodb/rmsgpack.c b/libretro-db/rmsgpack.c similarity index 100% rename from libretrodb/rmsgpack.c rename to libretro-db/rmsgpack.c diff --git a/libretrodb/rmsgpack.h b/libretro-db/rmsgpack.h similarity index 100% rename from libretrodb/rmsgpack.h rename to libretro-db/rmsgpack.h diff --git a/libretrodb/rmsgpack_dom.c b/libretro-db/rmsgpack_dom.c similarity index 100% rename from libretrodb/rmsgpack_dom.c rename to libretro-db/rmsgpack_dom.c diff --git a/libretrodb/rmsgpack_dom.h b/libretro-db/rmsgpack_dom.h similarity index 100% rename from libretrodb/rmsgpack_dom.h rename to libretro-db/rmsgpack_dom.h diff --git a/libretrodb/rmsgpack_test.c b/libretro-db/rmsgpack_test.c similarity index 100% rename from libretrodb/rmsgpack_test.c rename to libretro-db/rmsgpack_test.c diff --git a/libretrodb/testlib.c b/libretro-db/testlib.c similarity index 100% rename from libretrodb/testlib.c rename to libretro-db/testlib.c diff --git a/libretrodb/tests.lua b/libretro-db/tests.lua similarity index 100% rename from libretrodb/tests.lua rename to libretro-db/tests.lua diff --git a/libretrodb/uncrustify b/libretro-db/uncrustify similarity index 100% rename from libretrodb/uncrustify rename to libretro-db/uncrustify diff --git a/libretrodb/uncrustify.cfg b/libretro-db/uncrustify.cfg similarity index 100% rename from libretrodb/uncrustify.cfg rename to libretro-db/uncrustify.cfg diff --git a/menu/menu_database.h b/menu/menu_database.h index bd65b9958b..1d14bcff66 100644 --- a/menu/menu_database.h +++ b/menu/menu_database.h @@ -20,7 +20,7 @@ #include #include #ifdef HAVE_LIBRETRODB -#include "../libretrodb/libretrodb.h" +#include "../libretro-db/libretrodb.h" #endif #include "../database_info.h"