Update of /cvsroot/monetdb/clients/src/perl/Cimpl
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10426/src/perl/Cimpl

Modified Files:
        Makefile.ag MapiLib.pm.i 
Log Message:
propagated changes of Thursday Nov 01 2007 - Tuesday Nov 06 2007
from the Clients_1-20 branch to the development trunk



Index: Makefile.ag
===================================================================
RCS file: /cvsroot/monetdb/clients/src/perl/Cimpl/Makefile.ag,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Makefile.ag 3 Oct 2007 13:56:21 -0000       1.5
+++ Makefile.ag 6 Nov 2007 14:35:00 -0000       1.6
@@ -20,10 +20,23 @@
 # we need this flag to allow for a name that does not start with "lib"
 MapiLib_la_LDFLAGS = -module
 
-# with gcc we could use these
-#X_CFLAGS = -Wno-unused-parameter -Wno-unused-function
-# but we certainly have to override the default X_CFLAGS:
-X_CFLAGS = -D_GNU_SOURCE
+#  GNU's gcc does not like to compile swig-generated code
+#  (at least not with our strict X_CFLAGS), complaining about
+#  "warning: dereferencing type-punned pointer will break strict-aliasing 
rules",
+#  "warning: unused variable '...'",
+#  "warning: '...' defined but not used", and/or
+#  'error: "..." is not defined'.
+#  Hence, we use GCC_SWIG_CFLAGS to disable the respective warning
+#  as locally as possbile via "-Wno-strict-aliasing -Wno-unused-variable 
-Wno-unused-function -Wno-undef".
+#  Intel's icc does not like to compile swig-generated code
+#  (at least not with our strict X_CFLAGS), complaining about
+#  'error #869: parameter "..." was never referenced',
+#  'error #177: function "..." was declared but never referenced', and/or
+#  'error #310: old-style parameter list (anachronism)'.
+#  Hence, we use ICC_SWIG_CFLAGS to disable the respective warning
+#  as locally as possbile via "-wd869 -wd177 -wd310".
+#  (See also buildtools/conf/MonetDB.m4.)
+CFLAGS = $(GCC_SWIG_CFLAGS) $(ICC_SWIG_CFLAGS) -D_GNU_SOURCE
 
 lib_MapiLib = {
        PREFIX =

Index: MapiLib.pm.i
===================================================================
RCS file: /cvsroot/monetdb/clients/src/perl/Cimpl/MapiLib.pm.i,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- MapiLib.pm.i        3 Oct 2007 13:56:22 -0000       1.3
+++ MapiLib.pm.i        6 Nov 2007 14:35:00 -0000       1.4
@@ -101,7 +101,7 @@
 // TODO:
 // %typemap(out) char * { }
 
-%typemap(in) FILE * {
+%typemap(in) PerlIO * {
     $1 = IoIFP(sv_2io($input));
 }
 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to