From 378bd856100d534ab4ee328d95016379dc087cf9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 11 Feb 2015 02:23:41 +0100 Subject: [PATCH] Move rxml in libretro-SDK --- griffin/griffin.c | 2 +- libretro-sdk/formats/{ => xml}/Makefile | 2 +- libretro-sdk/formats/{ => xml}/rxml.c | 0 libretro-sdk/formats/{ => xml}/rxml_test.c | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename libretro-sdk/formats/{ => xml}/Makefile (75%) rename libretro-sdk/formats/{ => xml}/rxml.c (100%) rename libretro-sdk/formats/{ => xml}/rxml_test.c (100%) diff --git a/griffin/griffin.c b/griffin/griffin.c index 7b912efb03..30b1f14f13 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -778,7 +778,7 @@ XML #if 0 #ifndef HAVE_LIBXML2 #define RXML_LIBXML2_COMPAT -#include "../compat/rxml/rxml.c" +#include "../libretro-sdk/formats/xml/rxml.c" #endif #endif diff --git a/libretro-sdk/formats/Makefile b/libretro-sdk/formats/xml/Makefile similarity index 75% rename from libretro-sdk/formats/Makefile rename to libretro-sdk/formats/xml/Makefile index db66a6d8d5..3c2a6e1fcb 100644 --- a/libretro-sdk/formats/Makefile +++ b/libretro-sdk/formats/xml/Makefile @@ -3,7 +3,7 @@ TARGET := rxml SOURCES := $(wildcard *.c) OBJS := $(SOURCES:.c=.o) -CFLAGS += -DRXML_TEST -Wall -pedantic -std=gnu99 -O0 -g -I../include +CFLAGS += -DRXML_TEST -Wall -pedantic -std=gnu99 -O0 -g -I../../include all: $(TARGET) diff --git a/libretro-sdk/formats/rxml.c b/libretro-sdk/formats/xml/rxml.c similarity index 100% rename from libretro-sdk/formats/rxml.c rename to libretro-sdk/formats/xml/rxml.c diff --git a/libretro-sdk/formats/rxml_test.c b/libretro-sdk/formats/xml/rxml_test.c similarity index 100% rename from libretro-sdk/formats/rxml_test.c rename to libretro-sdk/formats/xml/rxml_test.c