* maint: Update docs Fix ptrace(3)/startup on OpenBSD after 868acbfc1a
@@ -2,6 +2,8 @@
* Require C++11 compiler support (G++ 4.7+, clang32+)
# maint
+ * Fix various compile warnings
+ * Fix ptrace detection on OpenBSD (after 1.4.6 regression for the Linux fix)
# 1.4.8
* Support Debian/Ubuntu's libssl1.0.0[:i386] package.
@@ -385,7 +385,7 @@ void check_trace(int start)
/* Linux compat or otherwise removed syscall. Just ignore. */
errno != ENOSYS &&
/* EPERM is given on fbsd when security.bsd.unprivileged_proc_debug=0 */
-#ifdef __FreeBSD__
+#ifndef __linux__
errno != EPERM &&
#endif
errno != EINVAL) {