2009-05-14 01:27:00 +02:00
|
|
|
#!/bin/sh
|
2009-09-24 09:15:22 +02:00
|
|
|
# $Id: configure,v 1.41 2009-09-24 07:15:22 nicm Exp $
|
2009-05-14 02:34:25 +02:00
|
|
|
|
2009-05-17 00:06:01 +02:00
|
|
|
TMUX_PLATFORM=${TMUX_PLATFORM:-`uname -s`}
|
2009-05-14 01:27:00 +02:00
|
|
|
|
|
|
|
CONFIG_H=config.h
|
2009-07-02 00:28:56 +02:00
|
|
|
rm -f $CONFIG_H
|
|
|
|
echo "/* $TMUX_PLATFORM */" >$CONFIG_H
|
2009-05-14 01:27:00 +02:00
|
|
|
|
2009-05-17 00:06:01 +02:00
|
|
|
CONFIG_MK=config.mk
|
2009-07-02 00:28:56 +02:00
|
|
|
rm -f $CONFIG_MK
|
|
|
|
echo "# $TMUX_PLATFORM" >$CONFIG_MK
|
2009-05-14 01:27:00 +02:00
|
|
|
|
2009-05-18 21:18:41 +02:00
|
|
|
cat <<EOF >>$CONFIG_H
|
|
|
|
#undef HAVE_ASPRINTF
|
2009-09-02 14:30:56 +02:00
|
|
|
#undef HAVE_BROKEN_CMSG_FIRSTHDR
|
2009-08-20 14:25:17 +02:00
|
|
|
#undef HAVE_BZERO
|
2009-05-18 21:18:41 +02:00
|
|
|
#undef HAVE_CRYPT_H
|
|
|
|
#undef HAVE_DAEMON
|
|
|
|
#undef HAVE_FGETLN
|
|
|
|
#undef HAVE_FORKPTY
|
|
|
|
#undef HAVE_GETOPT
|
2009-08-14 23:13:48 +02:00
|
|
|
#undef HAVE_IMSG
|
2009-05-18 21:18:41 +02:00
|
|
|
#undef HAVE_LIBUTIL_H
|
|
|
|
#undef HAVE_PATHS_H
|
|
|
|
#undef HAVE_POLL
|
|
|
|
#undef HAVE_PROGNAME
|
|
|
|
#undef HAVE_PTY_H
|
|
|
|
#undef HAVE_QUEUE_H
|
|
|
|
#undef HAVE_SETPROCTITLE
|
2009-07-02 09:31:02 +02:00
|
|
|
#undef HAVE_STRCASESTR
|
2009-05-18 21:18:41 +02:00
|
|
|
#undef HAVE_STRLCAT
|
|
|
|
#undef HAVE_STRLCPY
|
2009-08-16 18:15:53 +02:00
|
|
|
#undef HAVE_STRSEP
|
2009-05-18 21:18:41 +02:00
|
|
|
#undef HAVE_STRTONUM
|
|
|
|
#undef HAVE_TREE_H
|
|
|
|
#undef HAVE_UTIL_H
|
2009-08-20 14:49:18 +02:00
|
|
|
#undef HAVE_U_INT
|
2009-06-25 22:27:32 +02:00
|
|
|
#undef HAVE_VIS
|
2009-05-18 21:18:41 +02:00
|
|
|
EOF
|
|
|
|
|
2009-05-17 00:06:01 +02:00
|
|
|
case $TMUX_PLATFORM in
|
2009-05-14 01:27:00 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
OpenBSD)
|
|
|
|
cat <<EOF >>$CONFIG_H
|
|
|
|
#define HAVE_ASPRINTF
|
2009-06-25 19:02:59 +02:00
|
|
|
#define HAVE_BITSTRING_H
|
2009-08-20 14:25:17 +02:00
|
|
|
#define HAVE_BZERO
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_DAEMON
|
|
|
|
#define HAVE_FGETLN
|
|
|
|
#define HAVE_FORKPTY
|
|
|
|
#define HAVE_GETOPT
|
|
|
|
#define HAVE_PATHS_H
|
|
|
|
#define HAVE_POLL
|
|
|
|
#define HAVE_PROGNAME
|
|
|
|
#define HAVE_QUEUE_H
|
|
|
|
#define HAVE_SETPROCTITLE
|
2009-07-02 09:31:02 +02:00
|
|
|
#define HAVE_STRCASESTR
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_STRLCAT
|
|
|
|
#define HAVE_STRLCPY
|
2009-08-16 18:15:53 +02:00
|
|
|
#define HAVE_STRSEP
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_STRTONUM
|
|
|
|
#define HAVE_TREE_H
|
|
|
|
#define HAVE_UTIL_H
|
2009-08-20 14:49:18 +02:00
|
|
|
#define HAVE_U_INT
|
2009-06-25 22:27:32 +02:00
|
|
|
#define HAVE_VIS
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
cat <<EOF >>$CONFIG_MK
|
2009-07-31 12:44:03 +02:00
|
|
|
LIBS+= -lcurses -lutil
|
2009-08-14 23:13:48 +02:00
|
|
|
SRCS+= osdep-openbsd.c \
|
|
|
|
compat/imsg-buffer.c \
|
|
|
|
compat/imsg.c
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
Linux)
|
|
|
|
cat <<EOF >>$CONFIG_H
|
|
|
|
#define HAVE_ASPRINTF
|
2009-08-20 14:25:17 +02:00
|
|
|
#define HAVE_BZERO
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_DAEMON
|
|
|
|
#define HAVE_FORKPTY
|
|
|
|
#define HAVE_PATHS_H
|
|
|
|
#define HAVE_POLL
|
|
|
|
#define HAVE_PROGNAME
|
|
|
|
#define HAVE_PTY_H
|
2009-07-02 09:31:02 +02:00
|
|
|
#define HAVE_STRCASESTR
|
2009-08-16 18:15:53 +02:00
|
|
|
#define HAVE_STRSEP
|
2009-08-20 14:49:18 +02:00
|
|
|
#define HAVE_U_INT
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
cat <<EOF >>$CONFIG_MK
|
2009-07-31 12:44:03 +02:00
|
|
|
CFLAGS+= -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE
|
|
|
|
LIBS+= -lncurses -lcrypt -lutil
|
2009-05-14 01:27:00 +02:00
|
|
|
SRCS+= osdep-linux.c \
|
|
|
|
compat/fgetln.c \
|
|
|
|
compat/strlcat.c \
|
|
|
|
compat/strlcpy.c \
|
|
|
|
compat/strtonum.c \
|
2009-06-25 22:27:32 +02:00
|
|
|
compat/getopt.c \
|
2009-08-09 17:53:02 +02:00
|
|
|
compat/vis.c \
|
2009-08-14 23:13:48 +02:00
|
|
|
compat/unvis.c \
|
|
|
|
compat/imsg-buffer.c \
|
|
|
|
compat/imsg.c
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
AIX)
|
|
|
|
cat <<EOF >>$CONFIG_H
|
2009-08-20 14:25:17 +02:00
|
|
|
#define HAVE_BZERO
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_DAEMON
|
|
|
|
EOF
|
|
|
|
cat <<EOF >>$CONFIG_MK
|
2009-07-31 12:44:03 +02:00
|
|
|
LIBS+= -lcurses
|
2009-05-14 01:27:00 +02:00
|
|
|
SRCS+= osdep-unknown.c \
|
|
|
|
compat/asprintf.c \
|
|
|
|
compat/bsd-poll.c \
|
|
|
|
compat/daemon.c \
|
|
|
|
compat/forkpty-aix.c \
|
2009-07-02 09:31:02 +02:00
|
|
|
compat/strcasestr.c \
|
2009-05-14 01:27:00 +02:00
|
|
|
compat/strlcat.c \
|
|
|
|
compat/strlcpy.c \
|
2009-08-16 18:15:53 +02:00
|
|
|
compat/strsep.c \
|
2009-05-14 01:27:00 +02:00
|
|
|
compat/strtonum.c \
|
|
|
|
compat/fgetln.c \
|
2009-06-25 22:27:32 +02:00
|
|
|
compat/getopt.c \
|
2009-08-09 17:53:02 +02:00
|
|
|
compat/vis.c \
|
2009-08-14 23:13:48 +02:00
|
|
|
compat/unvis.c \
|
|
|
|
compat/imsg-buffer.c \
|
|
|
|
compat/imsg.c
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
SunOS)
|
|
|
|
cat <<EOF >>$CONFIG_H
|
2009-05-14 09:49:23 +02:00
|
|
|
#define HAVE_CRYPT_H
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_POLL
|
|
|
|
#define HAVE_STRLCAT
|
|
|
|
#define HAVE_STRLCPY
|
|
|
|
EOF
|
|
|
|
cat <<EOF >>$CONFIG_MK
|
2009-09-04 16:48:25 +02:00
|
|
|
CFLAGS+= -D_XPG4_2 -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS
|
2009-07-31 12:44:03 +02:00
|
|
|
LIBS+= -lcurses -lsocket -lnsl
|
2009-05-14 01:27:00 +02:00
|
|
|
SRCS+= osdep-unknown.c \
|
|
|
|
compat/asprintf.c \
|
|
|
|
compat/daemon.c \
|
|
|
|
compat/fgetln.c \
|
|
|
|
compat/forkpty-sunos.c \
|
|
|
|
compat/getopt.c \
|
2009-07-02 09:31:02 +02:00
|
|
|
compat/strcasestr.c \
|
2009-08-16 18:15:53 +02:00
|
|
|
compat/strsep.c \
|
2009-06-25 22:27:32 +02:00
|
|
|
compat/strtonum.c \
|
2009-08-09 17:53:02 +02:00
|
|
|
compat/vis.c \
|
2009-08-14 23:13:48 +02:00
|
|
|
compat/unvis.c \
|
|
|
|
compat/imsg-buffer.c \
|
|
|
|
compat/imsg.c
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
Darwin)
|
|
|
|
cat <<EOF >>$CONFIG_H
|
|
|
|
#define HAVE_ASPRINTF
|
2009-09-02 14:30:56 +02:00
|
|
|
#define HAVE_BROKEN_CMSG_FIRSTHDR
|
2009-08-20 14:25:17 +02:00
|
|
|
#define HAVE_BZERO
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_DAEMON
|
|
|
|
#define HAVE_FGETLN
|
|
|
|
#define HAVE_FORKPTY
|
|
|
|
#define HAVE_GETOPT
|
|
|
|
#define HAVE_PATHS_H
|
|
|
|
#define HAVE_PROGNAME
|
2009-07-02 09:31:02 +02:00
|
|
|
#define HAVE_STRCASESTR
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_STRLCAT
|
|
|
|
#define HAVE_STRLCPY
|
2009-08-16 18:15:53 +02:00
|
|
|
#define HAVE_STRSEP
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_UTIL_H
|
2009-08-20 14:49:18 +02:00
|
|
|
#define HAVE_U_INT
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
cat <<EOF >>$CONFIG_MK
|
2009-07-31 12:44:03 +02:00
|
|
|
LIBS+= -lcurses
|
2009-05-14 01:27:00 +02:00
|
|
|
SRCS+= osdep-darwin.c \
|
|
|
|
compat/bsd-poll.c \
|
2009-06-25 22:27:32 +02:00
|
|
|
compat/strtonum.c \
|
2009-08-09 17:53:02 +02:00
|
|
|
compat/vis.c \
|
2009-08-14 23:13:48 +02:00
|
|
|
compat/unvis.c \
|
|
|
|
compat/imsg-buffer.c \
|
|
|
|
compat/imsg.c
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
FreeBSD|DragonFly)
|
|
|
|
cat <<EOF >>$CONFIG_H
|
|
|
|
#define HAVE_ASPRINTF
|
2009-08-20 14:25:17 +02:00
|
|
|
#define HAVE_BZERO
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_DAEMON
|
|
|
|
#define HAVE_FGETLN
|
|
|
|
#define HAVE_FORKPTY
|
|
|
|
#define HAVE_GETOPT
|
2009-05-14 01:45:26 +02:00
|
|
|
#define HAVE_LIBUTIL_H
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_PATHS_H
|
|
|
|
#define HAVE_POLL
|
|
|
|
#define HAVE_PROGNAME
|
|
|
|
#define HAVE_SETPROCTITLE
|
2009-07-02 09:31:02 +02:00
|
|
|
#define HAVE_STRCASESTR
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_STRLCAT
|
|
|
|
#define HAVE_STRLCPY
|
|
|
|
#define HAVE_STRTONUM
|
2009-08-16 18:15:53 +02:00
|
|
|
#define HAVE_STRSEP
|
2009-08-20 14:49:18 +02:00
|
|
|
#define HAVE_U_INT
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
cat <<EOF >>$CONFIG_MK
|
2009-07-31 12:44:03 +02:00
|
|
|
LIBS+= -lcurses -lcrypt -lutil
|
2009-08-14 23:13:48 +02:00
|
|
|
SRCS+= osdep-freebsd.c \
|
2009-08-16 21:48:17 +02:00
|
|
|
compat/vis.c \
|
|
|
|
compat/unvis.c \
|
2009-08-14 23:13:48 +02:00
|
|
|
compat/imsg-buffer.c \
|
|
|
|
compat/imsg.c
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
NetBSD)
|
|
|
|
cat <<EOF >>$CONFIG_H
|
|
|
|
#define HAVE_ASPRINTF
|
2009-08-20 14:25:17 +02:00
|
|
|
#define HAVE_BZERO
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_DAEMON
|
|
|
|
#define HAVE_FGETLN
|
|
|
|
#define HAVE_FORKPTY
|
|
|
|
#define HAVE_GETOPT
|
|
|
|
#define HAVE_PATHS_H
|
|
|
|
#define HAVE_POLL
|
|
|
|
#define HAVE_PROGNAME
|
|
|
|
#define HAVE_SETPROCTITLE
|
2009-07-02 09:31:02 +02:00
|
|
|
#define HAVE_STRCASESTR
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_STRLCAT
|
|
|
|
#define HAVE_STRLCPY
|
2009-08-16 18:15:53 +02:00
|
|
|
#define HAVE_STRSEP
|
2009-05-14 01:27:00 +02:00
|
|
|
#define HAVE_UTIL_H
|
2009-08-20 14:49:18 +02:00
|
|
|
#define HAVE_U_INT
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
cat <<EOF >>$CONFIG_MK
|
2009-07-31 12:44:03 +02:00
|
|
|
CPPFLAGS+= -I/usr/pkg/include
|
|
|
|
LDFLAGS+= -L/usr/pkg/lib
|
|
|
|
LIBS+= -lncurses -lcrypt -lutil
|
2009-05-14 02:40:58 +02:00
|
|
|
SRCS+= osdep-netbsd.c \
|
2009-08-14 23:13:48 +02:00
|
|
|
compat/strtonum.c \
|
2009-08-16 21:48:17 +02:00
|
|
|
compat/vis.c \
|
|
|
|
compat/unvis.c \
|
2009-08-14 23:13:48 +02:00
|
|
|
compat/imsg-buffer.c \
|
|
|
|
compat/imsg.c
|
2009-05-14 01:27:00 +02:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
# ------------------------------------------------------------------------------
|
2009-05-14 02:34:25 +02:00
|
|
|
*)
|
2009-05-17 00:06:01 +02:00
|
|
|
echo Unable to configure for $TMUX_PLATFORM
|
2009-05-14 02:34:25 +02:00
|
|
|
exit 1
|
2009-05-14 01:27:00 +02:00
|
|
|
esac
|
|
|
|
|
2009-05-17 00:06:01 +02:00
|
|
|
echo Configured for $TMUX_PLATFORM
|
2009-05-14 02:34:25 +02:00
|
|
|
exit 0
|