Skip to content

Commit

Permalink
Merge branch 'xdebug_2_9' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Sep 30, 2020
2 parents 4a58673 + ddc6121 commit 539e2bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/debugger/com.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ static int xdebug_create_socket_unix(const char *path)
#if !WIN32 && !WINNT

/* For OSX and FreeBSD */
#if !defined(SOL_TCP) && defined(IPPROTO_TCP) && (defined(__APPLE__) || defined(__FreeBSD__))
#if !defined(SOL_TCP) && defined(IPPROTO_TCP)
# define SOL_TCP IPPROTO_TCP
#endif
#if !defined(TCP_KEEPIDLE) && defined(TCP_KEEPALIVE) && defined(__APPLE__)
#if !defined(TCP_KEEPIDLE) && defined(TCP_KEEPALIVE)
# define TCP_KEEPIDLE TCP_KEEPALIVE
#endif

Expand Down

0 comments on commit 539e2bb

Please sign in to comment.