Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use a nice va_copy if none was provided by the system
[simgrid.git] / configure.ac
1
2 ######################
3 ## Setup the autotools
4 ##
5
6 AC_PREREQ(2.59)
7 AC_INIT([simgrid],[2.96-cvs],[simgrid-devel@lists.gforge.inria.fr])
8 AC_CONFIG_SRCDIR([include/gras.h])
9 AC_CONFIG_HEADERS([src/gras_config.h])
10 # A CI_PREREQ(2003.01.16) # We need a recent ACI when having sub-modules
11
12 AC_REVISION($Revision$)
13 AC_CANONICAL_TARGET
14 AC_LANG([C])
15
16 AM_INIT_AUTOMAKE(gnu)
17 AC_CONFIG_MACRO_DIR(acmacro) 
18 ACLOCAL="$ACLOCAL -I acmacro"
19 AC_PROG_LIBTOOL
20
21 ###############
22 ## System checks
23 ##
24 SG_CONFIGURE_PART(System checks...)
25 AC_PROG_CC(xlC gcc cc)
26 AM_SANITY_CHECK
27 AC_PROG_MAKE_SET
28 AC_CHECK_PRINTF_NULL
29
30 # Checks for header files.
31 AC_HEADER_STDC
32 AC_HEADER_TIME
33 AC_CHECK_HEADERS([sys/socket.h \
34                   sys/stat.h \
35                   windows.h winsock.h winsock2.h \
36                   sys/time.h \
37                   errno.h unistd.h ])
38 AC_CHECK_FUNCS([gettimeofday usleep \
39                 getdtablesize \
40                 sysconf])
41                 
42 # check for a working snprintf (or use xbt/snprintf.c, which comes from http://www.ijs.si/software/snprintf/)
43 AC_FUNC_SNPRINTF
44 # check for asprintf function familly (or request the replacements from xbt/snprintf.c)
45 AC_CHECK_FUNC(  asprintf, :,   AC_DEFINE(NEED_ASPRINTF,  1,  enable the asprintf   replacement))
46 AC_CHECK_FUNC( vasprintf, :,   AC_DEFINE(NEED_VASPRINTF, 1,  enable the vasprintf  replacement))
47 # we don't use those:
48 # A C_CHECK_FUNC( asnprintf, :,   A C_DEFINE(NEED_ASNPRINTF,  1, enable the asnprintf  replacement))
49 # A C_CHECK_FUNC(vasnprintf, :,   A C_DEFINE(NEED_VASNPRINTF, 1, enable the vansprintf replacement))
50
51
52 # Checks for typedefs, structures, and compiler characteristics.
53 AC_C_CONST
54 AC_C_INLINE
55 AC_TYPE_SIZE_T
56
57 ###################################
58 ## SimGrid and GRAS specific checks
59 ##
60
61 SG_CONFIGURE_PART(Checking GRAS architecture signature...)
62 # Check architecture signature begin
63 GRAS_ARCH
64 # Check architecture signature end
65 GRAS_CHECK_STRUCT_COMPACTION
66
67
68 dnl ##
69 dnl ##  CONTEXT IMPLEMENTATION
70 dnl ##
71
72 SG_CONFIGURE_PART([Checking for threads, contexts or assimilated...])
73
74 dnl #
75 dnl #  1. determine possibilities
76 dnl #
77
78 dnl #  check for MCSC method
79 AC_MSG_CHECKING(on top of what can we build the contexts)
80 AC_CHECK_HEADER(ucontext.h,,, [#include <sys/types.h>])
81 AC_CHECK_FUNCS(makecontext swapcontext getcontext setcontext)
82 AC_CHECK_MCSC(mcsc=yes, mcsc=no)
83
84 dnl #  check for pthread method
85 AC_CHECK_HEADERS([pthread.h])
86 AC_CHECK_LIB(pthread,pthread_create,pthread=yes, pthread=no)
87
88 dnl #
89 dnl #  2. make a general decision
90 dnl #
91
92 if test ".$mcsc" = .yes; then
93    mcsc=yes
94 elif test ".$pthread" = .yes; then
95    pthread=yes
96 else
97     ac_header=windows.h
98     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
99     if test `eval echo '${'$as_ac_Header'}'` = yes; then
100       windows_context=yes
101     else
102       AC_ERROR([no appropriate backend found])
103     fi
104 fi
105
106 dnl #
107 dnl #  3. allow decision to be overridden by user
108 dnl #
109
110 AC_MSG_CHECKING(what kind of backend should we use)
111 AC_ARG_WITH(context,
112   [  --with-context=[ucontext/pthread]   Use either (System V) swapcontext or pthread [[default=auto]].],,
113   with_context=auto)
114 case $with_context in
115  ucontext) ;;
116  pthread) ;;
117  windows) ;;
118  auto) with_context=ucontext;;
119  *) AC_MSG_ERROR("--with-context must be either ucontext or pthread") ;;
120 esac
121
122 if test "x$with_context" = "xucontext" ; then
123   if test ".$mcsc" = .yes; then
124     AC_MSG_RESULT(found working ucontext. Great!)
125     AC_DEFINE([USE_UCONTEXT],1,[Define if we use ucontext or not])
126   else
127     if test ".$windows_context" = .yes ; then
128       AC_MSG_RESULT(use windows context portability layer.)
129       with_context=windows
130     else
131       AC_MSG_RESULT([[no working ucontext found. Try pthreads as a fallback]])
132       with_context=pthread
133     fi
134   fi
135 fi
136
137 if test "x$with_context" = "xpthread"; then
138   AC_CHECK_HEADERS([pthread.h])
139   AC_CHECK_LIB(pthread,pthread_create,,
140     [AC_MSG_ERROR([[Cannot find pthreads, no way (try --with-context=ucontext if you haven't already tried).]])])
141   AC_DEFINE([USE_PTHREADS],1,[Define if we use pthreads or not])
142   AC_MSG_RESULT(You have pthreads. Let's use them.)
143 fi
144
145 dnl #
146 dnl #  4. determine a few additional details
147 dnl #
148
149 if test "x$with_context" = "xucontext" ; then
150 dnl #  direction of stack grow
151   AC_CHECK_STACKGROWTH(PTH_STACKGROWTH)
152   if test ".$ac_cv_check_stackgrowth" = ".down"; then
153       PTH_STACK_GROWTH="down"
154   else
155       PTH_STACK_GROWTH="up"
156   fi
157   AC_SUBST(PTH_STACK_GROWTH)
158   
159   AC_CHECK_STACKSETUP(makecontext, pth_skaddr_makecontext, pth_sksize_makecontext)
160 fi
161
162 #########################################
163 ## Check for libraries extra-dependencies
164 ##
165
166 SG_CONFIGURE_PART(Checking extra libraries dependencies...)
167 SIMGRID_DEP=""
168 AC_SUBST([SIMGRID_DEP])
169
170 GRAS_DEP=""
171 AC_CHECK_LIB(nsl, gethostbyname, [GRAS_DEP="$GRAS_DEP -lnsl"])
172 AC_CHECK_LIB(socket, connect,    [GRAS_DEP="$GRAS_DEP -lsocket"])
173
174 AC_MSG_CHECKING(for extra dependencies of libgras)
175 case $host_os in
176   *mingw* ) GRAS_DEP="$GRAS_DEP -lws2_32" ; SIMGRID_DEP="$SIMGRID_DEP -lws2_32" ;;
177 esac
178            
179 if test "x$GRAS_DEP" = x; then 
180    AC_MSG_RESULT(none)
181 else
182    AC_MSG_RESULT($GRAS_DEP)
183 fi
184 AC_SUBST([GRAS_DEP])
185
186 ##############################################
187 ## Enhance maintainer mode and SUBST variables
188 ## (must be placed after any compilation tests since our overprotective flags
189 ##  let some tests fail)
190
191 AM_MAINTAINER_MODE
192 if test x$USE_MAINTAINER_MODE = xyes 
193 then
194    # Maintainers have no choice ! I'm a BOFH, and I plainly assume. [Mt]
195    enable_compile_warnings=yes
196 fi
197 SG_COMPILE_FLAGS
198
199 AC_SUBST(CFLAGS)
200 AC_SUBST(CPPFLAGS)
201 AC_SUBST(LDFLAGS)
202
203 #####################
204 ## Check for programs
205 ##
206
207 SG_CONFIGURE_PART(Check for programs...)
208 AC_CHECK_PROG(BASH, bash, `which bash`, /bin/sh)
209 WARNING="This file is generated, do not edit"
210 AC_SUBST(WARNING)
211
212 # Can we rebuild the parsers?
213 # We really want flex and refuse other lex. So, the parser is portable and
214 # does not induce extra lib dependency
215 AC_PROG_FLEX(2.5.30)
216                 
217 # Can we rebuild the xml-lexers from the XML specification?
218 # if not, simply touch the flex source files (which are distributed in
219 #  tarballs even if generated by flexml) and hope for the best.
220 AC_CHECK_PROG(FLEXML,flexml,`which flexml`,NOTFOUND)
221 AM_CONDITIONAL(HAVE_FLEXML,test x$FLEXML != xNOTFOUND)
222
223 ###################
224 ## Makes the output
225 ##
226
227
228 #    examples/pastry/Makefile    examples/pastry/test_sg
229 #      examples/gras/chord/Makefile  examples/gras/chord/test_sg examples/gras/chord/test_rl
230 #  src/amok/Makefile
231
232 SG_CONFIGURE_PART(Generating files...)
233 AC_CONFIG_FILES([
234   Makefile
235   include/Makefile
236   src/Makefile
237   src/ucontext_stack.h
238   examples/Makefile 
239     examples/msg/Makefile           examples/msg/run_msg_test
240     examples/gras/Makefile 
241       examples/gras/ping/Makefile   examples/gras/ping/test_sg  examples/gras/ping/test_rl
242       examples/gras/timer/Makefile  examples/gras/timer/test_sg examples/gras/timer/test_rl
243       examples/gras/chrono/Makefile examples/gras/chrono/test_sg examples/gras/chrono/test_rl
244       examples/gras/tokenS/Makefile examples/gras/tokenS/test_sg examples/gras/tokenS/test_rl
245     examples/amok/Makefile       
246       examples/amok/bandwidth/Makefile examples/amok/bandwidth/test_sg examples/amok/bandwidth/test_rl
247   doc/Makefile
248     doc/Doxyfile
249   tools/graspe-slave            tools/Makefile
250     tools/gras/Makefile
251   testsuite/Makefile
252   testsuite/run_tests    
253   testsuite/gras/trp_tcp_usage  testsuite/gras/trp_file_usage
254 ],[
255     for file in                                                 \
256      testsuite/run_tests                                        \
257      testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage \
258      tools/graspe-slave           tools/graspe-master           \
259      \
260      examples/amok/bandwidth/test_sg examples/amok/bandwidth/test_rl \
261      \
262      examples/gras/ping/test_sg   examples/gras/ping/test_rl    \
263      examples/gras/timer/test_sg  examples/gras/timer/test_rl   \
264      examples/gras/chrono/test_sg examples/gras/chrono/test_rl  \
265      examples/gras/tokenS/test_sg examples/gras/tokenS/test_rl  \
266      examples/msg/run_msg_test                                  \
267     ; do                                                        \
268       test -e $file && chmod +x $file;                          \
269     done
270 ])
271
272
273 #     examples/gras/chord/test_sg  examples/gras/chord/test_rl   \
274 #    examples/gras/pastry/test_sg   
275
276
277
278 #    examples/gras/saturate/Makefile  examples/gras/saturate/test_sg
279 #    examples/gras/alnem/Makefile     examples/gras/alnem/test_sg
280
281
282
283 AC_OUTPUT
284
285 echo "
286
287 Configuration of package \`${PACKAGE}' (version ${VERSION}) on $gras_arch_name (=$gras_arch):
288
289         Compiler:        ${CC} (version: ${GCC_VERSION})
290         
291         CFlags:          ${CFLAGS}
292         LDFlags:         ${LDFLAGS}
293
294         Context backend: ${with_context}
295 "
296
297 exit 0;