From d7f2bc157cd6b645136b6e969e24fbcf93057078 Mon Sep 17 00:00:00 2001 From: helge Date: Sat, 27 Aug 2005 13:03:40 +0000 Subject: [PATCH] improved PCH support git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1093 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- .../GDLContentStore/GNUmakefile.preamble | 6 +++++ xmlrpc_call/ChangeLog | 4 ++++ xmlrpc_call/GNUmakefile | 2 ++ xmlrpc_call/HandleCredentialsClient.m | 2 +- xmlrpc_call/XmlRpcClientTool.m | 3 ++- xmlrpc_call/common.h | 23 +++++++++++++++++++ 6 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 xmlrpc_call/common.h diff --git a/sope-gdl1/GDLContentStore/GNUmakefile.preamble b/sope-gdl1/GDLContentStore/GNUmakefile.preamble index 5e5e6002..97578001 100644 --- a/sope-gdl1/GDLContentStore/GNUmakefile.preamble +++ b/sope-gdl1/GDLContentStore/GNUmakefile.preamble @@ -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 diff --git a/xmlrpc_call/ChangeLog b/xmlrpc_call/ChangeLog index 6f66edc1..bf4982d4 100644 --- a/xmlrpc_call/ChangeLog +++ b/xmlrpc_call/ChangeLog @@ -1,3 +1,7 @@ +2005-08-27 Helge Hess + + * added an own common.h file, use PCH + 2005-08-16 Helge Hess * GNUmakefile.preamble: added OSX framework compilation diff --git a/xmlrpc_call/GNUmakefile b/xmlrpc_call/GNUmakefile index 41872d8f..aab81cc8 100644 --- a/xmlrpc_call/GNUmakefile +++ b/xmlrpc_call/GNUmakefile @@ -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 \ diff --git a/xmlrpc_call/HandleCredentialsClient.m b/xmlrpc_call/HandleCredentialsClient.m index bf8ea0db..f40667ca 100644 --- a/xmlrpc_call/HandleCredentialsClient.m +++ b/xmlrpc_call/HandleCredentialsClient.m @@ -1,5 +1,5 @@ /* - Copyright (C) 2004 Helge Hess + Copyright (C) 2004-2005 Helge Hess This file is part of SOPE. diff --git a/xmlrpc_call/XmlRpcClientTool.m b/xmlrpc_call/XmlRpcClientTool.m index b428f7af..118125cb 100644 --- a/xmlrpc_call/XmlRpcClientTool.m +++ b/xmlrpc_call/XmlRpcClientTool.m @@ -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 +#include #include "common.h" #define EXIT_FAIL -1 diff --git a/xmlrpc_call/common.h b/xmlrpc_call/common.h new file mode 100644 index 00000000..91b2dfc0 --- /dev/null +++ b/xmlrpc_call/common.h @@ -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 +#include -- 2.39.5