Add BUILDOPTEXTRA to Win32 makefiles
Steve Hay [Tue, 14 Jun 2005 07:42:33 +0000 (07:42 +0000)]
This allows extra build options, e.g. -DNO_HASH_SEED, to be
specified on the command line, which is otherwise not possible
under nmake using the existing BUILDOPT macro

Suggested by Jan Dubois <jand@ActiveState.com>

p4raw-id: //depot/perl@24830

win32/Makefile
win32/makefile.mk

index 33ddc80..3dfdd9c 100644 (file)
@@ -167,6 +167,7 @@ CCLIBDIR    = $(CCHOME)\lib
 #
 # Additional compiler flags can be specified here.
 #
+BUILDOPT       = $(BUILDOPTEXTRA)
 
 #
 # Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's
index 66ebf55..a338c7d 100644 (file)
@@ -192,6 +192,7 @@ CCLIBDIR    *= $(CCHOME)\lib
 #
 # Additional compiler flags can be specified here.
 #
+BUILDOPT       *= $(BUILDOPTEXTRA)
 
 #
 # Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's