summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2015-01-07 14:08:27 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2015-01-07 14:08:27 +0000
commitc674478b4bcbe0f2eae64e27b0661d2a1db2289b (patch)
tree0bb182ec71bb22d5df6c8f6947642b4a9285e827 /win32
parentdbf36b7ad7de360186b361d5132b2ba5c5cff6e2 (diff)
downloadperl-c674478b4bcbe0f2eae64e27b0661d2a1db2289b.tar.gz
Silence warning during VC++/nmake build
"Use of uninitialized value $opt{"uselongdouble"} in string eq at config_sh.PL line 202." Only GCC supports USE_LONG_DOUBLE, so set the option to undef for VC++.
Diffstat (limited to 'win32')
-rw-r--r--win32/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/Makefile b/win32/Makefile
index 59f5fee313..3d8067615e 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -804,6 +804,7 @@ CFG_VARS = \
"useithreads=$(USE_ITHREADS)" \
"usemultiplicity=$(USE_MULTI)" \
"use64bitint=$(USE_64_BIT_INT)" \
+ "uselongdouble=undef" \
"uselargefiles=$(USE_LARGE_FILES)" \
"usesitecustomize=$(USE_SITECUST)" \
"LINK_FLAGS=$(LINK_FLAGS:"=\")" \