[Rinside-commits] r150 - in pkg: inst src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Apr 21 16:02:10 CEST 2010


Author: edd
Date: 2010-04-21 16:02:10 +0200 (Wed, 21 Apr 2010)
New Revision: 150

Modified:
   pkg/inst/ChangeLog
   pkg/src/Makefile
Log:
no longer use -Wall in Makefile


Modified: pkg/inst/ChangeLog
===================================================================
--- pkg/inst/ChangeLog	2010-04-21 13:59:53 UTC (rev 149)
+++ pkg/inst/ChangeLog	2010-04-21 14:02:10 UTC (rev 150)
@@ -3,6 +3,9 @@
 	* src/MemBuf.cpp: Added #include <string.h> so that even Solaris sees
 	  strlen() -- with thanks to Brian Ripley
 
+	* src/Makefile: Remove -Wall option which Solaris cc does not
+	  support -- with thanks to Brian Ripley
+
 2010-04-05  Dirk Eddelbuettel  <edd at debian.org>
 
 	* src/RInside.cpp: Add #ifdef to Callback code to break on Windows

Modified: pkg/src/Makefile
===================================================================
--- pkg/src/Makefile	2010-04-21 13:59:53 UTC (rev 149)
+++ pkg/src/Makefile	2010-04-21 14:02:10 UTC (rev 150)
@@ -2,7 +2,8 @@
 ##
 ## R/C++ interface class library -- Easier R embedding into C++
 ##
-## Copyright (C) 2009 - 2010 Dirk Eddelbuettel
+## Copyright (C) 2009        Dirk Eddelbuettel 
+## Copyright (C) 2009 - 2010 Dirk Eddelbuettel and Romain Francois
 ##
 ## This file is part of RInside.
 ##
@@ -42,7 +43,7 @@
 RCPPINCL := 		$(shell echo 'Rcpp:::CxxFlags()' | $(R_HOME)/bin/R --vanilla --slave)
 
 CXX := 			$(shell $(R_HOME)/bin/R CMD config CXX)
-CPPFLAGS := 		-Wall $(RCPPFLAGS) $(RCPPINCL) 
+CPPFLAGS := 		$(RCPPFLAGS) $(RCPPINCL) 
 CXXFLAGS := 		-I. $(RCPPFLAGS) $(shell $(R_HOME)/bin/R CMD config CXXFLAGS)
 LDFLAGS	= 		-s
 LDLIBS = 		$(RLDFLAGS)



More information about the Rinside-commits mailing list