Solaris 9 has no stdint.h, ugh. Reported by a couple of people most

recently Timothy Larson.
This commit is contained in:
Nicholas Marriott 2010-09-07 19:32:58 +00:00
parent afcc29a51d
commit f54482a461
6 changed files with 19 additions and 10 deletions

View File

@ -1,4 +1,4 @@
/* $Id: compat.h,v 1.25 2010-06-06 13:00:46 tcunha Exp $ */
/* $Id: compat.h,v 1.26 2010-09-07 19:32:58 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -85,6 +85,12 @@ typedef uint64_t u_int64_t;
#include <imsg.h>
#endif
#ifdef HAVE_STDINT_H
#include <stdint.h>
#else
#include <inttypes.h>
#endif
#ifdef HAVE_BROKEN_CMSG_FIRSTHDR
/* CMSG_FIRSTHDR broken on OS X. */
#undef CMSG_FIRSTHDR

9
configure vendored
View File

@ -1,5 +1,5 @@
#!/bin/sh
# $Id: configure,v 1.53 2010-06-06 13:00:47 tcunha Exp $
# $Id: configure,v 1.54 2010-09-07 19:32:58 nicm Exp $
#
# Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
#
@ -45,6 +45,7 @@ cat <<EOF >>$CONFIG_H
#undef HAVE_PTY_H
#undef HAVE_QUEUE_H
#undef HAVE_SETPROCTITLE
#undef HAVE_STDINT_H
#undef HAVE_STRCASESTR
#undef HAVE_STRLCAT
#undef HAVE_STRLCPY
@ -73,6 +74,7 @@ case $TMUX_PLATFORM in
#define HAVE_QUEUE_H
#define HAVE_SETENV
#define HAVE_SETPROCTITLE
#define HAVE_STDINT_H
#define HAVE_STRCASESTR
#define HAVE_STRLCAT
#define HAVE_STRLCPY
@ -99,6 +101,7 @@ EOF
#define HAVE_PROGNAME
#define HAVE_PTY_H
#define HAVE_SETENV
#define HAVE_STDINT_H
#define HAVE_STRCASESTR
#define HAVE_STRSEP
#define HAVE_U_INT
@ -124,6 +127,7 @@ EOF
#define HAVE_BZERO
#define HAVE_DAEMON
#define HAVE_SETENV
#define HAVE_STDINT_H
EOF
cat <<EOF >>$CONFIG_MK
LIBS+= -lcurses -levent
@ -184,6 +188,7 @@ EOF
#define HAVE_GETOPT
#define HAVE_PATHS_H
#define HAVE_PROGNAME
#define HAVE_STDINT_H
#define HAVE_SETENV
#define HAVE_STRCASESTR
#define HAVE_STRLCAT
@ -219,6 +224,7 @@ EOF
#define HAVE_PROGNAME
#define HAVE_SETENV
#define HAVE_SETPROCTITLE
#define HAVE_STDINT_H
#define HAVE_STRCASESTR
#define HAVE_STRLCAT
#define HAVE_STRLCPY
@ -248,6 +254,7 @@ EOF
#define HAVE_PROGNAME
#define HAVE_SETPROCTITLE
#define HAVE_SETENV
#define HAVE_STDINT_H
#define HAVE_STRCASESTR
#define HAVE_STRLCAT
#define HAVE_STRLCPY

View File

@ -1,4 +1,4 @@
/* $Id: input-keys.c,v 1.44 2009-12-04 22:14:47 tcunha Exp $ */
/* $Id: input-keys.c,v 1.45 2010-09-07 19:32:58 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -18,7 +18,6 @@
#include <sys/types.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>

3
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.574 2010-08-29 14:42:11 tcunha Exp $ */
/* $Id: tmux.h,v 1.575 2010-09-07 19:32:58 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -31,7 +31,6 @@
#include <limits.h>
#include <signal.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <termios.h>

View File

@ -1,4 +1,4 @@
/* $Id: window.c,v 1.136 2010-08-29 14:46:13 tcunha Exp $ */
/* $Id: window.c,v 1.137 2010-09-07 19:32:58 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -24,7 +24,6 @@
#include <fnmatch.h>
#include <pwd.h>
#include <signal.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>

View File

@ -1,4 +1,4 @@
/* $Id: xmalloc.c,v 1.12 2009-10-28 23:12:38 tcunha Exp $ */
/* $Id: xmalloc.c,v 1.13 2010-09-07 19:32:58 nicm Exp $ */
/*
* Copyright (c) 2004 Nicholas Marriott <nicm@users.sourceforge.net>
@ -20,7 +20,6 @@
#include <errno.h>
#include <libgen.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>