Closed
Bug 2811
Opened 26 years ago
Closed 26 years ago
NetBSD Configuration Bug
Categories
(SeaMonkey :: Build Config, defect, P2)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: gduzan, Assigned: briano)
Details
In mozilla/configure.in, line 157, the NetBSD DLL_SUFFIX has an extraneous
'.' in front of "so.1.0", preventing proper linking against the built
libraries.
*** ../mozilla/configure.in Wed Jan 27 23:51:23 1999
--- configure.in Sun Jan 31 22:43:43 1999
***************
*** 154,160 ****
fi ;;
*-netbsd*)
! DLL_SUFFIX=".so.1.0"
DSO_CFLAGS='-fPIC'
DSO_LDOPTS='-shared -h $(@:$(OBJDIR)/%.$(DLL_SUFFIX)=%.$(DLL_SUFFIX))'
MKSHLIB='$(LD) $(DSO_LDOPTS)'
--- 154,160 ----
fi ;;
*-netbsd*)
! DLL_SUFFIX="so.1.0"
DSO_CFLAGS='-fPIC'
DSO_LDOPTS='-shared -h $(@:$(OBJDIR)/%.$(DLL_SUFFIX)=%.$(DLL_SUFFIX))'
MKSHLIB='$(LD) $(DSO_LDOPTS)'
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
Checked in on 1/31/99.
beppe@netscape.com set as monitoring qa contact, gduzan@acm.org please verify
with latest bits.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 3•26 years ago
|
||
presuming gduzan@acm.org is happy with the fix, 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
•