fix problem in default build
Gurusamy Sarathy [Tue, 20 Jul 1999 04:11:54 +0000 (04:11 +0000)]
p4raw-id: //depot/perl@3705

win32/Makefile
win32/makefile.mk

index de6499e..ee5784c 100644 (file)
@@ -183,7 +183,11 @@ USE_THREADS        = undef
 USE_MULTI      = undef
 !ENDIF
 
-!IF "$(USE_MULTI)$(USE_THREADS)$(USE_OBJECT)" != ""
+!IF "$(USE_OBJECT)" == ""
+USE_OBJECT     = undef
+!ENDIF
+
+!IF "$(USE_MULTI)$(USE_THREADS)$(USE_OBJECT)" != "undefundefundef"
 BUILDOPT       = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
 !ENDIF
 
index b279127..20ff03f 100644 (file)
@@ -196,9 +196,9 @@ PERL_MALLOC *= undef
 
 USE_THREADS    *= undef
 USE_MULTI      *= undef
+USE_OBJECT     *= undef
 
-
-.IF "$(USE_MULTI)$(USE_THREADS)$(USE_OBJECT)" != ""
+.IF "$(USE_MULTI)$(USE_THREADS)$(USE_OBJECT)" != "undefundefundef"
 BUILDOPT       += -DPERL_IMPLICIT_CONTEXT
 .ENDIF