diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-08-31 14:18:55 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-08-31 14:18:55 +0200 |
commit | 1beebdf01e9867a8fc6624a713e3c4d90b6d46a3 (patch) | |
tree | 2bd47582ae195c4ff3f93bcf585108b5b6f121a2 | |
parent | 8bb45494945f10c73855a58581a5e61be8ef1f7b (diff) | |
download | weechat-1beebdf01e9867a8fc6624a713e3c4d90b6d46a3.zip |
core: fix compilation with autotools on FreeBSD 12.0
-rw-r--r-- | ChangeLog.adoc | 1 | ||||
-rw-r--r-- | src/core/hook/wee-hook-timer.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog.adoc b/ChangeLog.adoc index 382f429e4..0398f8f96 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -58,6 +58,7 @@ Tests:: Build:: + * core: fix compilation with autotools on FreeBSD 12.0 * debian: disable Javascript plugin on Debian Buster/Bullseye (issue #1374) * python: compile with Python 3 by default * python: use pkg-config to detect Python (issue #1382) diff --git a/src/core/hook/wee-hook-timer.h b/src/core/hook/wee-hook-timer.h index 02717d29b..f8530ac72 100644 --- a/src/core/hook/wee-hook-timer.h +++ b/src/core/hook/wee-hook-timer.h @@ -21,6 +21,7 @@ #define WEECHAT_HOOK_TIMER_H #include <time.h> +#include <sys/time.h> struct t_weechat_plugin; struct t_infolist_item; |