summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>1999-10-15 00:51:41 +0000
committerwtc%netscape.com <devnull@localhost>1999-10-15 00:51:41 +0000
commit59a68d24359132f9177f5434eedf508e4798e2ef (patch)
tree9cfdb42d49be2dd25183973913c247371638cc07 /config
parent076729828e3205c712142561ea767e555b5b8219 (diff)
downloadnspr-hg-59a68d24359132f9177f5434eedf508e4798e2ef.tar.gz
Bugsplat bug #358401: created a separate .rc file for each DLL. The
product name is "Netscape Portable Runtime" and the file descriptions are "NSPR Library", "PLDS Library", "PLC Library", and "PRSTRMS Library". A debug build is indicated in the file description. The copyright years changed to 1996-1999. Modified files: rules.mk, lib/ds/Makefile, lib/ds/Makefile.in, lib/libc/src/Makefile, lib/libc/src/Makefile.in, lib/prstreams/Makefile, lib/prstreams/Makefile.in, prinit.h, nspr.rc Added files: plds.rc, plc.rc, prstrms.rc Removed file: resource.h
Diffstat (limited to 'config')
-rw-r--r--config/rules.mk7
1 files changed, 2 insertions, 5 deletions
diff --git a/config/rules.mk b/config/rules.mk
index e4bdaedf..a0065556 100644
--- a/config/rules.mk
+++ b/config/rules.mk
@@ -350,11 +350,8 @@ $(RES): $(RESNAME)
ifeq ($(OS_TARGET),OS2)
$(RC) -DOS2 -r $(RESNAME) $(RES)
else
-ifeq ($(OS_TARGET),WINNT)
- $(RC) -dWINNT -Fo$(RES) $(RESNAME)
-else
- $(RC) -Fo$(RES) $(RESNAME)
-endif
+# The resource compiler does not understand the -U option.
+ $(RC) $(filter-out -U%,$(DEFINES)) $(INCLUDES) -Fo$(RES) $(RESNAME)
endif
@echo $(RES) finished
endif