Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
hack around the place to get the initialization phase of java working + cosmetics
[simgrid.git] / configure.ac
1
2 ######################
3 ## Setup the autotools
4 ##
5
6 AC_PREREQ(2.59)
7 AC_INIT([simgrid],[3.3-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
20 dnl Next few lines is a hack to prevent libtool checking for F77
21 m4_undefine([AC_PROG_F77])
22 m4_defun([AC_PROG_F77],[])
23
24 dnl We do build a proper DLL when using win32
25 AC_LIBTOOL_WIN32_DLL
26 AC_PROG_LIBTOOL
27
28 ###############
29 ## System checks
30 ##
31 SG_CONFIGURE_PART(System checks...)
32 AC_PROG_CC(xlC gcc cc)
33 AM_SANITY_CHECK
34 AC_PROG_MAKE_SET
35 AC_CHECK_PRINTF_NULL
36 AC_CHECK_VA_COPY
37
38 # Checks for header files.
39 AC_HEADER_STDC
40 AC_HEADER_TIME
41 AC_CHECK_HEADERS([sys/socket.h \
42                   sys/stat.h \
43                   windows.h winsock.h winsock2.h \
44                   sys/time.h \
45                   errno.h unistd.h \
46                   execinfo.h\
47                   signal.h ])
48 AC_CHECK_FUNCS([gettimeofday usleep \
49                 getdtablesize \
50                 sysconf\
51                 readv\
52                 popen\
53                 signal\
54                 getline])
55                 
56 # check for a working snprintf (or use xbt/snprintf.c, which comes from http://www.ijs.si/software/snprintf/)
57 AC_FUNC_SNPRINTF
58 # check for asprintf function familly (or request the replacements from xbt/snprintf.c)
59 AC_CHECK_FUNC(  asprintf, :,   AC_DEFINE(NEED_ASPRINTF,  1,  enable the asprintf   replacement))
60 AC_CHECK_FUNC( vasprintf, :,   AC_DEFINE(NEED_VASPRINTF, 1,  enable the vasprintf  replacement))
61
62 # Checks for typedefs, structures, and compiler characteristics.
63 AC_C_CONST
64 AC_C_INLINE
65 AC_TYPE_SIZE_T
66
67 ###################################
68 ## SimGrid and GRAS specific checks
69 ##
70
71 SG_CONFIGURE_PART(Checking GRAS architecture signature...)
72 # Check architecture signature begin
73 GRAS_ARCH
74 # Check architecture signature end
75 GRAS_CHECK_STRUCT_COMPACTION
76
77
78 dnl ##
79 dnl ##  CONTEXT IMPLEMENTATION
80 dnl ##
81
82 SG_CONFIGURE_PART([Checking for threads, contexts or assimilated...])
83
84 dnl #
85 dnl #  1. determine possibilities
86 dnl #
87
88 dnl #  check for MCSC method
89 AC_CHECK_MCSC(mcsc=yes, mcsc=no) 
90
91 dnl #  check for pthread method
92 AC_CHECK_HEADERS([pthread.h])
93 AC_CHECK_LIB(pthread,pthread_create,pthread=yes, pthread=no)
94
95 dnl #
96 dnl #  2. make a general decision
97 dnl #
98
99 if test ".$mcsc" = .yes; then
100    mcsc=yes
101 elif test ".$pthread" = .yes; then
102    pthread=yes
103 else
104     ac_header=windows.h
105     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
106     if test `eval echo '${'$as_ac_Header'}'` = yes; then
107       windows_context=yes
108     else
109       AC_ERROR([no appropriate backend found])
110     fi
111 fi
112
113 dnl #
114 dnl #  3. allow decision to be overridden by user
115 dnl #
116
117 AC_MSG_CHECKING(what kind of backend should we use)
118
119 AC_ARG_WITH(pthread, [  --with-pthread   Use pthread instead of ucontext.],with_context=pthread)
120 AC_ARG_WITH(pthread, [  --with-pthreads   Use pthread instead of ucontext.],with_context=pthread)
121
122 AC_ARG_WITH(context,
123   [  --with-context=[ucontext/pthread]   Use either (System V) swapcontext or pthread [[default=auto]].],,
124   with_context=auto)
125
126 if test "x$with_context$mcsc" = "xucontextno" ; then 
127   AC_MSG_ERROR([--with-context=ucontext specified but ucontext unusable. Relaunch configure without this argument.], 77)
128 fi
129
130 case $with_context in
131  ucontext) ;;
132  pthread) ;;
133  pthreads) ;;
134  windows) ;;
135  auto) with_context=ucontext;;
136  *) AC_MSG_ERROR([--with-context must be either ucontext or pthread]) ;;
137 esac
138
139 if test "x$with_context" = "xucontext" ; then
140   if test ".$mcsc" = .yes; then
141     AC_MSG_RESULT(found working ucontext. Great!)
142     AC_DEFINE([CONTEXT_UCONTEXT],1,[Define if xbt contexts are based on ucontext or not])
143   else
144     if test ".$windows_context" = .yes ; then
145       AC_MSG_RESULT(use windows context portability layer.)
146       with_context=windows
147     else
148       AC_MSG_RESULT([[no working ucontext found. Try pthreads as a fallback]])
149       with_context=pthread
150     fi
151   fi
152 fi
153
154 if test "x$with_context" = "xpthreads"; then
155   with_context=pthread
156 fi
157 if test "x$with_context" = "xpthread"; then
158   AC_CHECK_HEADERS([pthread.h])
159   AC_CHECK_LIB(pthread,pthread_create,,
160     [AC_MSG_ERROR([[Cannot find pthreads (try --with-context=ucontext if you haven't already tried).]])])
161   AC_DEFINE([CONTEXT_THREADS],1,[Define if xbt contexts are based on our threads implementation or not])
162   AC_MSG_RESULT(You have pthreads. Let's use them.)
163 fi
164
165 dnl #
166 dnl #  4. determine a few additional details
167 dnl #
168
169 if test "x$with_context" = "xucontext" ; then
170 dnl #  direction of stack grow
171   AC_CHECK_STACKGROWTH(PTH_STACKGROWTH)
172   if test ".$ac_cv_check_stackgrowth" = ".down"; then
173       PTH_STACK_GROWTH="down"
174   else
175       PTH_STACK_GROWTH="up"
176   fi
177   AC_SUBST(PTH_STACK_GROWTH)
178   
179   AC_CHECK_STACKSETUP(makecontext, pth_skaddr_makecontext, pth_sksize_makecontext)
180 fi
181
182 #########################################
183 ## Check for libraries extra-dependencies
184 ##
185
186 SG_CONFIGURE_PART(Checking extra libraries dependencies...)
187
188 SIMGRID_DEP=""
189 GRAS_DEP=""
190
191 #########################################
192 ## Build optional modules (gtnets)
193 ##
194 AC_ARG_WITH(gtnets,
195   AS_HELP_STRING([--with-gtnets], [Path to GTNetS installation (default to empty, ie not using GTNetS)]),
196   gtnets_path="$withval",gtnets_path="NO")
197 if test "x$gtnets_path" = "xNO" ; then
198   AC_MSG_RESULT(Eventually you will come to GTNetS.)
199 else  
200   AC_MSG_RESULT(***** You have decided to use the experimental GTNetS. We hope you know what you're doing.. ****)
201   AC_DEFINE(USE_GTNETS, 1, [Indicates whether we should use GTNetS or not])
202   if ! test -e $gtnets_path ; then
203     AC_MSG_ERROR(Provided path to GTNetS include files ($gtnets_path) do not exist!)
204   fi
205   GTNETS_CFLAGS=-I$gtnets_path/include
206   AC_SUBST([GTNETS_CFLAGS])  
207   GTNETS_LDFLAGS=-L$gtnets_path/lib
208   AC_SUBST([GTNETS_LDFLAGS])
209   SIMGRID_DEP="$SIMGRID_DEP $GTNETS_LDFLAGS -lgtnets"
210 fi
211 AM_CONDITIONAL(USE_GTNETS,test "x$gtnets_path" != xNO)
212
213 if test xpthread=xyes ; then 
214   # if the pthreads are usable
215   if test "x$with_context" = "xpthread" ; then
216     # if we use them to implement the xbt_context
217     SIMGRID_DEP="-lpthread"
218   fi
219   # we need them in any case for the gras lib (which is multithreaded)
220   GRAS_DEP="-lpthread"
221 fi
222
223 AC_MSG_CHECKING(for csdp)
224 sdp=no
225 AC_CHECK_LIB(sdp,sdp,csdp=yes, csdp=no,-llapack -lblas -lm)
226 if test "x$csdp" = xyes; then 
227   SIMGRID_DEP="$SIMGRID_DEP -lsdp -llapack -lblas -lm"
228   AC_MSG_RESULT(Found working sdp library.)
229   AC_DEFINE(HAVE_SDP, 1, [Indicates whether we have the CSDP library or not])
230 else
231   AC_MSG_RESULT(Could not find any working sdp library.)
232 fi;
233 AM_CONDITIONAL(HAVE_SDP,test x$csdp != xno)
234
235 AC_SUBST([SIMGRID_DEP])
236
237 AC_CHECK_LIB(nsl, gethostbyname, [GRAS_DEP="$GRAS_DEP -lnsl"])
238 AC_CHECK_LIB(socket, connect,    [GRAS_DEP="$GRAS_DEP -lsocket"])
239
240 AC_MSG_CHECKING(for extra dependencies of libgras)
241 case $host_os in
242   *mingw* ) GRAS_DEP="$GRAS_DEP -lws2_32" ; SIMGRID_DEP="$SIMGRID_DEP -lws2_32";
243             AC_SUBST(AM_CFLAGS,-DDLL_EXPORT)
244             AC_DEFINE(CONTEXT_THREADS,1);;
245 esac
246            
247 if test "x$GRAS_DEP" = x; then 
248    AC_MSG_RESULT(none)
249 else
250    AC_MSG_RESULT($GRAS_DEP)
251 fi
252 AC_SUBST([GRAS_DEP])
253
254
255 ##############################################
256 ## Enhance maintainer mode and SUBST variables
257 ## (must be placed after any compilation tests since our overprotective flags
258 ##  let some tests fail)
259
260 # Check whether we are doing a regular build or a GRAMINE (minimal) one
261 # Next line is modified by sed when building gramine source tree
262 gramine_mode=no
263 if test x$gramine_mode = xyes
264 then
265   USE_MAINTAINER_MODE=no
266 fi
267 AM_CONDITIONAL(GRAMINE_MODE,test x$gramine_mode != xno)
268
269
270 AM_MAINTAINER_MODE
271 if test x$USE_MAINTAINER_MODE = xyes 
272 then
273    # Maintainers have no choice ! I'm a BOFH, and I plainly assume. [Mt]
274    enable_compile_warnings=yes   
275 fi
276 SG_COMPILE_FLAGS
277
278 AC_SUBST(CFLAGS)
279 AC_SUBST(CPPFLAGS)
280 AC_SUBST(LDFLAGS)
281 AC_SUBST([abs_builddir])
282 AC_SUBST([abs_srcdir])
283 AC_SUBST([abs_top_builddir])
284 AC_SUBST([abs_top_srcdir])
285
286 #####################
287 ## Check for programs
288 ##
289
290 SG_CONFIGURE_PART(Check for programs...)
291 AC_CHECK_PROG(BASH, bash, `which bash`, /bin/sh)
292 WARNING="This file is generated, do not edit"
293 AC_SUBST(WARNING)
294
295
296 # Can we rebuild the parsers?
297 # We really want flex and refuse other lex. So, the parser is portable and
298 # does not induce extra lib dependency
299 AC_PROG_FLEX(2.5.30)
300                 
301 # Can we rebuild the xml-lexers from the XML specification?
302 # if not, simply touch the flex source files (which are distributed in
303 #  tarballs even if generated by flexml) and hope for the best.
304 AC_CHECK_PROG(FLEXML,flexml,`which flexml`,NOTFOUND)
305 AM_CONDITIONAL(HAVE_FLEXML,test x$FLEXML != xNOTFOUND)
306
307 if test x$USE_MAINTAINER_MODE = xyes 
308 then
309    # Check for doxygen when in maintainer mode since dist* targets fail
310    # without it
311    AC_PATH_PROG(DOXYGEN,doxygen,`which doxygen`)
312    if test x$DOXYGEN = x ; then 
313      AC_MSG_ERROR([doxygen is mandatory in maintainer mode])
314    fi
315 fi
316
317 # Can we extract really usable backtraces? (also need the popen function)
318 AC_PATH_PROG(ADDR2LINE, addr2line)
319 if test x$ADDR2LINE != x ; then
320   AC_DEFINE_UNQUOTED(ADDR2LINE,"$ADDR2LINE",[Path to the addr2line tool])
321 fi
322
323 AC_SUBST(ac_configure_args)
324 # Can we make status line about the compilation result?
325 AC_CHECK_PROG(MD5SUM,md5sum,`which md5sum`)
326 if test x$MD5SUM != xno ; then
327   build_version=`find -name '*.[ch]' |grep -v src/ucontext_stack.h | grep -v src/gras_config.h |\ 
328                  xargs cat| $MD5SUM | sed 's/ .*$//'`
329 else 
330   build_version="no_md5sum_binary"
331 fi
332 build_id="$PACKAGE ver=$VERSION build=$build_version args=\"$ac_configure_args\""
333 AC_SUBST(build_id)
334
335 ###################
336 ## Makes the output
337 ##
338
339
340 #
341 #      examples/gras/chord/Makefile  examples/gras/chord/test_sg examples/gras/chord/test_rl
342 #  src/amok/Makefile
343
344 SG_CONFIGURE_PART(Generating files...)
345
346 # Core of the libraries
347
348 AC_CONFIG_FILES([
349   Makefile
350   include/Makefile
351   src/Makefile
352   src/ucontext_stack.h
353 ])
354
355 # Tools being embeeded in gramine (stub generator)
356 AC_CONFIG_FILES([
357   tools/Makefile
358     tools/gras/Makefile
359     tools/tesh/Makefile
360 ])
361
362
363 # GRAMINE_CUT_BEGIN
364
365 # Tools NOT being embeeded in gramine
366 AC_CONFIG_FILES([
367   tools/graspe-slave
368 ],[
369     for file in                                                 \
370      tools/graspe-slave           tools/graspe-master           \
371     ; do                                                        \
372       test -e $file && chmod +x $file;                          \
373     done
374 ])
375
376 # Testsuite
377
378 AC_CONFIG_FILES([  
379   testsuite/Makefile
380   testsuite/run_tests    
381   testsuite/gras/trp_tcp_usage  testsuite/gras/trp_file_usage
382 ],[
383     for file in                                                 \
384      testsuite/run_tests                                        \
385      testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage \
386     ; do                                                        \
387       test -e $file && chmod +x $file;                          \
388     done
389 ])
390
391 # Documentation
392 AC_CONFIG_FILES([
393   doc/Makefile
394   doc/Doxyfile
395 ])
396
397 # Examples
398
399 #      examples/gras/p2p/Makefile
400 #      examples/gras/p2p/chord/Makefile
401 #      examples/gras/p2p/can/Makefile
402
403 AC_CONFIG_FILES([
404   examples/Makefile 
405     examples/msg/Makefile
406       examples/msg/basic.tesh         examples/msg/small_plat.tesh 
407       examples/msg/suspend.tesh       examples/msg/flexml_bypass.tesh 
408     examples/simdag/Makefile        examples/simdag/test_simdag
409     examples/gras/Makefile
410       examples/gras/ping/Makefile   
411       examples/gras/rpc/Makefile
412       examples/gras/timer/Makefile
413       examples/gras/chrono/Makefile
414       examples/gras/mutual_exclusion/simple_token/Makefile
415       examples/gras/mmrpc/Makefile
416       examples/gras/pmm/Makefile
417       examples/gras/all2all/Makefile
418
419       
420     examples/amok/Makefile       
421       examples/amok/bandwidth/Makefile examples/amok/bandwidth/test_sg examples/amok/bandwidth/test_rl
422       examples/amok/saturate/Makefile  examples/amok/saturate/test_sg  examples/amok/saturate/test_rl
423 ],[
424     for file in                                                 \
425      \
426      examples/msg/run_msg_test                                  \
427      examples/simdag/test_simdag                                \
428      examples/amok/bandwidth/test_sg examples/amok/bandwidth/test_rl \
429      examples/amok/saturate/test_sg  examples/amok/saturate/test_rl \
430     ; do                                                        \
431       test -e $file && chmod +x $file;                          \
432     done
433 ])
434
435
436 # GRAMINE_CUT_END
437
438 AC_OUTPUT
439
440 echo "
441
442 Configuration of package \`${PACKAGE}' (version ${VERSION}) on $gras_arch_name (=$gras_arch):
443
444         Compiler:        ${CC} (version: ${GCC_VERSION})
445         
446         CFlags:          ${CFLAGS}
447         CPPFlags:        ${CPPFLAGS}
448         LDFlags:         ${LDFLAGS}
449
450         Context backend: ${with_context}
451 "
452
453 if test -e CVS && test x$USE_MAINTAINER_MODE != xyes ; then
454   echo "WARNING:"
455   echo "WARNING: you seem to compile the CVS version without the maintainer mode."
456   echo "WARNING: You won't be able to build archives that way (make dist is likely to fail). "
457   echo "WARNING: If you want to enable the maintainer mode, juste specify it like this:"
458   echo "WARNING:"
459   echo "WARNING: ./configure '--enable-maintainer-mode' $ac_configure_args"
460   echo "WARNING:"
461 fi
462 echo $build_id > stamp.configure
463
464 exit 0;