From: malaterre Date: Thu, 26 Jan 2006 18:26:04 +0000 (+0000) Subject: COMP: Fix comp on borland X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=81442de19fe2579875ffc0798d76e0cb72d5f0a0;p=gdcm.git COMP: Fix comp on borland --- diff --git a/src/gdcmArgMgr.cxx b/src/gdcmArgMgr.cxx index 82cc2a0a..d966c558 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 16:01:04 $ - Version: $Revision: 1.18 $ + Date: $Date: 2006/01/26 18:26:04 $ + Version: $Revision: 1.19 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,6 +21,11 @@ #include #include // For strlen +// No strcasecmp in borland, but stricmp +#ifdef __BORLANDC__ +#define strcasecmp stricmp +#endif + #include // For strtok and strlen #include // For strtol and strtod