File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ 2014-11-01 Dirk Eddelbuettel <edd@debian.org>
2+
3+ * src/api.cpp: Do not include execinfo.h on AIX, per r-devel discussion
4+ with Mike Beddo, and http://sf.net/p/predef/wiki/OperatingSystems/
5+
162014-10-29 Dirk Eddelbuettel <edd@debian.org>
27
38 * inst/include/Rcpp/Rmath.h: Comment out R::[dpqr]nbinom_mu functions as
Original file line number Diff line number Diff line change 33//
44// api.cpp: Rcpp R/C++ interface class library -- Rcpp api
55//
6- // Copyright (C) 2012 - 2013 Dirk Eddelbuettel and Romain Francois
6+ // Copyright (C) 2012 - 2014 Dirk Eddelbuettel and Romain Francois
77//
88// This file is part of Rcpp.
99//
@@ -34,7 +34,8 @@ using namespace Rcpp ;
3434#endif
3535
3636#if defined(__GNUC__)
37- #if defined(WIN32) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__CYGWIN__) || defined(__sun)
37+ #if defined(WIN32) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__CYGWIN__) || defined(__sun) || define(_AIX)
38+ // do nothing
3839 #else
3940 #include < execinfo.h>
4041
You can’t perform that action at this time.
0 commit comments