diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-08-20 12:49:18 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-08-20 12:49:18 +0000 |
commit | 2f517111effacf71698609aca353cba11da7b516 (patch) | |
tree | 5ba953805b9c0f76954104b301e5992ef3231788 /configure | |
parent | 9311e4255e6455399210e1ce1b836575a8b29519 (diff) | |
download | rtmux-2f517111effacf71698609aca353cba11da7b516.tar.gz rtmux-2f517111effacf71698609aca353cba11da7b516.tar.bz2 rtmux-2f517111effacf71698609aca353cba11da7b516.zip |
Solaris has no u_int32_t etc.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.30 2009-08-20 12:39:21 nicm Exp $ +# $Id: configure,v 1.31 2009-08-20 12:49:18 nicm Exp $ TMUX_PLATFORM=${TMUX_PLATFORM:-`uname -s`} @@ -36,6 +36,7 @@ cat <<EOF >>$CONFIG_H #undef HAVE_TTYDEFAULTS_H #undef HAVE_TTYDEFCHARS #undef HAVE_UTIL_H +#undef HAVE_U_INT #undef HAVE_VIS EOF @@ -64,6 +65,7 @@ case $TMUX_PLATFORM in #define HAVE_TTYDEFAULTS_H #define HAVE_TTYDEFCHARS #define HAVE_UTIL_H +#define HAVE_U_INT #define HAVE_VIS EOF cat <<EOF >>$CONFIG_MK @@ -87,6 +89,7 @@ EOF #define HAVE_STRCASESTR #define HAVE_STRSEP #define HAVE_TTYDEFAULTS_H +#define HAVE_U_INT EOF cat <<EOF >>$CONFIG_MK CFLAGS+= -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE @@ -178,6 +181,7 @@ EOF #define HAVE_TTYDEFAULTS_H #define HAVE_TTYDEFCHARS #define HAVE_UTIL_H +#define HAVE_U_INT EOF cat <<EOF >>$CONFIG_MK LIBS+= -lcurses @@ -210,6 +214,7 @@ EOF #define HAVE_STRTONUM #define HAVE_STRSEP #define HAVE_TTYDEFCHARS +#define HAVE_U_INT EOF cat <<EOF >>$CONFIG_MK LIBS+= -lcurses -lcrypt -lutil @@ -239,6 +244,7 @@ EOF #define HAVE_STRSEP #define HAVE_TTYDEFCHARS #define HAVE_UTIL_H +#define HAVE_U_INT EOF cat <<EOF >>$CONFIG_MK CPPFLAGS+= -I/usr/pkg/include |