summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorjdolecek <jdolecek>2003-01-20 17:48:45 +0000
committerjdolecek <jdolecek>2003-01-20 17:48:45 +0000
commitf98151165e7f64ec77877273ff7f929e3723cf28 (patch)
tree7b3c7a82e0079b672ca85d32b514678d664dad05 /databases
parent72e7106a87e58bf8af6da2e7dadf3f6b480eda6c (diff)
downloadpkgsrc-f98151165e7f64ec77877273ff7f929e3723cf28.tar.gz
need to include <signal.h> in my_pthread.h to be compilable
with native NetBSD threads - header uses sigset_t and not all sources pulling the header pull <signal.h> before my_pthread.h
Diffstat (limited to 'databases')
-rw-r--r--databases/mysql-server/distinfo3
-rw-r--r--databases/mysql-server/patches/patch-al12
2 files changed, 14 insertions, 1 deletions
diff --git a/databases/mysql-server/distinfo b/databases/mysql-server/distinfo
index 98c6a97efca..6ef1de98a06 100644
--- a/databases/mysql-server/distinfo
+++ b/databases/mysql-server/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.17 2002/12/13 14:19:54 tron Exp $
+$NetBSD: distinfo,v 1.18 2003/01/20 17:48:45 jdolecek Exp $
SHA1 (mysql-3.23.49.tar.gz) = 0256331c7aa9388955148f80cdca382f467ad1be
Size (mysql-3.23.49.tar.gz) = 11844905 bytes
@@ -13,3 +13,4 @@ SHA1 (patch-ah) = 7cd4278c9bdc5220de04f7e6b62bb8d11c892ffb
SHA1 (patch-ai) = 071e34cc9236b08cdc438afbb46801e66efc7e92
SHA1 (patch-aj) = 2e619c6f16a1256174fd3e6e4bca3214679a9347
SHA1 (patch-ak) = f484f0bd5b77e0475c7b693b51f5f5146795afa0
+SHA1 (patch-al) = 75b237ea28da2b44f05c0c0fb3493bba060004dc
diff --git a/databases/mysql-server/patches/patch-al b/databases/mysql-server/patches/patch-al
new file mode 100644
index 00000000000..557ea1ca7a8
--- /dev/null
+++ b/databases/mysql-server/patches/patch-al
@@ -0,0 +1,12 @@
+$NetBSD: patch-al,v 1.3 2003/01/20 17:48:48 jdolecek Exp $
+
+--- include/my_pthread.h.orig Mon Jan 20 18:40:49 2003
++++ include/my_pthread.h Mon Jan 20 18:40:58 2003
+@@ -21,6 +21,7 @@
+ #define _my_pthread_h
+
+ #include <errno.h>
++#include <signal.h>
+ #ifndef ETIME
+ #define ETIME ETIMEDOUT /* For FreeBSD */
+ #endif