From 8213256921b4200d57ef761224f850b84abf07d3 Mon Sep 17 00:00:00 2001 From: miker Date: Tue, 12 Jun 2007 02:52:42 +0000 Subject: [PATCH] Patch from Dan Scott to fix up the OpenSRF build process in the new SVN repo: OpenSRF-svn-build.patch: this modifies the objson headers to specify that "utils.h" is actually found in "opensrf/utils.h". I beleive the ILS build was failing with the unqualified include because it didn't have access to the utils.h file that used to be kept around in a common TMP directory when OpenSRF and ILS were built simultaneously. git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@944 9efc2488-bf62-4759-914b-345cdb29e865 --- src/objson/json2xml.h | 2 +- src/objson/json_parser.h | 2 +- src/objson/object.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/objson/json2xml.h b/src/objson/json2xml.h index 47b5a4f..5998150 100644 --- a/src/objson/json2xml.h +++ b/src/objson/json2xml.h @@ -5,7 +5,7 @@ /* the JSON parser, so we can read the response we're XMLizing */ #include "object.h" #include "json_parser.h" -#include "utils.h" +#include "opensrf/utils.h" char* jsonObjectToXML(jsonObject*); diff --git a/src/objson/json_parser.h b/src/objson/json_parser.h index 32b6298..f6d9803 100644 --- a/src/objson/json_parser.h +++ b/src/objson/json_parser.h @@ -24,7 +24,7 @@ GNU General Public License for more details. #include #include "object.h" -#include "utils.h" +#include "opensrf/utils.h" diff --git a/src/objson/object.h b/src/objson/object.h index baa63e9..d782574 100644 --- a/src/objson/object.h +++ b/src/objson/object.h @@ -26,7 +26,7 @@ GNU General Public License for more details. #include #include -#include "utils.h" +#include "opensrf/utils.h" /* json object types */ #define JSON_HASH 0 -- 2.43.2