The GNUmakefile.preamble for ProjectCenter/PCGromProj does not define
ADDITIONAL_INCLUDE_DIRS and ADDITIONAL_LIB_DIRS correctly.  This
patch fixes that.  This bug would not show up on machines that already
had ProjectCenter installed since the headers and library would have
been found in the /GNUstep file hierarchy.  On a virgin machine, the
headers and library haven't been installed yet so the make for
ProjectCenter fails.

Kim

-- 
 Kim Shrier - principal, Shrier and Deihl - mailto:[EMAIL PROTECTED]
Remote Unix Network Admin, Security, Internet Software Development
  Tinker Internet Services - Superior FreeBSD-based Web Hosting
                     http://www.tinker.com/
--- dev-apps/ProjectCenter/PCGormProj/GNUmakefile.preamble.orig Wed Aug  1 07:35:41 
2001
+++ dev-apps/ProjectCenter/PCGormProj/GNUmakefile.preamble      Sun Sep 23 01:20:21 
+2001
@@ -49,13 +49,13 @@
 #ADDITIONAL_CFLAGS += 
 
 # Additional include directories the compiler should search
-ADDITIONAL_INCLUDE_DIRS +=
+ADDITIONAL_INCLUDE_DIRS += -I../PCLib
 
 # Additional LDFLAGS to pass to the linker
 ADDITIONAL_LDFLAGS += -lProjectCenter
 
 # Additional library directories the linker should search
-ADDITIONAL_LIB_DIRS +=
+ADDITIONAL_LIB_DIRS += -L../PCLib/$(GNUSTEP_OBJ_DIR)
 
 ADDITIONAL_TOOL_LIBS +=
 

Reply via email to