mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 10:52:56 +01:00
Merge pull request #675 from vortechs2000/fix_aix
Reference platform.h by ../src/platform.h - AIX is ignoring -I flags
This commit is contained in:
commit
1293f1b956
@ -24,7 +24,8 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "platform.hpp"
|
||||
/* Just specifying platform.hpp and relying on -I flags doesn't work on AIX */
|
||||
#include "../src/platform.hpp"
|
||||
|
||||
#if defined ZMQ_HAVE_WINDOWS
|
||||
#include <windows.h>
|
||||
|
@ -26,7 +26,8 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "platform.hpp"
|
||||
/* Just specifying platform.hpp and relying on -I flags doesn't work on AIX */
|
||||
#include "../src/platform.hpp"
|
||||
|
||||
#if defined ZMQ_HAVE_WINDOWS
|
||||
#include <windows.h>
|
||||
|
@ -22,7 +22,8 @@
|
||||
|
||||
#include "../include/zmq.h"
|
||||
#include "../include/zmq_utils.h"
|
||||
#include "platform.hpp"
|
||||
/* Just specifying platform.hpp and relying on -I flags doesn't work on AIX */
|
||||
#include "../src/platform.hpp"
|
||||
|
||||
#undef NDEBUG
|
||||
#include <time.h>
|
||||
|
Loading…
Reference in New Issue
Block a user