2005-02-10 Helge Hess <helge.hess@opengroupware.org>
+ * GNUmakefile.preamble: fixed linking on MacOSX (v0.9.22)
+
* v0.9.21
* SOGoProductLoader.m: perform properly versioned plugin lookups (load
SYSTEM_LIB_DIR += -L/usr/local/lib -L/usr/lib
-# TODO: check which one we actually need!
-ADDITIONAL_TOOL_LIBS += \
- -lSOGo \
- -lSOGoLogic \
- -lOGoContentStore \
- -lGDLAccess \
- -lNGiCal -lNGLdap
+MainUI_BUNDLE_LIBS += \
+ -lNGObjWeb \
+ -lNGMime \
+ -lNGStreams -lNGExtensions -lEOControl \
+ -lDOM -lXmlRpc -lSaxObjC
+
+$(SOGOD)_TOOL_LIBS += \
+ -lNGObjWeb \
+ -lNGMime \
+ -lNGStreams -lNGExtensions -lEOControl \
+ -lDOM -lXmlRpc -lSaxObjC
}
- (id)lookupUser:(NSString *)_key inContext:(id)_ctx {
- return [[[SOGoUserFolder alloc] initWithName:_key inContainer:self]
- autorelease];
+ return [[[NSClassFromString(@"SOGoUserFolder") alloc]
+ initWithName:_key inContainer:self] autorelease];
}
- (void)_setupLocaleInContext:(WOContext *)_ctx {
[self logWithFormat:@"ERROR: did not find MainUIProduct class!"];
}
- lpath = [MainProduct pathToLocaleForLanguageNamed:_name];
+ lpath = [(id)MainProduct pathToLocaleForLanguageNamed:_name];
if ([lpath isNotNull])
return lpath;
# Version file
-SUBMINOR_VERSION:=21
+SUBMINOR_VERSION:=22
# v0.9.16 requires NGExtensions v4.5.136
+2005-02-10 Helge Hess <helge.hess@opengroupware.org>
+
+ * SOGoObject.m: fixed a warning on MacOSX (v0.9.29)
+
2005-02-07 Helge Hess <helge.hess@opengroupware.org>
* SOGoObject.h: added prototype for GETAction (v0.9.28)
WOResponse *r;
NSString *uri;
- rq = [_ctx request];
+ rq = [(WOContext *)_ctx request];
if ([rq isSoWebDAVRequest]) {
if ([self respondsToSelector:@selector(contentAsString)])
return [self contentAsString];
if (![uri hasSuffix:@"/"]) uri = [uri stringByAppendingString:@"/"];
uri = [uri stringByAppendingString:@"view"];
- r = [_ctx response];
+ r = [(WOContext *)_ctx response];
[r setStatus:302 /* moved */];
[r setHeader:uri forKey:@"location"];
return r;
# version file
-SUBMINOR_VERSION:=28
+SUBMINOR_VERSION:=29
# v0.9.26 requires libOGoContentStore v0.9.13
+2005-02-10 Helge Hess <helge.hess@opengroupware.org>
+
+ * SOGoSieveScriptObject.m: fixed a compile warning on MacOSX (v0.9.8)
+
2005-02-06 Helge Hess <helge.hess@opengroupware.org>
* SOGoSieveScriptObject.m, SOGoSieveScriptsFolder.m: assigned
NSException *e;
NSString *content;
- content = [[_context request] contentAsString];
+ content = [[(WOContext *)_context request] contentAsString];
if ((e = [self writeContent:content]))
return e;
# Version file
-SUBMINOR_VERSION:=7
+SUBMINOR_VERSION:=8
# v0.9.6 requires libNGMime v4.5.207
# v0.9.1 requires libNGMime v4.3.194