From be4da7424e43c9a801c5c4cb880bdfd9a8cf683c Mon Sep 17 00:00:00 2001 From: psychon Date: Sun, 26 Apr 2009 07:24:57 +0000 Subject: [PATCH] Utils.h: Include fcntl.h fcntl.h is needed for fcntl() and defines like FD_CLOEXEC, F_SETFD and F_GETFD. This worked so far, because some C++ header pulled in fcntl.h, but there are systems out there for which this is not true. (Found on solaris) Thanks to sartek. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1497 726aef4b-f618-498e-8847-2d620e286838 --- Utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Utils.h b/Utils.h index de344941..e9f8e984 100644 --- a/Utils.h +++ b/Utils.h @@ -12,6 +12,7 @@ #include "ZNCString.h" #include #include +#include #include #include #include