aboutsummaryrefslogtreecommitdiff
path: root/configure
blob: 83bac60ea9ada77d6ca3bd9691be776ea6a58cc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#!/bin/sh
# $Id: configure,v 1.2 2009-05-13 23:29:45 nicm Exp $

CONFIG_H=config.h
CONFIG_MK=config.mk

echo "/* `uname` */" >$CONFIG_H
echo "# `uname`" >$CONFIG_MK

case `uname` in
# ------------------------------------------------------------------------------
    OpenBSD)
	cat <<EOF >>$CONFIG_H
#define HAVE_ASPRINTF
#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
#define HAVE_STRLCAT
#define HAVE_STRLCPY
#define HAVE_STRTONUM
#define HAVE_TREE_H
#define HAVE_UTIL_H
#define HAVE_VSYSLOG
EOF
	cat <<EOF >>$CONFIG_MK
SRCS+= osdep-openbsd.c
EOF
	;;
# ------------------------------------------------------------------------------
    Linux)
	cat <<EOF >>$CONFIG_H
#define HAVE_ASPRINTF
#define HAVE_DAEMON
#define HAVE_FORKPTY
#define HAVE_PATHS_H
#define HAVE_POLL
#define HAVE_PROGNAME
#define HAVE_PTY_H
#define HAVE_VSYSLOG
EOF
	cat <<EOF >>$CONFIG_MK
SRCS+= osdep-linux.c \
	compat/fgetln.c \
	compat/strlcat.c \
	compat/strlcpy.c \
	compat/strtonum.c \
        compat/getopt.c
CFLAGS+= -D_GNU_SOURCE -D_POSIX_SOURCE
LIBS+= -lcrypt -lutil
EOF
	;;
# ------------------------------------------------------------------------------
    AIX)
	cat <<EOF >>$CONFIG_H
#define HAVE_DAEMON
EOF
	cat <<EOF >>$CONFIG_MK
CPPFLAGS+= -I/usr/local/include/ncurses
SRCS+= osdep-unknown.c \
	compat/asprintf.c \
	compat/bsd-poll.c \
	compat/daemon.c \
	compat/forkpty-aix.c \
	compat/strlcat.c \
	compat/strlcpy.c \
	compat/strtonum.c \
       	compat/fgetln.c \
       	compat/getopt.c
EOF
	;;
# ------------------------------------------------------------------------------
    SunOS)
	cat <<EOF >>$CONFIG_H
#define HAVE_POLL
#define HAVE_STRLCAT
#define HAVE_STRLCPY
#define HAVE_VSYSLOG
EOF
	cat <<EOF >>$CONFIG_MK
CPPFLAGS+= -I/usr/local/include/ncurses
LDFLAGS+= -L/usr/gnu/lib
LIBS+= -lsocket -lnsl
SRCS+= osdep-unknown.c \
	compat/asprintf.c \
	compat/daemon.c \
	compat/fgetln.c \
	compat/forkpty-sunos.c \
	compat/getopt.c \
	compat/strtonum.c
EOF
	;;
# ------------------------------------------------------------------------------
    Darwin)
	cat <<EOF >>$CONFIG_H
#define HAVE_ASPRINTF
#define HAVE_DAEMON
#define HAVE_FGETLN
#define HAVE_FORKPTY
#define HAVE_GETOPT
#define HAVE_PATHS_H
#define HAVE_PROGNAME
#define HAVE_STRLCAT
#define HAVE_STRLCPY
#define HAVE_UTIL_H
#define HAVE_VSYSLOG
EOF
	cat <<EOF >>$CONFIG_MK
SRCS+= osdep-darwin.c \
	compat/bsd-poll.c \
	compat/strtonum.c
EOF
	;;
# ------------------------------------------------------------------------------
    FreeBSD|DragonFly)
	cat <<EOF >>$CONFIG_H
#define HAVE_ASPRINTF
#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
#define HAVE_STRLCAT
#define HAVE_STRLCPY
#define HAVE_STRTONUM
#define HAVE_LIBUTIL_H
#define HAVE_VSYSLOG
EOF
	cat <<EOF >>$CONFIG_MK
SRCS+= osdep-openbsd.c
LIBS+= -lcrypt
EOF
	;;
# ------------------------------------------------------------------------------
    NetBSD)
	cat <<EOF >>$CONFIG_H
#define HAVE_ASPRINTF
#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
#define HAVE_STRLCAT
#define HAVE_STRLCPY
#define HAVE_TREE_H
#define HAVE_UTIL_H
#define HAVE_VSYSLOG
EOF
	cat <<EOF >>$CONFIG_MK
SRCS+= osdep-openbsd.c
LIBS+= -lcrypt
EOF
	;;
# ------------------------------------------------------------------------------
esac

echo Configured for `uname`