projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
compilation fix for STL build; also don't pass unknown string potentially containing...
[wxWidgets.git]
/
src
/
tiff
/
libtiff
/
tif_config.h
diff --git
a/src/tiff/libtiff/tif_config.h
b/src/tiff/libtiff/tif_config.h
index ea109c769d437e22efd86e89b4c96be8e81a272b..631537ffe2156d5b3ad2564c1b807b24d24b5902 100644
(file)
--- a/
src/tiff/libtiff/tif_config.h
+++ b/
src/tiff/libtiff/tif_config.h
@@
-101,8
+101,13
@@
# endif
#endif
-#if
ndef __BORLANDC__
+#if
!defined (__BORLANDC__) && !defined (__WATCOMC__)
#define lfind _lfind
#endif
-#endif
\ No newline at end of file
+#ifdef __DMC__
+#define HAVE_INT32
+typedef long int32;
+#endif
+
+#endif