From: malaterre Date: Thu, 26 Jan 2006 18:34:13 +0000 (+0000) Subject: COMP: Fix comp on WIN32 os X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=944710d868daa378db06815970185188fc70fc3d;p=gdcm.git COMP: Fix comp on WIN32 os --- diff --git a/src/gdcmArgMgr.cxx b/src/gdcmArgMgr.cxx index d966c558..172cb7d2 100644 --- a/src/gdcmArgMgr.cxx +++ b/src/gdcmArgMgr.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmArgMgr.cxx,v $ Language: C++ - Date: $Date: 2006/01/26 18:26:04 $ - Version: $Revision: 1.19 $ + Date: $Date: 2006/01/26 18:34:13 $ + Version: $Revision: 1.20 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,8 +21,9 @@ #include #include // For strlen -// No strcasecmp in borland, but stricmp -#ifdef __BORLANDC__ +// No strcasecmp in WIN32 world, but stricmp +// http://www.opengroup.org/onlinepubs/007908799/xsh/strcasecmp.html +#ifdef _WIN32 #define strcasecmp stricmp #endif