]> err.no Git - sope/commitdiff
improved PCH support
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sat, 27 Aug 2005 13:03:40 +0000 (13:03 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sat, 27 Aug 2005 13:03:40 +0000 (13:03 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1093 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-gdl1/GDLContentStore/GNUmakefile.preamble
xmlrpc_call/ChangeLog
xmlrpc_call/GNUmakefile
xmlrpc_call/HandleCredentialsClient.m
xmlrpc_call/XmlRpcClientTool.m
xmlrpc_call/common.h [new file with mode: 0644]

index 5e5e6002d56037b43aa18352a785b697661dc56e..975780012b0068bda54257f7f1c03649d1db9b5f 100644 (file)
@@ -37,6 +37,12 @@ gcs_cat_TOOL_LIBS           += $(GCS_TOOL_LIBS)
 gcs_recreatequick_TOOL_LIBS += $(GCS_TOOL_LIBS)
 gcs_gensql_TOOL_LIBS        += $(GCS_TOOL_LIBS)
 
+gcs_ls_PCH_FILE            += common.h
+gcs_mkdir_PCH_FILE         += common.h
+gcs_cat_PCH_FILE           += common.h
+gcs_recreatequick_PCH_FILE += common.h
+gcs_gensql_PCH_FILE        += common.h
+
 
 # library/framework search pathes
 
index 6f66edc14320e626616dbfc72a2e68ca4973199b..bf4982d4ee40d5c074d698f5306391e36764de4b 100644 (file)
@@ -1,3 +1,7 @@
+2005-08-27  Helge Hess  <helge.hess@opengroupware.org>
+
+       * added an own common.h file, use PCH
+
 2005-08-16  Helge Hess  <helge.hess@opengroupware.org>
 
        * GNUmakefile.preamble: added OSX framework compilation
index 41872d8f2264d43e6713df06c18bb0a78f055fa5..aab81cc8ef26c3043218c837add5b8c01275eddd 100644 (file)
@@ -6,6 +6,8 @@ include ../Version
 
 TOOL_NAME = xmlrpc_call
 
+xmlrpc_call_PCH_FILE = common.h
+
 xmlrpc_call_OBJC_FILES += \
        xmlrpc_call.m           \
        XmlRpcClientTool.m      \
index bf8ea0db5f7b247c115ba4ee7203cebe8336cf11..f40667cadcfcd15b9ccb7cb5c035f99b26c537fe 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2004 Helge Hess
+  Copyright (C) 2004-2005 Helge Hess
 
   This file is part of SOPE.
 
index b428f7afd9e2019ec5f1474f8b823af4bd5e11c9..118125cbf25604507ebb2060d6ebc0c232b7f9bb 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2004 Helge Hess
+  Copyright (C) 2004-2005 Helge Hess
 
   This file is part of SOPE.
 
@@ -22,6 +22,7 @@
 #include "XmlRpcClientTool.h"
 #include "HandleCredentialsClient.h"
 #include <NGStreams/NGLocalSocketAddress.h>
+#include <NGExtensions/NSString+Ext.h>
 #include "common.h"
 
 #define EXIT_FAIL -1
diff --git a/xmlrpc_call/common.h b/xmlrpc_call/common.h
new file mode 100644 (file)
index 0000000..91b2dfc
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+  Copyright (C) 2005 Helge Hess
+
+  This file is part of SOPE.
+
+  SOPE is free software; you can redistribute it and/or modify it under
+  the terms of the GNU Lesser General Public License as published by the
+  Free Software Foundation; either version 2, or (at your option) any
+  later version.
+
+  SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or
+  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
+  License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with SOPE; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
+*/
+
+#import <Foundation/Foundation.h>
+#include <NGExtensions/NGExtensions.h>