1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Update to 1.7.28

This commit is contained in:
Pietro Cerutti 2011-08-05 07:46:53 +00:00
parent a90d2080ae
commit a8dd5eee1d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=278943
3 changed files with 18 additions and 3 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= fox
PORTVERSION= 1.7.27
PORTVERSION= 1.7.28
CATEGORIES= x11-toolkits
MASTER_SITES= http://www.fox-toolkit.org/ftp/ \
ftp://ftp.fox-toolkit.org/pub/

View File

@ -1,2 +1,2 @@
SHA256 (fox-1.7.27.tar.gz) = 72f2d7e56e091acce99bf5633c89a027563491e4c2f65075fe8d5c27e7970d26
SIZE (fox-1.7.27.tar.gz) = 4900117
SHA256 (fox-1.7.28.tar.gz) = 1179ec4c8c789ee33be704ecf66f8c3e317c69815eaf47a14d4142cdbae83b04
SIZE (fox-1.7.28.tar.gz) = 4899365

View File

@ -0,0 +1,15 @@
--- lib/FXThread.cpp.orig 2011-08-05 09:26:49.000000000 +0200
+++ lib/FXThread.cpp 2011-08-05 09:32:51.000000000 +0200
@@ -25,6 +25,12 @@
#include "FXAutoThreadStorageKey.h"
#include "FXThread.h"
+#ifdef __FreeBSD__
+#include <pthread_np.h>
+#include <sys/cpuset.h>
+#define cpu_set_t cpuset_t
+#endif
+
/*
Notes: