1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Update to 0.10.30

PR:		ports/192368
Submitted by:	Jin-Sih Lin <linpct@gmail.com> (maintainer)
This commit is contained in:
Frederic Culot 2014-08-05 18:47:47 +00:00
parent 285cad890f
commit b58167b290
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=364133
3 changed files with 3 additions and 23 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= node
PORTVERSION= 0.10.29
PORTVERSION= 0.10.30
CATEGORIES= www
MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/
DISTNAME= ${PORTNAME}-v${PORTVERSION}

View File

@ -1,2 +1,2 @@
SHA256 (node-v0.10.29.tar.gz) = 47379d01f765f87c1a1498b4e65de30e45201de50334954860d7375a8258b15d
SIZE (node-v0.10.29.tar.gz) = 13480496
SHA256 (node-v0.10.30.tar.gz) = 3dfcbd307f5f5f266ef174e1443107da853cd3d0aa0b2493a44235d5908625d2
SIZE (node-v0.10.30.tar.gz) = 13527922

View File

@ -1,20 +0,0 @@
--- src/node_constants.orig 2014-06-24 23:09:52.432840733 -0300
+++ src/node_constants.cc 2014-06-24 10:07:23.406890824 -0300
@@ -19,13 +19,13 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-// O_NONBLOCK is not exported unless _XOPEN_SOURCE >= 500.
-#if defined(_XOPEN_SOURCE) && _XOPEN_SOURCE < 500
-#undef _XOPEN_SOURCE
+// O_NONBLOCK is not exported unless _XOPEN_SOURCE >= 600.
+#if defined(_XOPEN_SOURCE) && _XOPEN_SOURCE < 600
+# undef _XOPEN_SOURCE
#endif
#if !defined(_XOPEN_SOURCE)
-#define _XOPEN_SOURCE 500
+# define _XOPEN_SOURCE 600
#endif
#include "node_constants.h"