Closed
Bug 2041
Opened 26 years ago
Closed 26 years ago
HP-UX not configured for shlib linking options in configure.in
Categories
(SeaMonkey :: Build Config, defect, P2)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: rkl, Assigned: briano)
Details
HP-UX isn't mentioned in the top-level configure.in when it comes to setting
the DSO_CFLAGS, DLL_SUFFIX, DSO_LDOPTS or MKSHLIB variables. Here's a quick
stab at it...
Stick this just below the *-irix*) section at around line 171 or so of
the top-level configure.in:
*-hpux*)
if test -z "$GNU_CC"; then
DSO_CFLAGS="+Z"
fi
DLL_SUFFIX="sl"
DSO_LDOPTS='-b -E -L$(DIST)/bin $(LDFLAGS)'
MKSHLIB='$(LD) $(DSO_LDOPTS)' ;;
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
This patch is now checked in (Revision 1.114).
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 2•26 years ago
|
||
marking verified
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•