From 85b027f2295c45b591a41e9592a7742e723f91c2 Mon Sep 17 00:00:00 2001 From: "mcafee%netscape.com" Date: Tue, 29 Jun 1999 11:10:48 +0000 Subject: [PATCH] Fixing solaris bustage. git-svn-id: svn://10.0.0.236/trunk@37404 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/layout/html/tests/Makefile.in | 45 ++++++++++++++------------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/mozilla/layout/html/tests/Makefile.in b/mozilla/layout/html/tests/Makefile.in index d131be896f8..5d2fd6add03 100644 --- a/mozilla/layout/html/tests/Makefile.in +++ b/mozilla/layout/html/tests/Makefile.in @@ -34,7 +34,29 @@ include $(topsrcdir)/config/config.mk SIMPLE_PROGRAMS = $(addprefix $(OBJDIR)/, $(CPPSRCS:.cpp=)) -LIBS = \ +ifndef NECKO +LIBS = \ + -lpwcac \ + -lfileurl \ + -lftpurl \ + -lgophurl \ + -lremoturl \ + -lnetcnvts \ + -labouturl \ + -lhttpurl \ + -lmimetype \ + -lnetcache \ + -lnetlib \ + -lnetwork \ + -lsockstuburl \ + $(NULL) +else +LIBS = \ + -lneckoutil_s \ + $(NULL) +endif + +LIBS += \ -limg \ $(PNG_LIBS) \ $(JPEG_LIBS) \ @@ -57,27 +79,6 @@ LIBS = \ $(NSPR_LIBS) \ $(NULL) -ifndef NECKO -LIBS += \ - -lpwcac \ - -lfileurl \ - -lftpurl \ - -lgophurl \ - -lremoturl \ - -lnetcnvts \ - -labouturl \ - -lhttpurl \ - -lmimetype \ - -lnetcache \ - -lnetlib \ - -lnetwork \ - -lsockstuburl \ - $(NULL) -else -LIBS += \ - -lneckoutil_s \ - $(NULL) -endif include $(topsrcdir)/config/rules.mk