A temporary fix for the Solaris gcc build. Removed the -z defs linker flag

because gcc-compiled objects reference symbols not defined in -lc.  The
correct fix is to use gcc to build the shared libraries, as we do on Linux.
Modified Files: configure.in configure


git-svn-id: svn://10.0.0.236/trunk@135940 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%netscape.com
2003-01-07 20:49:41 +00:00
parent ab05514dd3
commit 632edaed3f
2 changed files with 2 additions and 2 deletions

View File

@@ -4485,7 +4485,7 @@ EOF
fi
PR_MD_CSRCS=solaris.c
LD=/usr/ccs/bin/ld
DSO_LDOPTS='-G -h $(notdir $@) -z combreloc -z defs'
DSO_LDOPTS='-G -h $(notdir $@) -z combreloc'
RESOLVE_LINK_SYMBOLS=1
if test -n "$GNU_CC"; then
DSO_CFLAGS=-fPIC

View File

@@ -1634,7 +1634,7 @@ mips-sony-newsos*)
fi
PR_MD_CSRCS=solaris.c
LD=/usr/ccs/bin/ld
DSO_LDOPTS='-G -h $(notdir $@) -z combreloc -z defs'
DSO_LDOPTS='-G -h $(notdir $@) -z combreloc'
RESOLVE_LINK_SYMBOLS=1
if test -n "$GNU_CC"; then
DSO_CFLAGS=-fPIC