summaryrefslogtreecommitdiff
path: root/databases/pgpool-II-33/files/patch-watchdog__watchdog.h
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2018-08-02 11:54:36 +0000
committerRene Ladan <rene@FreeBSD.org>2018-08-02 11:54:36 +0000
commit3f09c8cde1b2b74ec500335fb6aa87436eec722a (patch)
treef8beea525d5f6ef6552deb990b4ef7463afccf3f /databases/pgpool-II-33/files/patch-watchdog__watchdog.h
parentUnbreak `math/orpie' against OCaml 4.05.0 and make it fetchable (diff)
Remove expired ports:
2018-07-31 net/rubygem-gitaly-proto096: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-gitaly-proto instead. 2018-07-31 security/tripwire12: unfetchable 2018-07-31 security/rubygem-rbnacl4: Obsoleted by update of www/gitlab-ce. Please use security/rubygem-rbnacl instead. 2018-07-31 www/rubygem-gon61: Obsoleted by update of www/gitlab-ce. Please use www/rubygem-gon instead. 2018-07-31 databases/pgpool-II-33: Will be deprecated by upstream, please switch to newer pgpool versions 2018-07-31 devel/rubygem-grape-entity060: Obsoleted by update of www/gitlab-ce. Please use devel/rubygem-grape-entity instead. 2018-07-31 net/rubygem-gitaly-proto099: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-gitaly-proto instead. 2018-07-31 net/rubygem-gitaly-proto095: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-gitaly-proto instead. 2018-07-31 net/rubygem-omniauth-github11: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-omniauth-github instead. 2018-07-31 net/rubygem-asset_sync220: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-asset_sync instead. 2018-07-31 www/rubygem-gollum-lib-gitlab: Obsoleted by update of www/gitlab-ce. Please use www/rubygem-gitlab-gollum-lib instead. 2018-08-01 www/py-django-threaded-multihost: Project development unmaintained 2018-08-01 www/py-django-keyedcache: Project development abandoned 2018-08-01 www/py-django-signals-ahoy: Project development unmaintained
Diffstat (limited to 'databases/pgpool-II-33/files/patch-watchdog__watchdog.h')
-rw-r--r--databases/pgpool-II-33/files/patch-watchdog__watchdog.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/databases/pgpool-II-33/files/patch-watchdog__watchdog.h b/databases/pgpool-II-33/files/patch-watchdog__watchdog.h
deleted file mode 100644
index 0429034a05a7..000000000000
--- a/databases/pgpool-II-33/files/patch-watchdog__watchdog.h
+++ /dev/null
@@ -1,31 +0,0 @@
---- watchdog/watchdog.h.orig 2018-02-13 05:20:52 UTC
-+++ watchdog/watchdog.h
-@@ -56,6 +56,28 @@
- #define WD_TIME_DIFF_SEC(a,b) (int)(((a).tv_sec - (b).tv_sec) + \
- ((a).tv_usec - (b).tv_usec) / 1000000.0)
-
-+/* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x) is true. */
-+#ifndef WIFSIGNALED
-+# define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f)
-+#endif
-+#ifndef WIFEXITED
-+# define WIFEXITED(x) (WTERMSIG (x) == 0)
-+#endif
-+#ifndef WIFSTOPPED
-+# define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f)
-+#endif
-+
-+/* The termination signal. Only to be accessed if WIFSIGNALED(x) is true. */
-+#ifndef WTERMSIG
-+# define WTERMSIG(x) ((x) & 0x7f)
-+#endif
-+
-+
-+/* The exit status. Only to be accessed if WIFEXITED(x) is true. */
-+#ifndef WEXITSTATUS
-+# define WEXITSTATUS(x) (((x) >> 8) & 0xff)
-+#endif
-+
- /*
- * packet number of watchdog negotiation
- */