Update of /cvsroot/monetdb/clients/src/mapiclient
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29082
Modified Files:
MapiClient.mx
Log Message:
strings.h contains the non conditional definition of strcasecmp
(in string.h its only available if we define _BSD_SOURCE which we correctly
don't)
This fixes the compilation issue on debian
Index: MapiClient.mx
===================================================================
RCS file: /cvsroot/monetdb/clients/src/mapiclient/MapiClient.mx,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -d -r1.93 -r1.94
--- MapiClient.mx 7 Dec 2007 08:43:08 -0000 1.93
+++ MapiClient.mx 9 Dec 2007 11:54:34 -0000 1.94
@@ -100,7 +100,12 @@
#include <ctype.h>
#include <sys/stat.h>
#include <errno.h>
+#ifdef HAVE_STRING_H
#include <string.h>
+#endif
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#endif
#ifdef HAVE_LIBREADLINE
#include <readline/readline.h>
#include <readline/history.h>
-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins