File: configure.in

package info (click to toggle)
libflux0 0.3.0-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,244 kB
  • ctags: 2,028
  • sloc: ansic: 15,937; sh: 7,704; java: 470; makefile: 126; lex: 108
file content (293 lines) | stat: -rw-r--r-- 7,111 bytes parent folder | download
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
dnl -------------------------------------
dnl Automake/autoconf input file for Flux
dnl -------------------------------------


dnl --- Reset CDPATH so that bash's cd does not print to stdout ---

CDPATH=


dnl --- Package configuration ---

AC_INIT()
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(flux, 0.3.0)
AC_SUBST(VERSION)
AC_SUBST(PACKAGE)

AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
AC_DEFINE_UNQUOTED(CPU, "$host_cpu")
AC_DEFINE_UNQUOTED(HOSTNAME, "`hostname`")

AM_CONFIG_HEADER(include/config.h)

AC_DEFINE(LIBFLUX_BUILD)

dnl --- Determine build target ---

case "${target}" in
    i386--mingw32)
        # Special stuff for Win NT
        cross_compiling=yes
        CC="i386--mingw32-gcc"
        CPP="i386--mingw32-gcc -E"
        RANLIB="i386--mingw32-ranlib"
        ac_cv_have_dev_random=no
        AC_DEFINE(USE_RAND_W32)
        ;;
    *-*-hpux*)
        if test -z "$GCC" ; then
            CFLAGS="$CFLAGS -Ae -D_HPUX_SOURCE"
        fi
        AC_DEFINE(USE_RAND_UNIX)
        ;;
		*cygwin*)
		    ac_cv_have_dev_random=no
		    AC_DEFINE(USE_RAND_W32)
				;;
    *)
        AC_DEFINE(USE_RAND_UNIX)
       ;;
esac

case "${target}" in
    i386--mingw32)
        PRINTABLE_OS_NAME="MingW32"
        ;;
    *-linux*)
        PRINTABLE_OS_NAME="GNU/Linux"
        ;;
		*CYGWIN*)
		    PRINTABLE_OS_NAME="GNU/Win32"
				;;
    *)
        PRINTABLE_OS_NAME=`uname -s || echo "Unknown"`
        ;;
esac
AC_DEFINE_UNQUOTED(PRINTABLE_OS_NAME, "$PRINTABLE_OS_NAME")

dnl Are these the best flags for OpenBSD?
case "${target}" in
    *-openbsd*)
        NAME_OF_DEV_RANDOM="/dev/srandom"
        NAME_OF_DEV_URANDOM="/dev/urandom"
        DYNLINK_MOD_CFLAGS="-shared -rdynamic -fpic -Wl,-Bshareable -Wl,-x"
        ;;
    *)
        NAME_OF_DEV_RANDOM="/dev/random"
        NAME_OF_DEV_URANDOM="/dev/urandom"
        DYNLINK_MOD_CFLAGS="-shared  -fPIC -lc"
        ;;
esac
AC_DEFINE_UNQUOTED(NAME_OF_DEV_RANDOM, "$NAME_OF_DEV_RANDOM")
AC_DEFINE_UNQUOTED(NAME_OF_DEV_URANDOM, "$NAME_OF_DEV_URANDOM")


dnl --- Check for general compilation options ---

AC_MSG_CHECKING([whether to support debugging])
AC_ARG_ENABLE(debug,
[  --enable-debug          enable debugging of library],
    debug=$enableval, debug=no)
AC_MSG_RESULT($debug)

AC_MSG_CHECKING([whether to support profiling])
AC_ARG_ENABLE(profile,
[  --enable-profile        enable profiling of library],
    profile=$enableval, profile=no)
AC_MSG_RESULT($profile)


dnl --- Check for passed options ---

AC_MSG_CHECKING([whether use of /dev/random is requested])
AC_ARG_ENABLE(dev-random,
[  --disable-dev-random    disable the use of dev random],
    try_dev_random=$enableval, try_dev_random=yes)
AC_MSG_RESULT($try_dev_random)

AC_MSG_CHECKING([whether assembler modules are requested])
AC_ARG_ENABLE(asm,
[  --disable-asm           do not use assembler modules],
		try_asm_modules=$enableval, try_asm_modules=yes)
AC_MSG_RESULT($try_asm_modules)
						 

dnl --- Set compiler flags ---

CFLAGS="$CFLAGS -O2 -Wall"

if test "$debug" = yes; then
  CFLAGS="$CFLAGS -g"
fi

if test "$profile" = yes; then
  CFLAGS="$CFLAGS -pg"
fi


dnl --- Checks for programs ---

AC_PROG_CC
AC_PROG_INSTALL
AM_PROG_LIBTOOL
AM_PROG_LEX


dnl --- Checks for libraries ---

AC_CHECK_LIB(socket, socket)
AC_CHECK_LIB(nsl, gethostbyname)


dnl --- Checks for header files ---

AC_HEADER_STDC
AC_CHECK_HEADERS(sys/time.h sys/ioctl.h sys/filio.h sys/types.h unistd.h)

AC_MSG_CHECKING(for timercmp in sys/time.h)
AC_EGREP_CPP(yes,
[#include <sys/time.h>
#ifdef timercmp
  yes
#endif
], AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_TIMERCMP), AC_MSG_RESULT(no))

