[Liblas-commits] hg: OMG, this is awful,
but I don't know what else to do
liblas-commits at liblas.org
liblas-commits at liblas.org
Tue Mar 16 16:15:14 EDT 2010
changeset 97e95df3c389 in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=97e95df3c389
summary: OMG, this is awful, but I don't know what else to do
diffstat:
src/gt_citation.cpp | 5 +++++
src/gt_wkt_srs.cpp | 5 +++++
2 files changed, 10 insertions(+), 0 deletions(-)
diffs (30 lines):
diff -r 6eb35a2161cd -r 97e95df3c389 src/gt_citation.cpp
--- a/src/gt_citation.cpp Tue Mar 16 11:01:01 2010 -0600
+++ b/src/gt_citation.cpp Tue Mar 16 14:14:49 2010 -0600
@@ -36,6 +36,11 @@
#include "ogr_spatialref.h"
+#if defined(WIN32)
+# define EQUALN(a,b,n) (_strnicmp(a,b,n)==0)
+# define EQUAL(a,b) (_stricmp(a,b)==0)
+#endif
+
#define nCitationNameTypes 9
typedef enum
{
diff -r 6eb35a2161cd -r 97e95df3c389 src/gt_wkt_srs.cpp
--- a/src/gt_wkt_srs.cpp Tue Mar 16 11:01:01 2010 -0600
+++ b/src/gt_wkt_srs.cpp Tue Mar 16 14:14:49 2010 -0600
@@ -44,6 +44,11 @@
CPL_CVSID("$Id: gt_wkt_srs.cpp 18562 2010-01-16 04:56:05Z warmerdam $")
+#if defined(WIN32)
+# define EQUALN(a,b,n) (_strnicmp(a,b,n)==0)
+# define EQUAL(a,b) (_stricmp(a,b)==0)
+#endif
+
CPL_C_START
void GTiffOneTimeInit();
int CPL_DLL VSIFCloseL( FILE * );
More information about the Liblas-commits
mailing list