dcmtk: add new patch: fix build with GCC >= 6.x

This commit is contained in:
Boris Pek 2016-05-05 16:30:30 +03:00
parent f913661fba
commit 8608e1335c
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
From: Boris Pek
Date: Thu, 05 May 2016 15:38:47 +0300
Subject: [PATCH] fix build with GCC >= 6.x
diff --git a/ofstd/libsrc/ofstd.cc b/ofstd/libsrc/ofstd.cc
--- a/ofstd/libsrc/ofstd.cc
+++ b/ofstd/libsrc/ofstd.cc
@@ -175,7 +175,7 @@
// some systems don't properly define isnan()
-#ifdef HAVE_ISNAN
+#if defined(HAVE_ISNAN) && (__cplusplus < 201103L)
#ifndef HAVE_PROTOTYPE_ISNAN
extern "C"
{