AC_MSG_CHECKING(for timeradd in sys/time.h)
AC_EGREP_CPP(yes,
[#include <sys/time.h>
#ifdef timeradd
  yes
#endif
],
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_TIMERADD), AC_MSG_RESULT(no))

AC_MSG_CHECKING(for timersub in sys/time.h)
AC_EGREP_CPP(yes,
[#include <sys/time.h>
#ifdef timersub
  yes
#endif
], AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_TIMERSUB), AC_MSG_RESULT(no))


dnl --- Checks for typedefs, structs and compiler characteristics ---

AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_TYPE_SIGNAL
AC_DECL_SYS_SIGLIST
AC_HEADER_TIME

WK_CHECK_ENDIAN

WK_CHECK_TYPEDEF(byte, HAVE_BYTE_TYPEDEF)
WK_CHECK_TYPEDEF(ushort, HAVE_USHORT_TYPEDEF)
WK_CHECK_TYPEDEF(ulong, HAVE_ULONG_TYPEDEF)
WK_CHECK_TYPEDEF(u16, HAVE_U16_TYPEDEF)
WK_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF)

AC_CHECK_SIZEOF(unsigned short, 2)
AC_CHECK_SIZEOF(unsigned int, 4)
AC_CHECK_SIZEOF(unsigned long, 4)

if test "$ac_cv_sizeof_unsigned_short" = "0" \
   || test "$ac_cv_sizeof_unsigned_int" = "0" \
	 || test "$ac_cv_sizeof_unsigned_long" = "0"; then
		AC_MSG_WARN([Something is wrong with the sizes - using defaults.]);
fi

WK_CHECK_MLOCK

WK_CHECK_IPC
if test "$ac_cv_header_sys_shm_h" = "yes"; then
  AC_DEFINE(USE_SHM_COPROCESSING)
fi


dnl --- Check whether we have a random device ---

if test "$try_dev_random" = yes ; then
AC_CACHE_CHECK(for random device, ac_cv_have_dev_random,
[if test -c "$NAME_OF_DEV_RANDOM" && test -c "$NAME_OF_DEV_URANDOM" ; then
  ac_cv_have_dev_random=yes; else ac_cv_have_dev_random=no; fi])
if test "$ac_cv_have_dev_random" = yes; then
    AC_DEFINE(HAVE_DEV_RANDOM)
fi
else
    AC_MSG_CHECKING(for random device)
    ac_cv_have_dev_random=no
    AC_MSG_RESULT(disabled)
fi


dnl --- Set up assembler stuff ---

dnl AC_MSG_CHECKING(for mpi assembler functions)
dnl if test -f $srcdir/src/gnupg/mpi/config.links ; then
dnl    . $srcdir/src/gnupg/mpi/config.links
dnl    WK_LINK_FILES($mpi_ln_src, $mpi_ln_dst)
dnl    ac_cv_mpi_extra_asm_modules="$mpi_extra_modules"
dnl    ac_cv_mpi_sflags="$mpi_sflags"
dnl    ac_cv_mpi_config_done="yes"
dnl    AC_MSG_RESULT(done)
dnl else
dnl    AC_MSG_RESULT(failed)
dnl    AC_MSG_ERROR([$srcdir/src/gnupg/mpi/config.links missing!])
dnl fi
dnl MPI_EXTRA_ASM_OBJS=""
dnl if test "$ac_cv_mpi_extra_asm_modules" != ""; then
dnl WK_MSG_PRINT([mpi extra asm functions:])
dnl for i in $ac_cv_mpi_extra_asm_modules; do
dnl     WK_MSG_PRINT([$i])
dnl     MPI_EXTRA_ASM_OBJS="$MPI_EXTRA_ASM_OBJS $i.o"
dnl done
dnl AC_MSG_RESULT()
dnl fi
dnl AC_SUBST(MPI_EXTRA_ASM_OBJS)
dnl MPI_SFLAGS="$ac_cv_mpi_sflags"
dnl AC_SUBST(MPI_SFLAGS)

dnl WK_DO_LINK_FILES


dnl --- Checks for library functions ---

AC_PROG_GCC_TRADITIONAL
dnl AC_FUNC_SETVBUF_REVERSED
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(sleep usleep gettimeofday select socket inet_aton strdup \
               strspn asprintf vasprintf vfprintf vsprintf vsnprintf vsscanf \
							 strndup stpcpy getrusage setpgrp)

dnl --- Output ---

AC_OUTPUT(include/Makefile \
          src/Makefile \
					src/build/Makefile \
					src/cgi/Makefile \
					src/cipher/Makefile \
					src/comm/Makefile \
					src/fifobuf/Makefile \
					src/log/Makefile \
					src/mem/Makefile \
					src/misc/Makefile \
					src/proc/Makefile \
					src/random/Makefile \
					src/sock/Makefile \
					src/fstring/Makefile \
					src/tt/Makefile \
					src/mt/Makefile \
          src/tn/Makefile \
					src/url/Makefile \
					src/xml/Makefile \
          util/Makefile \
					util/test/Makefile \
					util/beauty/Makefile \
          Makefile)