From d44f616de1f9721785a589b05b2fcd0d2749c156 Mon Sep 17 00:00:00 2001 From: znek Date: Sun, 7 Nov 2004 22:19:54 +0000 Subject: [PATCH] bumped all dylib versions to be in sync with the gs-make process. Provided a shell script in maintenance that will automatically keep them in sync because the manual process is too cumbersome and error prone. git-svn-id: http://svn.opengroupware.org/SOPE/trunk@351 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- SOPE.xcode/project.pbxproj | 18 +- maintenance/syncXcodeVersions.sh | 111 ++ sope-appserver/ChangeLog | 6 + sope-appserver/NGObjWeb/ChangeLog | 5 + sope-appserver/NGObjWeb/NGHttp/ChangeLog | 4 + .../NGObjWeb/NGHttp/NGHttp-Info.plist | 2 +- .../NGHttp/NGHttp.xcode/project.pbxproj | 2 +- .../NGObjWeb/NGObjWeb.xcode/project.pbxproj | 4 +- .../SoObjects/SoObjects.xcode/project.pbxproj | 2 +- .../NGObjWeb/WebDAV/WebDAV-Info.plist | 2 +- .../WebDAV/WebDAV.xcode/project.pbxproj | 2 +- sope-appserver/NGXmlRpc/ChangeLog | 9 + sope-appserver/NGXmlRpc/NGXmlRpc-Info.plist | 4 +- .../NGXmlRpc/NGXmlRpc.xcode/project.pbxproj | 1165 +++++++++++++++++ sope-appserver/NGXmlRpc/Version | 2 +- sope-appserver/NGXmlRpc/common.h | 7 +- sope-appserver/README-OSX.txt | 4 +- sope-appserver/WEExtensions/ChangeLog | 6 +- .../WEExtensions/WEExtensions-Info.plist | 2 +- .../WEExtensions.xcode/project.pbxproj | 2 +- sope-appserver/WOExtensions/ChangeLog | 4 + .../WOExtensions/WOExtensions-Info.plist | 2 +- .../WOExtensions.xcode/project.pbxproj | 2 +- .../sope-appserver.xcode/project.pbxproj | 68 + .../EOControl/EOControl.xcode/project.pbxproj | 2 +- .../NGExtensions.xcode/project.pbxproj | 2 +- .../NGStreams/NGStreams.xcode/project.pbxproj | 2 +- sope-core/sope-core.xcode/project.pbxproj | 8 +- .../GDLAccess/GDLAccess.xcode/project.pbxproj | 2 +- sope-ical/NGiCal/ChangeLog | 4 + sope-ical/NGiCal/NGiCal.xcode/project.pbxproj | 4 +- sope-ldap/NGLdap/NGLdap.xcode/project.pbxproj | 2 +- .../NGImap4/NGImap4.xcode/project.pbxproj | 2 +- sope-mime/NGMail/NGMail.xcode/project.pbxproj | 2 +- sope-mime/NGMime/NGMime.xcode/project.pbxproj | 2 +- sope-xml/DOM/DOM.xcode/project.pbxproj | 2 +- sope-xml/SaxObjC/ChangeLog | 4 + .../SaxObjC/SaxObjC.xcode/project.pbxproj | 3 +- sope-xml/XmlRpc/XmlRpc.xcode/project.pbxproj | 2 +- sopex/SOPEX/SOPEX.xcode/project.pbxproj | 7 +- .../WebObjects.xcode/project.pbxproj | 2 +- 41 files changed, 1436 insertions(+), 51 deletions(-) create mode 100755 maintenance/syncXcodeVersions.sh create mode 100644 sope-appserver/NGXmlRpc/NGXmlRpc.xcode/project.pbxproj diff --git a/SOPE.xcode/project.pbxproj b/SOPE.xcode/project.pbxproj index 3e51c176..041417c9 100644 --- a/SOPE.xcode/project.pbxproj +++ b/SOPE.xcode/project.pbxproj @@ -48,14 +48,6 @@ refType = 4; sourceTree = ""; }; - AD8BF0C607018DB100EC239A = { - fileEncoding = 5; - isa = PBXFileReference; - lastKnownFileType = text; - path = "TODO-4.3.txt"; - refType = 4; - sourceTree = ""; - }; AD8BF0C707018DF300EC239A = { isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; @@ -336,13 +328,21 @@ name = "Wrapper Contents (from sope-gdl1.xcode)"; targetProxy = AD8BF8670701AE0600EC239A; }; + ADDCEE81073ED2F500EAEC3C = { + fileEncoding = 5; + isa = PBXFileReference; + lastKnownFileType = text; + path = TODO.txt; + refType = 4; + sourceTree = ""; + }; ADDF476606DA572500C4E7F8 = { children = ( ADDF477506DA575700C4E7F8, AD8BF0C107018DB100EC239A, ADDF477106DA575700C4E7F8, ADDF477406DA575700C4E7F8, - AD8BF0C607018DB100EC239A, + ADDCEE81073ED2F500EAEC3C, ADDF477706DA575700C4E7F8, AD8BF0C207018DB100EC239A, ADDF477D06DA577400C4E7F8, diff --git a/maintenance/syncXcodeVersions.sh b/maintenance/syncXcodeVersions.sh new file mode 100755 index 00000000..9c9a8be7 --- /dev/null +++ b/maintenance/syncXcodeVersions.sh @@ -0,0 +1,111 @@ +#!/bin/sh +# syncXcodeVersions + +set_dylib_version() { + # $1 project dir + # $2 new version number + + PROJECT=$1/project.pbxproj + DYLIB_VERSION=$2 + + if [ "$DYLIB_VERSION" = "" ]; then + echo "DYLIB_VERSION MUST NOT be empty!" + exit 6 + fi + + # magic happens here + sed "s/\(^[ ]*DYLIB_CURRENT_VERSION =[ ]*\)\(.*\)\(;.*$\)/\1${DYLIB_VERSION}\3/" "${PROJECT}" > "${PROJECT}.new" + mv ${PROJECT}.new ${PROJECT} +} + +get_dylib_version () { + # $1 project dir + PROJECT=$1/project.pbxproj + if [ ! -f ${PROJECT} ]; then + echo "" + return + fi + + VERSION_NUM=$(sed -n 's/^[ ]*DYLIB_CURRENT_VERSION =[ ]*\(.*\);.*$/\1/p' "${PROJECT}" | sort | uniq) + if [ "${VERSION_NUM}" = "" ] ; then + echo "" + fi + echo "${VERSION_NUM}" +} + +get_make_version() { + # traverse path from PROJECT_ROOT down to least found Version file + # $1 project dir + PROJECT=$1 + + # defaults + MAJOR_VERSION=$GLOBAL_MAJOR_VERSION + MINOR_VERSION=$GLOBAL_MINOR_VERSION + + CURRENT_PATH="" + # split path + IFS=/ + for p in ${PROJECT} + do + CURRENT_PATH="${CURRENT_PATH}${p}/" + read_version_from_version_file "${CURRENT_PATH}Version" + done + echo "${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}" +} + +read_version_from_version_file() { + VERS_FILE=$1 + if [ ! -r "${VERS_FILE}" ]; then + return + fi + _MAJOR_VERSION=`sed -n 's/^MAJOR_VERSION=\(.*\)/\1/p' "${VERS_FILE}"` + if [ "${_MAJOR_VERSION}" != "" ]; then + MAJOR_VERSION=${_MAJOR_VERSION} + fi + _MINOR_VERSION=`sed -n 's/^MINOR_VERSION=\(.*\)/\1/p' "${VERS_FILE}"` + if [ "${_MINOR_VERSION}" != "" ]; then + MINOR_VERSION=${_MINOR_VERSION} + fi + # this is always set + SUBMINOR_VERSION=`sed -n 's/^SUBMINOR_VERSION.*=\(.*\)/\1/p' "${VERS_FILE}"` +# echo "${VERS_FILE} -> ${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}" +} + + +update_project_if_necessary() { + # $1 project dir + + PROJECT=$1 + PROJECT_NAME=${PROJECT##*/} + PROJECT_NAME=${PROJECT_NAME%%.xcode} + + PROJECT_DYLIB_VERSION=`get_dylib_version "${PROJECT}"` + if [ "${PROJECT_DYLIB_VERSION}" != "" ]; then + PROJECT_MAKE_VERSION=`get_make_version "${PROJECT}"` + if [ "${PROJECT_DYLIB_VERSION}" != "${PROJECT_MAKE_VERSION}" ]; then + echo "Updating $PROJECT_NAME: ${PROJECT_DYLIB_VERSION} -> ${PROJECT_MAKE_VERSION}" + set_dylib_version "${PROJECT}" "${PROJECT_MAKE_VERSION}" + fi + fi +} + + +## +## MAIN +## + +PROJECT_ROOT=. + +# source in MAJOR_VERSION and MINOR_VERSION +source ${PROJECT_ROOT}/Version +GLOBAL_MAJOR_VERSION=$MAJOR_VERSION +GLOBAL_MINOR_VERSION=$MINOR_VERSION + +PROJECTS=`find ${PROJECT_ROOT} -type d -name "*.xcode"` +for PROJECT in $PROJECTS +do + # skip Recycler contents + if [ "${PROJECT##*Recycler*}" != "" ]; then + update_project_if_necessary "${PROJECT}" + fi +done diff --git a/sope-appserver/ChangeLog b/sope-appserver/ChangeLog index 0dc20ebf..76ac4ce5 100644 --- a/sope-appserver/ChangeLog +++ b/sope-appserver/ChangeLog @@ -1,3 +1,9 @@ +2004-11-07 Marcus Mueller + + * sope-appserver.xcode: added NGXmlRpc product + + * README-OSX.txt: updated prebinding information + 2004-11-02 Marcus Mueller * sope-appserver.xcode: adjusted the build process to new NGObjWeb diff --git a/sope-appserver/NGObjWeb/ChangeLog b/sope-appserver/NGObjWeb/ChangeLog index bb11c6ed..ec3e38b7 100644 --- a/sope-appserver/NGObjWeb/ChangeLog +++ b/sope-appserver/NGObjWeb/ChangeLog @@ -4,6 +4,11 @@ already public in the GNUmakefiles but declared as project headers in Xcode - fixed this incompatibility. + * NGObjWeb.xcode: fixed incorrect SOPE_MINOR_VERSION + + * NGObjWeb.xcode, WebDAV/WebDAV.xcode, SoObjects/SoObjects.xcode: + bumped the framework version + 2004-11-04 Helge Hess * use Version file for install directory location diff --git a/sope-appserver/NGObjWeb/NGHttp/ChangeLog b/sope-appserver/NGObjWeb/NGHttp/ChangeLog index 01dcb7df..3539d2f8 100644 --- a/sope-appserver/NGObjWeb/NGHttp/ChangeLog +++ b/sope-appserver/NGObjWeb/NGHttp/ChangeLog @@ -1,3 +1,7 @@ +2004-11-07 Marcus Mueller + + * NGHttp.xcode: bumped the framework version + 2004-10-10 Helge Hess * NGUrlFormCoder.m: print a warning if the deprecated diff --git a/sope-appserver/NGObjWeb/NGHttp/NGHttp-Info.plist b/sope-appserver/NGObjWeb/NGHttp/NGHttp-Info.plist index d9f48b17..8a7ebcec 100644 --- a/sope-appserver/NGObjWeb/NGHttp/NGHttp-Info.plist +++ b/sope-appserver/NGObjWeb/NGHttp/NGHttp-Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 4.2 + 4.5 diff --git a/sope-appserver/NGObjWeb/NGHttp/NGHttp.xcode/project.pbxproj b/sope-appserver/NGObjWeb/NGHttp/NGHttp.xcode/project.pbxproj index e43ea09b..02bf6f06 100644 --- a/sope-appserver/NGObjWeb/NGHttp/NGHttp.xcode/project.pbxproj +++ b/sope-appserver/NGObjWeb/NGHttp/NGHttp.xcode/project.pbxproj @@ -464,7 +464,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.41; + DYLIB_CURRENT_VERSION = 4.5.83; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; diff --git a/sope-appserver/NGObjWeb/NGObjWeb.xcode/project.pbxproj b/sope-appserver/NGObjWeb/NGObjWeb.xcode/project.pbxproj index e344bc4f..bed2aa6b 100644 --- a/sope-appserver/NGObjWeb/NGObjWeb.xcode/project.pbxproj +++ b/sope-appserver/NGObjWeb/NGObjWeb.xcode/project.pbxproj @@ -1655,7 +1655,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.73; + DYLIB_CURRENT_VERSION = 4.5.83; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -1666,7 +1666,7 @@ HEADER_SEARCH_PATHS = ..; INFOPLIST_FILE = "NGObjWeb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - OTHER_CFLAGS = "-DSOPE_MAJOR_VERSION=4 -DSOPE_MINOR_VERSION=3"; + OTHER_CFLAGS = "-DSOPE_MAJOR_VERSION=4 -DSOPE_MINOR_VERSION=5"; OTHER_LDFLAGS = "-seg1addr 0xC4900000 -headerpad_max_install_names"; OTHER_REZFLAGS = ""; PRODUCT_NAME = NGObjWeb; diff --git a/sope-appserver/NGObjWeb/SoObjects/SoObjects.xcode/project.pbxproj b/sope-appserver/NGObjWeb/SoObjects/SoObjects.xcode/project.pbxproj index 3cd802c3..c1ea5287 100644 --- a/sope-appserver/NGObjWeb/SoObjects/SoObjects.xcode/project.pbxproj +++ b/sope-appserver/NGObjWeb/SoObjects/SoObjects.xcode/project.pbxproj @@ -289,7 +289,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.66; + DYLIB_CURRENT_VERSION = 4.5.83; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = NO; diff --git a/sope-appserver/NGObjWeb/WebDAV/WebDAV-Info.plist b/sope-appserver/NGObjWeb/WebDAV/WebDAV-Info.plist index 8e1e6d21..dad5c8ea 100644 --- a/sope-appserver/NGObjWeb/WebDAV/WebDAV-Info.plist +++ b/sope-appserver/NGObjWeb/WebDAV/WebDAV-Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 4.2 + 4.5 diff --git a/sope-appserver/NGObjWeb/WebDAV/WebDAV.xcode/project.pbxproj b/sope-appserver/NGObjWeb/WebDAV/WebDAV.xcode/project.pbxproj index 93c14df2..d1886e92 100644 --- a/sope-appserver/NGObjWeb/WebDAV/WebDAV.xcode/project.pbxproj +++ b/sope-appserver/NGObjWeb/WebDAV/WebDAV.xcode/project.pbxproj @@ -229,7 +229,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.41; + DYLIB_CURRENT_VERSION = 4.5.83; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = NO; diff --git a/sope-appserver/NGXmlRpc/ChangeLog b/sope-appserver/NGXmlRpc/ChangeLog index e7c38ef7..9e1cad18 100644 --- a/sope-appserver/NGXmlRpc/ChangeLog +++ b/sope-appserver/NGXmlRpc/ChangeLog @@ -1,3 +1,12 @@ +2004-11-07 Marcus Mueller + + * v4.5.8 + + * NGXmlRpc.xcode: new Xcode project + + * common.h: fixed for multiple inclusion during Xcode + build (common.h is the prefix header) + 2004-09-14 Helge Hess * moved xmlrpc_call tool to own top-level SOPE dir (xmlrpc_call) diff --git a/sope-appserver/NGXmlRpc/NGXmlRpc-Info.plist b/sope-appserver/NGXmlRpc/NGXmlRpc-Info.plist index 59dd833f..e7e91a3c 100644 --- a/sope-appserver/NGXmlRpc/NGXmlRpc-Info.plist +++ b/sope-appserver/NGXmlRpc/NGXmlRpc-Info.plist @@ -9,7 +9,7 @@ CFBundleGetInfoString CFBundleIdentifier - com.skyrix.SOPE.NGXmlRpc + org.OpenGroupware.SOPE.appserver.NGXmlRpc CFBundleInfoDictionaryVersion 6.0 CFBundlePackageType @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 4.2 + 4.5 diff --git a/sope-appserver/NGXmlRpc/NGXmlRpc.xcode/project.pbxproj b/sope-appserver/NGXmlRpc/NGXmlRpc.xcode/project.pbxproj new file mode 100644 index 00000000..f2d5b3a3 --- /dev/null +++ b/sope-appserver/NGXmlRpc/NGXmlRpc.xcode/project.pbxproj @@ -0,0 +1,1165 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 39; + objects = { + AD013C1806E20C17000910D8 = { + children = ( + ADBFE6AC073EA42B00E7F7CA, + ADBFE6AD073EA42B00E7F7CA, + ADBFE6AE073EA42B00E7F7CA, + ADBFE6AF073EA42B00E7F7CA, + ADBFE6B0073EA42B00E7F7CA, + ADBFE6B1073EA42B00E7F7CA, + ADBFE6B2073EA42B00E7F7CA, + ADBFE6B3073EA42B00E7F7CA, + ADBFE6B4073EA42B00E7F7CA, + ADBFE6B5073EA42B00E7F7CA, + ADBFE6B6073EA42B00E7F7CA, + ADBFE6B7073EA42B00E7F7CA, + ); + isa = PBXGroup; + name = Headers; + refType = 4; + sourceTree = ""; + }; + AD013C1906E20D18000910D8 = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = NGHttp.framework; + path = /Library/Frameworks/NGHttp.framework; + refType = 0; + sourceTree = ""; + }; + AD013C1E06E20D18000910D8 = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = NGMime.framework; + path = /Library/Frameworks/NGMime.framework; + refType = 0; + sourceTree = ""; + }; + AD013C2006E20D18000910D8 = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = NGObjWeb.framework; + path = /Library/Frameworks/NGObjWeb.framework; + refType = 0; + sourceTree = ""; + }; + AD013C2106E20D18000910D8 = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = NGStreams.framework; + path = /Library/Frameworks/NGStreams.framework; + refType = 0; + sourceTree = ""; + }; + AD013C2606E20D19000910D8 = { + fileRef = AD013C1906E20D18000910D8; + isa = PBXBuildFile; + settings = { + }; + }; + AD013C2B06E20D19000910D8 = { + fileRef = AD013C1E06E20D18000910D8; + isa = PBXBuildFile; + settings = { + }; + }; + AD013C2D06E20D19000910D8 = { + fileRef = AD013C2006E20D18000910D8; + isa = PBXBuildFile; + settings = { + }; + }; + AD013C2E06E20D19000910D8 = { + fileRef = AD013C2106E20D18000910D8; + isa = PBXBuildFile; + settings = { + }; + }; + AD013C4706E20DAA000910D8 = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = LDAP.framework; + path = /System/Library/Frameworks/LDAP.framework; + refType = 0; + sourceTree = ""; + }; + AD013C9E06E20E99000910D8 = { + children = ( + ADD6610D06DA3D1F007161CA, + AD0142CE06E21A3D000910D8, + AD013C2106E20D18000910D8, + ); + isa = PBXGroup; + name = "sope-core"; + refType = 4; + sourceTree = ""; + }; + AD013DD406E20EBA000910D8 = { + children = ( + AD013C2006E20D18000910D8, + AD013C1906E20D18000910D8, + ADBFE89B073EA72000E7F7CA, + ADBFE8EB073EA76600E7F7CA, + ); + isa = PBXGroup; + name = "sope-appserver"; + refType = 4; + sourceTree = ""; + }; + AD01401C06E20F1D000910D8 = { + children = ( + AD013C1E06E20D18000910D8, + ADBFE90C073EA79600E7F7CA, + ADBFE89A073EA72000E7F7CA, + ); + isa = PBXGroup; + name = "sope-mime"; + refType = 4; + sourceTree = ""; + }; + AD0142CE06E21A3D000910D8 = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = NGExtensions.framework; + path = /Library/Frameworks/NGExtensions.framework; + refType = 0; + sourceTree = ""; + }; + AD0142CF06E21A3D000910D8 = { + fileRef = AD0142CE06E21A3D000910D8; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6AB073EA3EA00E7F7CA = { + explicitFileType = sourcecode.make; + fileEncoding = 5; + indentWidth = 8; + isa = PBXFileReference; + path = fhs.make; + refType = 4; + sourceTree = ""; + tabWidth = 8; + }; + ADBFE6AC073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = NGAsyncResultProxy.h; + refType = 4; + sourceTree = ""; + }; + ADBFE6AD073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = NGXmlRpc.h; + refType = 4; + sourceTree = ""; + }; + ADBFE6AE073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = NGXmlRpcAction.h; + refType = 4; + sourceTree = ""; + }; + ADBFE6AF073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = NGXmlRpcClient.h; + refType = 4; + sourceTree = ""; + }; + ADBFE6B0073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = NGXmlRpcInvocation.h; + refType = 4; + sourceTree = ""; + }; + ADBFE6B1073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = NGXmlRpcMethodSignature.h; + refType = 4; + sourceTree = ""; + }; + ADBFE6B2073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = NGXmlRpcRequestHandler.h; + refType = 4; + sourceTree = ""; + }; + ADBFE6B3073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = "NSObject+Reflection.h"; + refType = 4; + sourceTree = ""; + }; + ADBFE6B4073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = "WODirectAction+XmlRpc.h"; + refType = 4; + sourceTree = ""; + }; + ADBFE6B5073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = "WODirectAction+XmlRpcIntrospection.h"; + refType = 4; + sourceTree = ""; + }; + ADBFE6B6073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = "XmlRpcMethodCall+WO.h"; + refType = 4; + sourceTree = ""; + }; + ADBFE6B7073EA42B00E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = "XmlRpcMethodResponse+WO.h"; + refType = 4; + sourceTree = ""; + }; + ADBFE6B8073EA42B00E7F7CA = { + fileRef = ADBFE6AC073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6B9073EA42B00E7F7CA = { + fileRef = ADBFE6AD073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6BA073EA42B00E7F7CA = { + fileRef = ADBFE6AE073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6BB073EA42B00E7F7CA = { + fileRef = ADBFE6AF073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6BC073EA42B00E7F7CA = { + fileRef = ADBFE6B0073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6BD073EA42B00E7F7CA = { + fileRef = ADBFE6B1073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6BE073EA42B00E7F7CA = { + fileRef = ADBFE6B2073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6BF073EA42B00E7F7CA = { + fileRef = ADBFE6B3073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6C0073EA42B00E7F7CA = { + fileRef = ADBFE6B4073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6C1073EA42B00E7F7CA = { + fileRef = ADBFE6B5073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6C2073EA42B00E7F7CA = { + fileRef = ADBFE6B6073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6C3073EA42B00E7F7CA = { + fileRef = ADBFE6B7073EA42B00E7F7CA; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + ADBFE6C4073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "EOFetchSpecification+XmlRpcCoding.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6C5073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "EOKeyGlobalID+XmlRpcCoding.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6C6073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "EONull+XmlRpcCoding.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6C7073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "EOQualifier+XmlRpcCoding.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6C8073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "EOSortOrdering+XmlRpcCoding.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6C9073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = NGAsyncResultProxy.m; + refType = 4; + sourceTree = ""; + }; + ADBFE6CA073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = NGXmlRpcAction.m; + refType = 4; + sourceTree = ""; + }; + ADBFE6CB073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "NGXmlRpcAction+Registry.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6CC073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = NGXmlRpcClient.m; + refType = 4; + sourceTree = ""; + }; + ADBFE6CD073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = NGXmlRpcInvocation.m; + refType = 4; + sourceTree = ""; + }; + ADBFE6CE073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = NGXmlRpcMethodSignature.m; + refType = 4; + sourceTree = ""; + }; + ADBFE6CF073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = NGXmlRpcRequestHandler.m; + refType = 4; + sourceTree = ""; + }; + ADBFE6D0073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "NSObject+Reflection.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6D1073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "WODirectAction+XmlRpc.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6D2073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "WODirectAction+XmlRpcIntrospection.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6D3073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "WOMessage+XmlRpcCoding.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6D4073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "WORequest+XmlRpcCoding.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6D5073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "WOResponse+XmlRpcCoding.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6D6073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "XmlRpcMethodCall+WO.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6D7073EA44000E7F7CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = "XmlRpcMethodResponse+WO.m"; + refType = 4; + sourceTree = ""; + }; + ADBFE6D8073EA44000E7F7CA = { + fileRef = ADBFE6C4073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6D9073EA44000E7F7CA = { + fileRef = ADBFE6C5073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6DA073EA44000E7F7CA = { + fileRef = ADBFE6C6073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6DB073EA44000E7F7CA = { + fileRef = ADBFE6C7073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6DC073EA44000E7F7CA = { + fileRef = ADBFE6C8073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6DD073EA44000E7F7CA = { + fileRef = ADBFE6C9073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6DE073EA44000E7F7CA = { + fileRef = ADBFE6CA073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6DF073EA44000E7F7CA = { + fileRef = ADBFE6CB073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E0073EA44000E7F7CA = { + fileRef = ADBFE6CC073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E1073EA44000E7F7CA = { + fileRef = ADBFE6CD073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E2073EA44000E7F7CA = { + fileRef = ADBFE6CE073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E3073EA44000E7F7CA = { + fileRef = ADBFE6CF073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E4073EA44000E7F7CA = { + fileRef = ADBFE6D0073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E5073EA44000E7F7CA = { + fileRef = ADBFE6D1073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E6073EA44000E7F7CA = { + fileRef = ADBFE6D2073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E7073EA44000E7F7CA = { + fileRef = ADBFE6D3073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E8073EA44000E7F7CA = { + fileRef = ADBFE6D4073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6E9073EA44000E7F7CA = { + fileRef = ADBFE6D5073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6EA073EA44000E7F7CA = { + fileRef = ADBFE6D6073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE6EB073EA44000E7F7CA = { + fileRef = ADBFE6D7073EA44000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE89A073EA72000E7F7CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = NGImap4.framework; + path = /Library/Frameworks/NGImap4.framework; + refType = 0; + sourceTree = ""; + }; + ADBFE89B073EA72000E7F7CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = WebDAV.framework; + path = /Local/BuildArea/WebDAV.framework; + refType = 0; + sourceTree = ""; + }; + ADBFE89C073EA72000E7F7CA = { + fileRef = ADBFE89A073EA72000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE89D073EA72000E7F7CA = { + fileRef = ADBFE89B073EA72000E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE8EB073EA76600E7F7CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = SoObjects.framework; + path = /Library/Frameworks/SoObjects.framework; + refType = 0; + sourceTree = ""; + }; + ADBFE8EC073EA76600E7F7CA = { + fileRef = ADBFE8EB073EA76600E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADBFE90C073EA79600E7F7CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = NGMail.framework; + path = /Library/Frameworks/NGMail.framework; + refType = 0; + sourceTree = ""; + }; + ADBFE90D073EA79600E7F7CA = { + fileRef = ADBFE90C073EA79600E7F7CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADD65B6606DA32D6007161CA = { + children = ( + ADD65C6F06DA343C007161CA, + ADD65C8B06DA343C007161CA, + ADD65C8E06DA344C007161CA, + AD013C1806E20C17000910D8, + ADD65C9406DA34FF007161CA, + ADD65D5D06DA37C7007161CA, + ADD65D5906DA372D007161CA, + ADD65F7306DA3C02007161CA, + ); + isa = PBXGroup; + refType = 4; + sourceTree = ""; + }; + ADD65B6806DA32D6007161CA = { + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = "APPLE_RUNTIME=1 NeXT_Foundation_LIBRARY=1 COCOA_Foundation_LIBRARY=1 NeXT_RUNTIME=1 COMPILE_AS_FRAMEWORK=1 DEBUG=1"; + }; + isa = PBXBuildStyle; + name = Development; + }; + ADD65B6906DA32D6007161CA = { + buildSettings = { + COPY_PHASE_STRIP = YES; + DEPLOYMENT_LOCATION = NO; + DEPLOYMENT_POSTPROCESSING = YES; + DSTROOT = /; + DYLIB_INSTALL_NAME_BASE = "@executable_path/../Frameworks/"; + FRAMEWORK_SEARCH_PATHS = "$(USER_LIBRARY_DIR)/EmbeddedFrameworks"; + GCC_ENABLE_FIX_AND_CONTINUE = NO; + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_OPTIMIZATION_LEVEL = 3; + GCC_PREPROCESSOR_DEFINITIONS = "APPLE_RUNTIME=1 NeXT_Foundation_LIBRARY=1 COCOA_Foundation_LIBRARY=1 NeXT_RUNTIME=1 COMPILE_AS_FRAMEWORK=1"; + SKIP_INSTALL = YES; + SYMROOT = "$(USER_LIBRARY_DIR)/EmbeddedFrameworks"; + TEMP_DIR = "$(SYMROOT)/$(PROJECT_NAME).build"; + UNSTRIPPED_PRODUCT = NO; + ZERO_LINK = NO; + }; + isa = PBXBuildStyle; + name = Wrapper; + }; + ADD65B6A06DA32D6007161CA = { + buildSettings = { + }; + buildStyles = ( + ADD65B6806DA32D6007161CA, + ADD65B6906DA32D6007161CA, + ); + hasScannedForEncodings = 0; + isa = PBXProject; + mainGroup = ADD65B6606DA32D6007161CA; + productRefGroup = ADD65D5906DA372D007161CA; + projectDirPath = ""; + targets = ( + ADD65D5706DA372D007161CA, + ); + }; + ADD65C6F06DA343C007161CA = { + fileEncoding = 5; + indentWidth = 8; + isa = PBXFileReference; + lastKnownFileType = text; + path = ChangeLog; + refType = 4; + sourceTree = ""; + tabWidth = 8; + usesTabs = 1; + }; + ADD65C7006DA343C007161CA = { + fileEncoding = 5; + indentWidth = 2; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = common.h; + refType = 4; + sourceTree = ""; + }; + ADD65C7406DA343C007161CA = { + explicitFileType = sourcecode.make; + fileEncoding = 5; + indentWidth = 8; + isa = PBXFileReference; + path = GNUmakefile; + refType = 4; + sourceTree = ""; + tabWidth = 8; + }; + ADD65C7506DA343C007161CA = { + explicitFileType = sourcecode.make; + fileEncoding = 5; + indentWidth = 8; + isa = PBXFileReference; + path = GNUmakefile.preamble; + refType = 4; + sourceTree = ""; + tabWidth = 8; + }; + ADD65C8B06DA343C007161CA = { + explicitFileType = sourcecode.make; + fileEncoding = 5; + indentWidth = 8; + isa = PBXFileReference; + path = Version; + refType = 4; + sourceTree = ""; + tabWidth = 8; + }; + ADD65C8E06DA344C007161CA = { + children = ( + ADD65C7406DA343C007161CA, + ADD65C7506DA343C007161CA, + ADBFE6AB073EA3EA00E7F7CA, + ); + isa = PBXGroup; + name = Makefiles; + refType = 4; + sourceTree = ""; + }; + ADD65C9406DA34FF007161CA = { + children = ( + ADD65C7006DA343C007161CA, + ADBFE6C4073EA44000E7F7CA, + ADBFE6C5073EA44000E7F7CA, + ADBFE6C6073EA44000E7F7CA, + ADBFE6C7073EA44000E7F7CA, + ADBFE6C8073EA44000E7F7CA, + ADBFE6C9073EA44000E7F7CA, + ADBFE6CA073EA44000E7F7CA, + ADBFE6CB073EA44000E7F7CA, + ADBFE6CC073EA44000E7F7CA, + ADBFE6CD073EA44000E7F7CA, + ADBFE6CE073EA44000E7F7CA, + ADBFE6CF073EA44000E7F7CA, + ADBFE6D0073EA44000E7F7CA, + ADBFE6D1073EA44000E7F7CA, + ADBFE6D2073EA44000E7F7CA, + ADBFE6D3073EA44000E7F7CA, + ADBFE6D4073EA44000E7F7CA, + ADBFE6D5073EA44000E7F7CA, + ADBFE6D6073EA44000E7F7CA, + ADBFE6D7073EA44000E7F7CA, + ); + isa = PBXGroup; + name = Classes; + refType = 4; + sourceTree = ""; + }; + ADD65D5306DA372D007161CA = { + buildActionMask = 2147483647; + files = ( + ADD65F6406DA3AF6007161CA, + ADBFE6B8073EA42B00E7F7CA, + ADBFE6B9073EA42B00E7F7CA, + ADBFE6BA073EA42B00E7F7CA, + ADBFE6BB073EA42B00E7F7CA, + ADBFE6BC073EA42B00E7F7CA, + ADBFE6BD073EA42B00E7F7CA, + ADBFE6BE073EA42B00E7F7CA, + ADBFE6BF073EA42B00E7F7CA, + ADBFE6C0073EA42B00E7F7CA, + ADBFE6C1073EA42B00E7F7CA, + ADBFE6C2073EA42B00E7F7CA, + ADBFE6C3073EA42B00E7F7CA, + ); + isa = PBXHeadersBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + ADD65D5406DA372D007161CA = { + buildActionMask = 2147483647; + files = ( + ADD65F6806DA3B38007161CA, + ADD65F6906DA3B38007161CA, + ); + isa = PBXResourcesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + ADD65D5506DA372D007161CA = { + buildActionMask = 2147483647; + files = ( + ADBFE6D8073EA44000E7F7CA, + ADBFE6D9073EA44000E7F7CA, + ADBFE6DA073EA44000E7F7CA, + ADBFE6DB073EA44000E7F7CA, + ADBFE6DC073EA44000E7F7CA, + ADBFE6DD073EA44000E7F7CA, + ADBFE6DE073EA44000E7F7CA, + ADBFE6DF073EA44000E7F7CA, + ADBFE6E0073EA44000E7F7CA, + ADBFE6E1073EA44000E7F7CA, + ADBFE6E2073EA44000E7F7CA, + ADBFE6E3073EA44000E7F7CA, + ADBFE6E4073EA44000E7F7CA, + ADBFE6E5073EA44000E7F7CA, + ADBFE6E6073EA44000E7F7CA, + ADBFE6E7073EA44000E7F7CA, + ADBFE6E8073EA44000E7F7CA, + ADBFE6E9073EA44000E7F7CA, + ADBFE6EA073EA44000E7F7CA, + ADBFE6EB073EA44000E7F7CA, + ); + isa = PBXSourcesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + ADD65D5606DA372D007161CA = { + buildActionMask = 2147483647; + files = ( + ADD65F7506DA3C51007161CA, + ADD6610E06DA3D1F007161CA, + ADD65FE906DA3CDE007161CA, + ADD65FE806DA3CDE007161CA, + ADD65FEA06DA3CDE007161CA, + AD013C2606E20D19000910D8, + AD013C2B06E20D19000910D8, + AD013C2D06E20D19000910D8, + AD013C2E06E20D19000910D8, + AD0142CF06E21A3D000910D8, + ADBFE89C073EA72000E7F7CA, + ADBFE89D073EA72000E7F7CA, + ADBFE8EC073EA76600E7F7CA, + ADBFE90D073EA79600E7F7CA, + ); + isa = PBXFrameworksBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + ADD65D5706DA372D007161CA = { + buildPhases = ( + ADD65D5306DA372D007161CA, + ADD65D5406DA372D007161CA, + ADD65D5506DA372D007161CA, + ADD65D5606DA372D007161CA, + ); + buildRules = ( + ); + buildSettings = { + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 4.5.8; + FRAMEWORK_SEARCH_PATHS = "\"$(LOCAL_LIBRARY_DIR)/Frameworks\" /Local/BuildArea"; + FRAMEWORK_VERSION = A; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = common.h; + GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO; + GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO; + GCC_WARN_UNKNOWN_PRAGMAS = NO; + INFOPLIST_FILE = "NGXmlRpc-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + OTHER_CFLAGS = ""; + OTHER_LDFLAGS = "-seg1addr 0xC3D00000 -headerpad_max_install_names"; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = NGXmlRpc; + SECTORDER_FLAGS = ""; + WARNING_CFLAGS = "-Wmost"; + }; + dependencies = ( + ); + isa = PBXNativeTarget; + name = NGXmlRpc; + productName = NGXmlRpc; + productReference = ADD65D5806DA372D007161CA; + productSettingsXML = " + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + NGXmlRpc + CFBundleIdentifier + org.OpenGroupware.SOPE.NGXmlRpc + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + FMWK + CFBundleSignature + ???? + CFBundleVersion + 1.0 + + +"; + productType = "com.apple.product-type.framework"; + }; + ADD65D5806DA372D007161CA = { + explicitFileType = wrapper.framework; + includeInIndex = 0; + isa = PBXFileReference; + path = NGXmlRpc.framework; + refType = 3; + sourceTree = BUILT_PRODUCTS_DIR; + }; + ADD65D5906DA372D007161CA = { + children = ( + ADD65D5806DA372D007161CA, + ); + isa = PBXGroup; + name = Products; + refType = 4; + sourceTree = ""; + }; + ADD65D5A06DA372D007161CA = { + isa = PBXFileReference; + lastKnownFileType = text.xml; + path = "NGXmlRpc-Info.plist"; + refType = 4; + sourceTree = ""; + }; + ADD65D5D06DA37C7007161CA = { + children = ( + ADD65D5A06DA372D007161CA, + ); + isa = PBXGroup; + name = Resources; + refType = 4; + sourceTree = ""; + }; + ADD65F6406DA3AF6007161CA = { + fileRef = ADD65C7006DA343C007161CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADD65F6806DA3B38007161CA = { + fileRef = ADD65C6F06DA343C007161CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADD65F6906DA3B38007161CA = { + fileRef = ADD65C8B06DA343C007161CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADD65F7306DA3C02007161CA = { + children = ( + ADD65F7406DA3C51007161CA, + AD013C4706E20DAA000910D8, + ADD65FE306DA3CA7007161CA, + ADD6603106DA3CE2007161CA, + AD013C9E06E20E99000910D8, + AD013DD406E20EBA000910D8, + AD01401C06E20F1D000910D8, + ); + isa = PBXGroup; + name = "Linked Frameworks"; + refType = 4; + sourceTree = ""; + }; + ADD65F7406DA3C51007161CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = Foundation.framework; + path = /System/Library/Frameworks/Foundation.framework; + refType = 0; + sourceTree = ""; + }; + ADD65F7506DA3C51007161CA = { + fileRef = ADD65F7406DA3C51007161CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADD65FE306DA3CA7007161CA = { + isa = PBXFileReference; + lastKnownFileType = "compiled.mach-o.dylib"; + name = libz.dylib; + path = /usr/lib/libz.dylib; + refType = 0; + sourceTree = ""; + }; + ADD65FE506DA3CDE007161CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = DOM.framework; + path = /Library/Frameworks/DOM.framework; + refType = 0; + sourceTree = ""; + }; + ADD65FE606DA3CDE007161CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = SaxObjC.framework; + path = /Library/Frameworks/SaxObjC.framework; + refType = 0; + sourceTree = ""; + }; + ADD65FE706DA3CDE007161CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = XmlRpc.framework; + path = /Library/Frameworks/XmlRpc.framework; + refType = 0; + sourceTree = ""; + }; + ADD65FE806DA3CDE007161CA = { + fileRef = ADD65FE506DA3CDE007161CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADD65FE906DA3CDE007161CA = { + fileRef = ADD65FE606DA3CDE007161CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADD65FEA06DA3CDE007161CA = { + fileRef = ADD65FE706DA3CDE007161CA; + isa = PBXBuildFile; + settings = { + }; + }; + ADD6603106DA3CE2007161CA = { + children = ( + ADD65FE506DA3CDE007161CA, + ADD65FE606DA3CDE007161CA, + ADD65FE706DA3CDE007161CA, + ); + isa = PBXGroup; + name = "sope-xml"; + refType = 4; + sourceTree = ""; + }; + ADD6610D06DA3D1F007161CA = { + isa = PBXFileReference; + lastKnownFileType = wrapper.framework; + name = EOControl.framework; + path = /Library/Frameworks/EOControl.framework; + refType = 0; + sourceTree = ""; + }; + ADD6610E06DA3D1F007161CA = { + fileRef = ADD6610D06DA3D1F007161CA; + isa = PBXBuildFile; + settings = { + }; + }; + }; + rootObject = ADD65B6A06DA32D6007161CA; +} diff --git a/sope-appserver/NGXmlRpc/Version b/sope-appserver/NGXmlRpc/Version index e25d7408..46a90fec 100644 --- a/sope-appserver/NGXmlRpc/Version +++ b/sope-appserver/NGXmlRpc/Version @@ -1,3 +1,3 @@ # version file -SUBMINOR_VERSION:=7 +SUBMINOR_VERSION:=8 diff --git a/sope-appserver/NGXmlRpc/common.h b/sope-appserver/NGXmlRpc/common.h index b3cfd2ec..37b94029 100644 --- a/sope-appserver/NGXmlRpc/common.h +++ b/sope-appserver/NGXmlRpc/common.h @@ -19,6 +19,9 @@ 02111-1307, USA. */ +#ifndef __NGXmlRpc_common_H__ +#define __NGXmlRpc_common_H__ + #import #if NeXT_Foundation_LIBRARY || APPLE_FOUNDATION_LIBRARY @@ -32,6 +35,8 @@ #include #include -@interface NSObject(LastException) +@interface NSObject(NGXmlRpc_LastException) - (NSException *)lastException; @end + +#endif /* __NGXmlRpc_common_H__ */ diff --git a/sope-appserver/README-OSX.txt b/sope-appserver/README-OSX.txt index 244b15f6..09c8d186 100644 --- a/sope-appserver/README-OSX.txt +++ b/sope-appserver/README-OSX.txt @@ -155,12 +155,12 @@ sope-appserver: 0xC3000000 - 0xC5FFFFFF 0xC3400000 NGHttp [not available in gstep-make] 0xC3700000 WebDAV [not available in gstep-make] 0xC3A00000 SoOFS [not available in gstep-make] -0xCXXXXXXX SoObjects [NEW] -0xC3D00000 NGXmlRpc [not available in gstep-make] [REMOVED] +0xC3D00000 NGXmlRpc 0xC4000000 WEExtensions 0xC4300000 WOExtensions 0xC4600000 NGObjDOM 0xC4900000 NGObjWeb +0xC5AF0000 SoObjects [NEW] 0xC5B00000 WOXML 0xC5E00000 js [REMOVED] 0xC5FF0000 SOPE diff --git a/sope-appserver/WEExtensions/ChangeLog b/sope-appserver/WEExtensions/ChangeLog index 43ddd9c7..29565ec7 100644 --- a/sope-appserver/WEExtensions/ChangeLog +++ b/sope-appserver/WEExtensions/ChangeLog @@ -1,6 +1,10 @@ +2004-11-07 Marcus Mueller + + * WEExtensions.xcode: bumped the framework version + 2004-11-06 Marcus Mueller - * v4.3.62 + * v4.5.62 * WETreeView.m, WETreeHeader.m, WEEpozEditor.m, WETreeData.m, WEPageLink.m, WETableView/WETableHeader.m: fixes for incorrect diff --git a/sope-appserver/WEExtensions/WEExtensions-Info.plist b/sope-appserver/WEExtensions/WEExtensions-Info.plist index 35f53a6a..f719fd9b 100644 --- a/sope-appserver/WEExtensions/WEExtensions-Info.plist +++ b/sope-appserver/WEExtensions/WEExtensions-Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 4.2 + 4.5 diff --git a/sope-appserver/WEExtensions/WEExtensions.xcode/project.pbxproj b/sope-appserver/WEExtensions/WEExtensions.xcode/project.pbxproj index 12586431..49ddbf18 100644 --- a/sope-appserver/WEExtensions/WEExtensions.xcode/project.pbxproj +++ b/sope-appserver/WEExtensions/WEExtensions.xcode/project.pbxproj @@ -776,7 +776,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.60; + DYLIB_CURRENT_VERSION = 4.5.62; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; diff --git a/sope-appserver/WOExtensions/ChangeLog b/sope-appserver/WOExtensions/ChangeLog index 6f554ba3..719dcbc1 100644 --- a/sope-appserver/WOExtensions/ChangeLog +++ b/sope-appserver/WOExtensions/ChangeLog @@ -1,3 +1,7 @@ +2004-11-07 Marcus Mueller + + * WOExtensions.xcode: bumped the framework version + 2004-11-04 Marcus Mueller * v4.3.20 diff --git a/sope-appserver/WOExtensions/WOExtensions-Info.plist b/sope-appserver/WOExtensions/WOExtensions-Info.plist index 2c7b1986..40f358b8 100644 --- a/sope-appserver/WOExtensions/WOExtensions-Info.plist +++ b/sope-appserver/WOExtensions/WOExtensions-Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 4.2 + 4.5 diff --git a/sope-appserver/WOExtensions/WOExtensions.xcode/project.pbxproj b/sope-appserver/WOExtensions/WOExtensions.xcode/project.pbxproj index 4766fb1b..c39a822e 100644 --- a/sope-appserver/WOExtensions/WOExtensions.xcode/project.pbxproj +++ b/sope-appserver/WOExtensions/WOExtensions.xcode/project.pbxproj @@ -627,7 +627,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.19; + DYLIB_CURRENT_VERSION = 4.5.20; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; diff --git a/sope-appserver/sope-appserver.xcode/project.pbxproj b/sope-appserver/sope-appserver.xcode/project.pbxproj index d871104f..b8ff1c90 100644 --- a/sope-appserver/sope-appserver.xcode/project.pbxproj +++ b/sope-appserver/sope-appserver.xcode/project.pbxproj @@ -90,6 +90,9 @@ sourceTree = ""; }; AD8BEFF607005E0200EC239A = { + children = ( + ADBFE6F6073EA55B00E7F7CA, + ); isa = PBXGroup; name = Products; refType = 4; @@ -267,6 +270,65 @@ remoteGlobalIDString = ADD65D5806DA372D007161CA; remoteInfo = WOExtensions; }; + ADBFE6F6073EA55B00E7F7CA = { + fileType = wrapper.framework; + isa = PBXReferenceProxy; + path = WebDAV.framework; + refType = 3; + remoteRef = ADBFE6FD073EA57900E7F7CA; + sourceTree = BUILT_PRODUCTS_DIR; + }; + ADBFE6FD073EA57900E7F7CA = { + containerPortal = AD8BEFF507005E0200EC239A; + isa = PBXContainerItemProxy; + proxyType = 2; + remoteGlobalIDString = ADD65D5806DA372D007161CA; + remoteInfo = WebDAV; + }; + ADBFE95B073EA9AD00E7F7CA = { + isa = PBXFileReference; + lastKnownFileType = "wrapper.pb-project"; + name = NGXmlRpc.xcode; + path = NGXmlRpc/NGXmlRpc.xcode; + refType = 4; + sourceTree = ""; + }; + ADBFE95C073EA9AD00E7F7CA = { + children = ( + ADBFE95D073EA9B000E7F7CA, + ); + isa = PBXGroup; + name = Products; + refType = 4; + sourceTree = ""; + }; + ADBFE95D073EA9B000E7F7CA = { + fileType = wrapper.framework; + isa = PBXReferenceProxy; + path = NGXmlRpc.framework; + refType = 3; + remoteRef = ADBFE960073EA9CD00E7F7CA; + sourceTree = BUILT_PRODUCTS_DIR; + }; + ADBFE95E073EA9BE00E7F7CA = { + containerPortal = ADBFE95B073EA9AD00E7F7CA; + isa = PBXContainerItemProxy; + proxyType = 1; + remoteGlobalIDString = ADD65D5706DA372D007161CA; + remoteInfo = NGXmlRpc; + }; + ADBFE95F073EA9BE00E7F7CA = { + isa = PBXTargetDependency; + name = "NGXmlRpc (from NGXmlRpc.xcode)"; + targetProxy = ADBFE95E073EA9BE00E7F7CA; + }; + ADBFE960073EA9CD00E7F7CA = { + containerPortal = ADBFE95B073EA9AD00E7F7CA; + isa = PBXContainerItemProxy; + proxyType = 2; + remoteGlobalIDString = ADD65D5806DA372D007161CA; + remoteInfo = NGXmlRpc; + }; ADDF476606DA572500C4E7F8 = { children = ( ADDF477506DA575700C4E7F8, @@ -326,6 +388,10 @@ mainGroup = ADDF476606DA572500C4E7F8; projectDirPath = ""; projectReferences = ( + { + ProductGroup = ADBFE95C073EA9AD00E7F7CA; + ProjectRef = ADBFE95B073EA9AD00E7F7CA; + }, { ProductGroup = AD915D0F06E29B5D004720C2; ProjectRef = AD915D0E06E29B5D004720C2; @@ -460,6 +526,7 @@ AD20BB4C0737E7DA002A6594, AD915D2B06E29B83004720C2, AD915D2906E29B83004720C2, + ADBFE95F073EA9BE00E7F7CA, ); isa = PBXAggregateTarget; name = "Wrapper Contents"; @@ -471,6 +538,7 @@ AD8BEFED07005D9B00EC239A, AD8BEFEF07005DBE00EC239A, AD915D0A06E29B43004720C2, + ADBFE95B073EA9AD00E7F7CA, AD915D0E06E29B5D004720C2, AD915D0C06E29B51004720C2, ); diff --git a/sope-core/EOControl/EOControl.xcode/project.pbxproj b/sope-core/EOControl/EOControl.xcode/project.pbxproj index 717bc7e9..3601ca03 100644 --- a/sope-core/EOControl/EOControl.xcode/project.pbxproj +++ b/sope-core/EOControl/EOControl.xcode/project.pbxproj @@ -164,7 +164,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.47; + DYLIB_CURRENT_VERSION = 4.5.48; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = common.h; diff --git a/sope-core/NGExtensions/NGExtensions.xcode/project.pbxproj b/sope-core/NGExtensions/NGExtensions.xcode/project.pbxproj index 7cad29c3..6dc986f5 100644 --- a/sope-core/NGExtensions/NGExtensions.xcode/project.pbxproj +++ b/sope-core/NGExtensions/NGExtensions.xcode/project.pbxproj @@ -1293,7 +1293,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.124; + DYLIB_CURRENT_VERSION = 4.5.126; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; diff --git a/sope-core/NGStreams/NGStreams.xcode/project.pbxproj b/sope-core/NGStreams/NGStreams.xcode/project.pbxproj index 51f6d87d..53dc9069 100644 --- a/sope-core/NGStreams/NGStreams.xcode/project.pbxproj +++ b/sope-core/NGStreams/NGStreams.xcode/project.pbxproj @@ -204,7 +204,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.46; + DYLIB_CURRENT_VERSION = 4.5.46; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = common.h; diff --git a/sope-core/sope-core.xcode/project.pbxproj b/sope-core/sope-core.xcode/project.pbxproj index 3c8c676c..9dab271c 100644 --- a/sope-core/sope-core.xcode/project.pbxproj +++ b/sope-core/sope-core.xcode/project.pbxproj @@ -65,6 +65,10 @@ mainGroup = ADDF476606DA572500C4E7F8; projectDirPath = ""; projectReferences = ( + { + ProductGroup = ADDF478706DA581F00C4E7F8; + ProjectRef = ADDF478606DA581F00C4E7F8; + }, { ProductGroup = ADDF478906DA583300C4E7F8; ProjectRef = ADDF478806DA583300C4E7F8; @@ -73,10 +77,6 @@ ProductGroup = ADDF478506DA580C00C4E7F8; ProjectRef = ADDF478406DA580C00C4E7F8; }, - { - ProductGroup = ADDF478706DA581F00C4E7F8; - ProjectRef = ADDF478606DA581F00C4E7F8; - }, ); targets = ( ADDF479906DA58D700C4E7F8, diff --git a/sope-gdl1/GDLAccess/GDLAccess.xcode/project.pbxproj b/sope-gdl1/GDLAccess/GDLAccess.xcode/project.pbxproj index 56cbf493..7f81106a 100644 --- a/sope-gdl1/GDLAccess/GDLAccess.xcode/project.pbxproj +++ b/sope-gdl1/GDLAccess/GDLAccess.xcode/project.pbxproj @@ -2038,7 +2038,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1.1.40; + DYLIB_CURRENT_VERSION = 1.3.40; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; diff --git a/sope-ical/NGiCal/ChangeLog b/sope-ical/NGiCal/ChangeLog index 77b63ceb..5be21981 100644 --- a/sope-ical/NGiCal/ChangeLog +++ b/sope-ical/NGiCal/ChangeLog @@ -1,3 +1,7 @@ +2004-11-07 Marcus Mueller + + * NGiCal.xcode: provide SOPE_{MAJOR,MINOR}_VERSION to the build + 2004-11-06 Helge Hess * iCalRenderer.m: use SOPE version defines for iCalendar product id diff --git a/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj b/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj index 150c52a7..6dd74602 100644 --- a/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj +++ b/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj @@ -248,7 +248,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.34; + DYLIB_CURRENT_VERSION = 4.5.35; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -257,7 +257,7 @@ GCC_WARN_UNKNOWN_PRAGMAS = NO; INFOPLIST_FILE = "NGiCal-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - OTHER_CFLAGS = ""; + OTHER_CFLAGS = "-DSOPE_MAJOR_VERSION=4 -DSOPE_MINOR_VERSION=5"; OTHER_LDFLAGS = "-seg1addr 0xC1E00000 -headerpad_max_install_names"; OTHER_REZFLAGS = ""; PRODUCT_NAME = NGiCal; diff --git a/sope-ldap/NGLdap/NGLdap.xcode/project.pbxproj b/sope-ldap/NGLdap/NGLdap.xcode/project.pbxproj index 8ff38fb3..b4829eee 100644 --- a/sope-ldap/NGLdap/NGLdap.xcode/project.pbxproj +++ b/sope-ldap/NGLdap/NGLdap.xcode/project.pbxproj @@ -745,7 +745,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.20; + DYLIB_CURRENT_VERSION = 4.5.21; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; diff --git a/sope-mime/NGImap4/NGImap4.xcode/project.pbxproj b/sope-mime/NGImap4/NGImap4.xcode/project.pbxproj index 5f142b02..3ddda2b6 100644 --- a/sope-mime/NGImap4/NGImap4.xcode/project.pbxproj +++ b/sope-mime/NGImap4/NGImap4.xcode/project.pbxproj @@ -268,7 +268,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.187; + DYLIB_CURRENT_VERSION = 4.5.196; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = NO; diff --git a/sope-mime/NGMail/NGMail.xcode/project.pbxproj b/sope-mime/NGMail/NGMail.xcode/project.pbxproj index b7a04b1a..833207a1 100644 --- a/sope-mime/NGMail/NGMail.xcode/project.pbxproj +++ b/sope-mime/NGMail/NGMail.xcode/project.pbxproj @@ -259,7 +259,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.192; + DYLIB_CURRENT_VERSION = 4.5.196; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = NO; diff --git a/sope-mime/NGMime/NGMime.xcode/project.pbxproj b/sope-mime/NGMime/NGMime.xcode/project.pbxproj index 190ce055..bd72d064 100644 --- a/sope-mime/NGMime/NGMime.xcode/project.pbxproj +++ b/sope-mime/NGMime/NGMime.xcode/project.pbxproj @@ -473,7 +473,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.192; + DYLIB_CURRENT_VERSION = 4.5.196; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; diff --git a/sope-xml/DOM/DOM.xcode/project.pbxproj b/sope-xml/DOM/DOM.xcode/project.pbxproj index 7ad24608..4ed513e4 100644 --- a/sope-xml/DOM/DOM.xcode/project.pbxproj +++ b/sope-xml/DOM/DOM.xcode/project.pbxproj @@ -199,7 +199,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.12; + DYLIB_CURRENT_VERSION = 4.5.13; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = common.h; diff --git a/sope-xml/SaxObjC/ChangeLog b/sope-xml/SaxObjC/ChangeLog index 333eaaab..b3698c76 100644 --- a/sope-xml/SaxObjC/ChangeLog +++ b/sope-xml/SaxObjC/ChangeLog @@ -1,3 +1,7 @@ +2004-11-07 Marcus Mueller + + * SaxObjC.xcode: added SOPE_MAJOR/MINOR definitions for the build + 2004-11-07 Helge Hess * SaxXMLReaderFactory.m: fixed a bug in FHS bundle lookup (v4.5.45) diff --git a/sope-xml/SaxObjC/SaxObjC.xcode/project.pbxproj b/sope-xml/SaxObjC/SaxObjC.xcode/project.pbxproj index c1b2bbff..eafb73bf 100644 --- a/sope-xml/SaxObjC/SaxObjC.xcode/project.pbxproj +++ b/sope-xml/SaxObjC/SaxObjC.xcode/project.pbxproj @@ -373,12 +373,13 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.41; + DYLIB_CURRENT_VERSION = 4.5.44; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = common.h; INFOPLIST_FILE = "SaxObjC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + OTHER_CFLAGS = "-DSOPE_MAJOR_VERSION=4 -DSOPE_MINOR_VERSION=5"; OTHER_LDFLAGS = "-seg1addr 0xC0000000 -headerpad_max_install_names"; PRODUCT_NAME = SaxObjC; WARNING_CFLAGS = "-Wmost"; diff --git a/sope-xml/XmlRpc/XmlRpc.xcode/project.pbxproj b/sope-xml/XmlRpc/XmlRpc.xcode/project.pbxproj index ff9bf534..fd09abe4 100644 --- a/sope-xml/XmlRpc/XmlRpc.xcode/project.pbxproj +++ b/sope-xml/XmlRpc/XmlRpc.xcode/project.pbxproj @@ -157,7 +157,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.22; + DYLIB_CURRENT_VERSION = 4.5.23; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = common.h; diff --git a/sopex/SOPEX/SOPEX.xcode/project.pbxproj b/sopex/SOPEX/SOPEX.xcode/project.pbxproj index ec8bb736..ac3585b2 100644 --- a/sopex/SOPEX/SOPEX.xcode/project.pbxproj +++ b/sopex/SOPEX/SOPEX.xcode/project.pbxproj @@ -6,8 +6,6 @@ objectVersion = 39; objects = { 014CEA440018CDF011CA2923 = { - buildRules = ( - ); buildSettings = { COPY_PHASE_STRIP = NO; DEBUGGING_SYMBOLS = YES; @@ -22,8 +20,6 @@ name = Development; }; 014CEA450018CDF011CA2923 = { - buildRules = ( - ); buildSettings = { COPY_PHASE_STRIP = YES; GCC_ENABLE_FIX_AND_CONTINUE = NO; @@ -175,8 +171,7 @@ //103 //104 1058C7B1FEA5585E11CA2CBB = { - fallbackIsa = PBXFileReference; - isa = PBXFrameworkReference; + isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; diff --git a/sopex/WebObjects/WebObjects.xcode/project.pbxproj b/sopex/WebObjects/WebObjects.xcode/project.pbxproj index 5093e76e..d9fad8b5 100644 --- a/sopex/WebObjects/WebObjects.xcode/project.pbxproj +++ b/sopex/WebObjects/WebObjects.xcode/project.pbxproj @@ -212,7 +212,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; + DYLIB_CURRENT_VERSION = 4.5.; FRAMEWORK_SEARCH_PATHS = "\"$(LOCAL_LIBRARY_DIR)/Frameworks\" /Local/BuildArea"; FRAMEWORK_VERSION = A; GCC_ENABLE_TRIGRAPHS = NO; -- 2.39.5