Issue 14936

Summary: IRIX Port : Build breaks in icu, as IRIX uses LD_LIBRARYN32_PATH
Product: porting Reporter: Unknown <non-migrated>
Component: codeAssignee: Unknown <non-migrated>
Status: CLOSED FIXED QA Contact: issues@porting <issues>
Severity: Trivial    
Priority: P2 CC: issues
Version: OOo 1.1 Beta2   
Target Milestone: ---   
Hardware: SGI   
OS: IRIX   
Issue Type: DEFECT Latest Confirmation in: ---
Developer Difficulty: ---
Attachments:
Description Flags
New patch for icu none

Description Unknown 2003-05-27 06:50:26 UTC
The patch for icu needs updating to patch one of the icu makefiles (icudefs.mk)
as it uses the LD_LIBRARY_PATH search path, and IRIX uses LD_LIBRARYN32_PATH.

The change is IRIX specific...

from:
LDLIBRARYPATH_ENVVAR = LD_LIBRARY_PATH

to:
ifeq ($(OS), IRIX)
LDLIBRARYPATH_ENVVAR = LD_LIBRARYN32_PATH
else
LDLIBRARYPATH_ENVVAR = LD_LIBRARY_PATH
endif
Comment 1 Unknown 2003-05-27 06:52:36 UTC
Created attachment 6460 [details]
New patch for icu
Comment 2 Unknown 2003-05-28 01:05:20 UTC
Done
Comment 3 Unknown 2003-05-28 01:05:38 UTC
closing issue