Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #6 from curtis18/master
Browse files Browse the repository at this point in the history
fix compiling issue
  • Loading branch information
yunnian authored Oct 15, 2019
2 parents 044687e + 163b37c commit 1782681
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion swoole_postgresql_coro.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@
#include "ext/swoole/php_swoole_cxx.h"
#include "config.h"

#ifdef __APPLE__
#include <libpq-fe.h>
//#include <postgresql/libpq-fe.h>
#endif

#ifdef __linux__
#include <postgresql/libpq-fe.h>
#endif

enum query_type
{
Expand Down

0 comments on commit 1782681

Please sign in to comment.