Skip to content

Instantly share code, notes, and snippets.

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by glib configure 2.28.7, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ ./configure --disable-dependency-tracking --disable-rebuilds --prefix=/usr/local/Cellar/glib/2.28.7 --with-libiconv=gnu --disable-debug
## --------- ##
## Platform. ##
@joeshaw
joeshaw / access.diff
Created January 29, 2011 03:21
add access(2) to node
diff --git i/lib/fs.js w/lib/fs.js
index d094462..ed21d56 100644
--- i/lib/fs.js
+++ w/lib/fs.js
@@ -401,6 +401,14 @@ fs.chownSync = function(path, uid, gid) {
return binding.chown(path, uid, gid);
};
+fs.access = function(path, amode, callback) {
+ binding.access(path, amode, callback || noop);