1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

core: fix compilation error with "pid_t" on Mac OS X (bug #34639)

This commit is contained in:
Sebastien Helleu
2011-10-25 08:27:06 +02:00
parent 71bef80ce2
commit 328d8e0f95
3 changed files with 6 additions and 1 deletions
+2 -1
View File
@@ -1,12 +1,13 @@
WeeChat ChangeLog
=================
Sébastien Helleu <flashcode@flashtux.org>
v0.3.7-dev, 2011-10-23
v0.3.7-dev, 2011-10-25
Version 0.3.7 (under dev!)
--------------------------
* core: fix compilation error with "pid_t" on Mac OS X (bug #34639)
* core: enable background process under Cygwin to connect to servers, fix
reconnection problem (bug #34626)
+2
View File
@@ -20,6 +20,8 @@
#ifndef __WEECHAT_HOOK_H
#define __WEECHAT_HOOK_H 1
#include <unistd.h>
#ifdef HAVE_GNUTLS
#include <gnutls/gnutls.h>
#endif
+2
View File
@@ -20,6 +20,8 @@
#ifndef __WEECHAT_XFER_H
#define __WEECHAT_XFER_H 1
#include <unistd.h>
#define weechat_plugin weechat_xfer_plugin
#define XFER_PLUGIN_NAME "xfer"