diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-09-02 12:30:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-09-02 12:30:56 +0000 |
commit | 26682256b3094074484cb31f927be5db00f5ef04 (patch) | |
tree | 350f4f915902ed7666d86dc3590a9e1cfef347a4 /configure | |
parent | 5838ee1263bfa427412d389e0886f4083ce3d8d5 (diff) | |
download | rtmux-26682256b3094074484cb31f927be5db00f5ef04.tar.gz rtmux-26682256b3094074484cb31f927be5db00f5ef04.tar.bz2 rtmux-26682256b3094074484cb31f927be5db00f5ef04.zip |
OS X CMSG_FIRSTHDR is broken.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.33 2009-08-26 08:58:39 nicm Exp $ +# $Id: configure,v 1.34 2009-09-02 12:30:56 nicm Exp $ TMUX_PLATFORM=${TMUX_PLATFORM:-`uname -s`} @@ -13,6 +13,7 @@ echo "# $TMUX_PLATFORM" >$CONFIG_MK cat <<EOF >>$CONFIG_H #undef HAVE_ASPRINTF +#undef HAVE_BROKEN_CMSG_FIRSTHDR #undef HAVE_BZERO #undef HAVE_CRYPT_H #undef HAVE_DAEMON @@ -168,6 +169,7 @@ EOF Darwin) cat <<EOF >>$CONFIG_H #define HAVE_ASPRINTF +#define HAVE_BROKEN_CMSG_FIRSTHDR #define HAVE_BZERO #define HAVE_DAEMON #define HAVE_FGETLN |