]> err.no Git - sope/commitdiff
fixed some FHS issues
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sun, 29 Aug 2004 21:51:44 +0000 (21:51 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sun, 29 Aug 2004 21:51:44 +0000 (21:51 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@87 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/ChangeLog
sope-appserver/NGObjWeb/GNUmakefile
sope-appserver/NGObjWeb/Version
sope-core/NGExtensions/ChangeLog
sope-core/NGExtensions/NGBundleManager.m
sope-core/NGExtensions/Version
sope-mime/NGImap4/NGImap4Client.m

index 572184a28ad506fa8e4a1a85a094c458a1501605..9a29fdb543a3be255346ce09a751a3cc2d427355 100644 (file)
@@ -1,5 +1,7 @@
 2004-08-29  Helge Hess  <helge.hess@opengroupware.org>
 
+       * GNUmakefile: properly setup bundle path (v4.3.19)
+
        * v4.3.18
        
        * Templates/WOApplication+Builders.m: also look in
index 7d2481eef2756ff49ddfef66a1f18b7537e606e5..866102afc1f8428fa85efeb075b12c7f6a0b5d8b 100644 (file)
@@ -6,7 +6,11 @@ include ./Version
 GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_LOCAL_ROOT)
 
 LIBRARY_NAME  = libNGObjWeb
+ifeq ($(FHS_INSTALL_ROOT),)
 RESOURCES_DIR = $(GNUSTEP_RESOURCES)/NGObjWeb
+else
+RESOURCES_DIR = $(FHS_INSTALL_ROOT)/share/sope-4.3/ngobjweb
+endif
 
 libNGObjWeb_CPPFLAGS += -pipe -DCOMPILING_NGOBJWEB=1
 
index 1494d0b4fa435d15c24fbed3d7664716be2ed38d..4bb067103c9c4049951be952259972009dd1242d 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=18
+SUBMINOR_VERSION:=19
 
 # v4.2.413 requires libSaxObjC      v4.2.33
 # v4.2.341 requires libNGExtensions v4.2.77
index 58b2504924c6d5f44867e14ee4d0e1ff4958718a..ddbb2d66d92a9575301568643f6ad681811e147a 100644 (file)
@@ -1,5 +1,8 @@
 2004-08-29  Helge Hess  <helge.hess@opengroupware.org>
 
+       * NGBundleManager.m: fixed an issue when running without GNUstep
+         environment (v4.3.110)
+
        * v4.3.109
 
        * NGBundleManager.m: look for bundles in GNUSTEP_PATHPREFIX_LIST and
index c2ab346f9a3452411f620af9b4526734f6cba085..6737371f178a63898e3d049573185d30594bde26 100644 (file)
@@ -299,10 +299,10 @@ static BOOL debugOn = NO;
   }
   if (paths) 
     [self->bundleSearchPaths addObjectsFromArray:paths];
-  else
+  else if (debugOn)
     NSLog(@"Note: NGBundlePath default is not configured.");
-
-  // look into environment
+  
+  /* look into environment */
 
   paths = [[pi environment] objectForKey:@"NGBundlePath"];
   if (paths) {
@@ -330,14 +330,14 @@ static BOOL debugOn = NO;
     if ((tmp = [env objectForKey:@"GNUSTEP_PATHPREFIX_LIST"]) == nil)
       tmp = [env objectForKey:@"GNUSTEP_PATHLIST"];
     tmp = [tmp componentsSeparatedByString:@":"];
-
+    
     for (i = 0; i < count; i++) {
       p = [tmp objectAtIndex:i];
       p = [p stringByAppendingPathComponent:@"Library"];
       p = [p stringByAppendingPathComponent:@"Bundles"];
       if ([self->bundleSearchPaths containsObject:p]) continue;
-
-      [self->bundleSearchPaths addObject:p];
+      
+      if (p) [self->bundleSearchPaths addObject:p];
     }
 #endif
   }
index 0ce3d16d1d332488e12503f2940e41a76adf5d29..8e0992af9b745d75e611346f3f30960b1d66283b 100644 (file)
@@ -1,5 +1,5 @@
 # $Id$
 
-SUBMINOR_VERSION:=109
+SUBMINOR_VERSION:=110
 
 # v4.2.72 requires libEOControl v4.2.39
index 879ac19cf7120ad3f7e4fd38ecd724a08a0eea01..d2ab39ddcc6372c4b79776af4db891215560e6be 100644 (file)
@@ -18,7 +18,6 @@
   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.
 */
-// $Id$
 
 #include <unistd.h>