Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Better Java philosophy: create a new type of tasks to mean terminaison instead of...
[simgrid.git] / configure.ac
1 dnl Copyright (C) 2004-2007. The SimGrid team. All rights reserved.
2
3 dnl This file is part of the SimGrid project. This is free software:
4 dnl You can redistribute and/or modify it under the terms of the
5 dnl GNU LGPL (v2.1) licence.
6
7 ######################
8 ## Setup the autotools
9 ##
10
11 AC_PREREQ(2.59)
12 AC_INIT([simgrid],[3.3-cvs],[simgrid-devel@lists.gforge.inria.fr])
13 AC_CONFIG_SRCDIR([include/gras.h])
14 AC_CONFIG_HEADERS([src/gras_config.h])
15 # A CI_PREREQ(2003.01.16) # We need a recent ACI when having sub-modules
16
17 AC_REVISION($Revision$)
18 AC_CANONICAL_TARGET
19 AC_LANG([C])
20 AM_PROG_GCJ
21
22 AM_INIT_AUTOMAKE([gnu -Wno-portability])
23 AC_CONFIG_MACRO_DIR(acmacro) 
24 ACLOCAL="$ACLOCAL -I acmacro"
25
26 dnl Next few lines is a hack to prevent libtool checking for F77
27 m4_undefine([AC_PROG_F77])
28 m4_defun([AC_PROG_F77],[])
29
30 dnl We do build a proper DLL when using win32
31 AC_LIBTOOL_WIN32_DLL
32 AC_PROG_LIBTOOL
33
34 ###############
35 ## System checks
36 ##
37 SG_CONFIGURE_PART([System checks...])
38 AC_PROG_CC(xlC gcc cc)
39 AM_SANITY_CHECK
40 AC_PROG_MAKE_SET
41 AC_CHECK_PRINTF_NULL
42 AC_CHECK_VA_COPY
43
44 # Checks for header files.
45 AC_HEADER_STDC
46 AC_HEADER_TIME
47 AC_CHECK_HEADERS([sys/socket.h \
48                   sys/stat.h \
49                   windows.h winsock.h winsock2.h \
50                   sys/time.h \
51                   errno.h unistd.h \
52                   execinfo.h\
53                   signal.h ])
54 AC_CHECK_FUNCS([gettimeofday usleep \
55                 getdtablesize \
56                 sysconf\
57                 readv\
58                 popen\
59                 signal\
60                 getline])
61                 
62 # check for a working snprintf (or use xbt/snprintf.c, which comes from http://www.ijs.si/software/snprintf/)
63 AC_FUNC_SNPRINTF
64 # check for asprintf function familly (or request the replacements from xbt/snprintf.c)
65 AC_CHECK_FUNC(  asprintf, :,   AC_DEFINE(NEED_ASPRINTF,  1,  enable the asprintf   replacement))
66 AC_CHECK_FUNC( vasprintf, :,   AC_DEFINE(NEED_VASPRINTF, 1,  enable the vasprintf  replacement))
67
68 # Checks for typedefs, structures, and compiler characteristics.
69 AC_C_CONST
70 AC_C_INLINE
71 AC_TYPE_SIZE_T
72
73 ###################################
74 ## SimGrid and GRAS specific checks
75 ##
76
77 SG_CONFIGURE_PART(Checking GRAS architecture signature...)
78 # Check architecture signature begin
79 GRAS_ARCH
80 # Check architecture signature end
81 GRAS_CHECK_STRUCT_COMPACTION
82
83
84 dnl ##
85 dnl ##  CONTEXT IMPLEMENTATION
86 dnl ##
87
88 SG_CONFIGURE_PART([Checking for threads, contexts or assimilated...])
89
90 dnl #
91 dnl #  1. determine possibilities
92 dnl #
93
94 dnl #  check for MCSC method (ucontexts)
95 AC_CHECK_MCSC(mcsc=yes, mcsc=no) 
96
97 dnl #  check for pthread method
98 AC_CHECK_HEADERS([pthread.h])
99 AC_CHECK_LIB(pthread,pthread_create,pthread=yes, pthread=no)
100
101 if test x$pthread = xyes ; then
102   AC_CHECK_LIB(pthread, sem_timedwait, HAVE_SEM_TIMEDWAIT=yes, HAVE_SEM_TIMEDWAIT=no)
103   if test ${HAVE_SEM_TIMEDWAIT} = yes ; then
104      AC_MSG_CHECKING(if sem_timedwait is compilable)
105      AC_TRY_COMPILE([#include <semaphore.h>],
106                     [sem_t *s; const struct timespec * t; sem_timedwait(s, t);], HAVE_SEM_TIMEDWAIT=yes, HAVE_SEM_TIMEDWAIT=no)
107      if test ${HAVE_SEM_TIMEDWAIT} = yes ; then
108         AC_DEFINE([HAVE_SEM_TIMEDWAIT],1,[Define if the sem_timedwait is avaible or not (part of XPG6 standard only)])
109         AC_MSG_RESULT(yes)
110      else
111         AC_MSG_RESULT(no)
112      fi
113   fi
114 fi
115
116 dnl #
117 dnl #  2. make a general decision
118 dnl #
119
120 if test ".$mcsc" = .yes; then
121    # ucontext found
122    mcsc=yes
123 elif test ".$pthread" = .yes; then
124    # ucontext not found, but pthread found
125    pthread=yes
126 else
127     ac_header=windows.h
128     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
129     if test `eval echo '${'$as_ac_Header'}'` = yes; then
130       windows_context=yes
131     else
132       AC_ERROR([no appropriate backend found])
133     fi
134 fi
135 AM_CONDITIONAL(IS_WINDOWS,test x$windows_context = xyes)
136
137
138 dnl #
139 dnl #  3. allow decision to be overridden by user
140 dnl #
141
142 AC_MSG_CHECKING(what kind of backend should we use)
143
144 AC_ARG_WITH(pthread, [  --with-pthread   Use pthread instead of ucontext.],with_context=pthread)
145 AC_ARG_WITH(pthread, [  --with-pthreads   Use pthread instead of ucontext.],with_context=pthread)
146
147 AC_ARG_WITH(context,
148   [  --with-context=[ucontext/pthread]   Use either (System V) swapcontext or pthread [[default=auto]].],,
149   with_context=auto)
150
151 if test "x$with_context$mcsc" = "xucontextno" ; then 
152   AC_MSG_ERROR([--with-context=ucontext specified but ucontext unusable. Relaunch configure without this argument.], 77)
153 fi
154
155 case $with_context in
156  ucontext) ;;
157  pthread) ;;
158  pthreads) ;;
159  windows) ;;
160  auto) with_context=ucontext;;
161  *) AC_MSG_ERROR([--with-context must be either ucontext or pthread]) ;;
162 esac
163
164 if test "x$with_context" = "xucontext" ; then
165   if test ".$mcsc" = .yes; then
166     AC_MSG_RESULT(found working ucontext. Great!)
167     AC_DEFINE([CONTEXT_UCONTEXT],1,[Define if xbt contexts are based on ucontext or not])
168   else
169     if test ".$windows_context" = .yes ; then
170       AC_MSG_RESULT(use windows context portability layer.)
171       with_context=windows
172     else
173       AC_MSG_RESULT([[no working ucontext found. Try pthreads as a fallback]])
174       with_context=pthread
175     fi
176   fi
177 fi
178
179 if test "x$with_context" = "xpthread"; then
180   AC_CHECK_HEADERS([pthread.h])
181   if test x$pthread != xyes ; then
182     AC_MSG_ERROR([[Cannot find pthreads (try --with-context=ucontext if you haven't already tried).]])
183   fi
184   AC_DEFINE([CONTEXT_THREADS],1,[Define if xbt contexts are based on our threads implementation or not])
185   AC_MSG_RESULT(You have pthreads and requested for them. Fine.)
186 fi
187 AM_CONDITIONAL(CONTEXT_THREADS,test "x$with_context" != xucontext)
188
189 dnl #
190 dnl #  4. determine a few additional details
191 dnl #
192
193 if test "x$with_context" = "xucontext" ; then
194 dnl #  direction of stack grow
195   AC_CHECK_STACKGROWTH(PTH_STACKGROWTH)
196   if test ".$ac_cv_check_stackgrowth" = ".down"; then
197       PTH_STACK_GROWTH="down"
198   else
199       PTH_STACK_GROWTH="up"
200   fi
201   AC_SUBST(PTH_STACK_GROWTH)
202   
203   AC_CHECK_STACKSETUP(makecontext, pth_skaddr_makecontext, pth_sksize_makecontext)
204 fi
205
206 #########################################
207 ## Check for libraries extra-dependencies
208 ##
209
210 SG_CONFIGURE_PART(Checking extra libraries dependencies...)
211
212 SIMGRID_DEP=""
213 SMPI_DEP=""
214 GRAS_DEP=""
215
216 if test xpthread=xyes ; then 
217   # if the pthreads are usable
218   if test "x$with_context" = "xpthread" ; then
219     # if we use them to implement the xbt_context
220     SIMGRID_DEP="-lpthread"
221   fi
222   # we need them in any case for the gras lib (which is multithreaded), but on windows (of course)
223   if test "x$with_context" != "xwindows" ; then
224     GRAS_DEP="-lpthread"
225   fi
226 fi
227
228 #########################################
229 ## Build optional modules (gtnets)
230 ##
231 gtnets=no
232 AC_ARG_WITH(gtnets,
233   AS_HELP_STRING([--with-gtnets], [Path to GTNetS installation (default to empty, ie not using GTNetS)]),
234   gtnets_path="$withval",gtnets_path="no")
235 if test "x$gtnets_path" = "xno" ; then
236   AC_MSG_RESULT(Eventually you will come to GTNetS.)
237 else  
238   AC_MSG_RESULT(***** You have decided to use the experimental GTNetS. We hope you know what you're doing.. *****)
239   AC_MSG_CHECKING(for gtnets)
240   AC_LANG_PUSH([C++])  
241   GTNETS_LDFLAGS="-lgtnets -L$gtnets_path/lib"
242   GTNETS_CPPFLAGS="-I$gtnets_path/include -I$gtnets_path/include/gtnets"
243   LDFLAGS_SAV=$LDFLAGS  
244   CPPFLAGS_SAV=$CPPFLAGS
245   CPPFLAGS+=$GTNETS_CPPFLAGS
246   LDFLAGS+=$GTNETS_LDFLAGS
247   AC_TRY_LINK([ #include <simulator.h>
248               ], [Simulator s; s.RunUntilNextCompletion();], gtnets=yes, gtnets=no)
249   CPPFLAGS=$CPPFLAGS_SAV
250   LDFLAGS=$LDFLAGS_SAV
251   AC_LANG_POP([C++])  
252
253   if test "x$gtnets" = xyes ; then 
254     AM_CPPFLAGS="$AM_CPPFLAGS $GTNETS_CPPFLAGS"
255     SIMGRID_DEP="$SIMGRID_DEP $GTNETS_LDFLAGS"
256     AC_MSG_RESULT(Found working gtnets library.)
257     AC_DEFINE(HAVE_GTNETS, 1, [Indicates whether we have the GTNETS library or not])
258   else
259     AC_MSG_RESULT(Could not find any working gtnets library or not patched version, see config.log for details .)
260   fi
261 fi
262 AM_CONDITIONAL(HAVE_GTNETS,test "x$gtnets" != xno)
263
264 #########################################
265 ## Build optional modules (csdp)
266 ##
267 csdp=no
268 AC_ARG_WITH(csdp,
269   AS_HELP_STRING([--with-csdp], [Path to csdp installation (default to empty, i.e. not using csdp)]),
270   csdp_path="$withval",csdp_path="no")
271 if test "x$csdp_path" = "xno" ; then
272   AC_MSG_RESULT(Eventually you will come to csdp.)
273 else  
274   AC_MSG_RESULT(***** You have decided to use csdp. Let's check whether it works or not *****)
275   AC_MSG_CHECKING(for csdp)
276   CSDP_LDFLAGS="-L$csdp_path/lib -lsdp -llapack -lblas -lm"
277   CSDP_CPPFLAGS="-I$csdp_path/include -I$csdp_path/include/csdp"
278
279   AC_CHECK_LIB(sdp,easy_sdp, csdp_lib=yes, csdp_lib=no,$CSDP_LDFLAGS)
280   
281   CPPFLAGS_SAV=$CPPFLAGS
282   CPPFLAGS+=$CSDP_CPPFLAGS
283   AC_CHECK_HEADER(declarations.h, csdp_header=yes, csdp_header=no, [])
284   CPPFLAGS=$CPPFLAGS_SAV
285
286   
287
288   if test "x$csdp_lib = xyes" -a "x$csdp_header = xyes" ; then
289      csdp=yes;
290   else 
291      csdp=no;
292   fi
293   if test "x$csdp" = xyes; then 
294     AM_CPPFLAGS="$AM_CPPFLAGS $CSDP_CPPFLAGS"
295     SIMGRID_DEP="$SIMGRID_DEP $CSDP_LDFLAGS"
296     AC_MSG_RESULT(Found working sdp library.)
297     AC_DEFINE(HAVE_SDP, 1, [Indicates whether we have the CSDP library or not])
298   else
299     AC_MSG_RESULT(Could not find any working sdp library.)
300   fi;
301 fi
302 AM_CONDITIONAL(HAVE_SDP,test x$csdp != xno)
303
304 AC_SUBST([SIMGRID_DEP])
305 AC_SUBST([SMPI_DEP])
306
307 AC_CHECK_LIB(nsl, gethostbyname, [GRAS_DEP="$GRAS_DEP -lnsl"])
308 AC_CHECK_LIB(socket, connect,    [GRAS_DEP="$GRAS_DEP -lsocket"])
309
310 AC_MSG_CHECKING(for extra dependencies of libgras)
311 case $host_os in
312   *mingw* ) GRAS_DEP="$GRAS_DEP -lws2_32" ; SIMGRID_DEP="$SIMGRID_DEP -lws2_32";
313             AM_CPPFLAGS="$AM_CPPFLAGS -DDLL_EXPORT"
314             AC_DEFINE(CONTEXT_THREADS,1);;
315 esac
316
317
318
319 if test "x$GRAS_DEP" = x; then 
320    AC_MSG_RESULT(none)
321 else
322    AC_MSG_RESULT($GRAS_DEP)
323 fi
324 AC_SUBST([GRAS_DEP])
325
326 ##############################################
327 ## Enhance maintainer mode and SUBST variables
328 ## (must be placed after any compilation tests since our overprotective flags
329 ##  let some tests fail)
330
331 # Check whether we are doing a regular build or a GRAMINE (minimal) one
332 # Next line is modified by sed when building gramine source tree
333 gramine_mode=no
334 if test x$gramine_mode = xyes
335 then
336   USE_MAINTAINER_MODE=no
337 fi
338 AM_CONDITIONAL(GRAMINE_MODE,test x$gramine_mode != xno)
339
340
341 AM_MAINTAINER_MODE
342 if test x$USE_MAINTAINER_MODE = xyes 
343 then
344    # Maintainers have no choice ! I'm a BOFH, and I plainly assume. [Mt]
345    enable_compile_warnings=yes   
346 fi
347 SG_COMPILE_FLAGS
348
349 AC_SUBST([CFLAGS])
350 AC_SUBST([CPPFLAGS])
351 AC_SUBST([LDFLAGS])
352 AC_SUBST([AM_CPPFLAGS])
353 AC_SUBST([abs_builddir])
354 AC_SUBST([abs_srcdir])
355 AC_SUBST([abs_top_builddir])
356 AC_SUBST([abs_top_srcdir])
357
358 ##############################################
359 ## Specific mode for build daemons.
360 ## (they compile the SVN without having the autotools installed)
361 AC_ARG_ENABLE(botbuild,
362               AS_HELP_STRING([--enable-botbuild], [Compilation mode for build daemons -- do not use it]),
363               botbuild=$enableval,botbuild=no)
364 AM_CONDITIONAL(BOTBUILD_MODE,test x$botbuild != xno)
365
366 if test -e .svn && test x$USE_MAINTAINER_MODE != xyes && test x$botbuild != xyes ; then
367   echo "ERROR: "
368   echo "ERROR: You have to enable the maintainer mode to compile the SVN."
369   echo "ERROR: For this, just call configure this way:"
370   echo "ERROR:"
371   echo "ERROR: ./configure '--enable-maintainer-mode' $ac_configure_args"
372   echo "ERROR:"
373   exit 1
374 fi
375
376
377 SG_CONFIGURE_PART(Check for Java bindings...)
378 # Java cruft
379 AC_ARG_ENABLE(java,
380               AS_HELP_STRING([--disable-java], [To not compile the Java bindings even if the tools are found]),
381               disable_java=$enableval,disable_java=yes)
382 AC_MSG_CHECKING(whether to compile java bindings)
383 if test "x$disable_java" != "xyes" ; then
384    use_java="disabled by user"
385 else
386   AC_PATH_PROG([JAVAC], [javac], `which javac`)
387   AC_PATH_PROG([JAVA],  [java] , `which java`)
388   AC_PATH_PROG([JAR],   [jar]  , `which jar`)
389   AC_CHECK_HEADERS(jni.h)
390   if test -n "$JAVAC"   \
391      && test -n "$JAVA" \
392      && test -n "$JAR"  \
393      && test "x$ac_cv_header_jni_h" = "xyes" ; then
394    
395      use_java="yes"
396   else   
397      use_java="no"
398   fi
399 fi
400 AC_MSG_RESULT($use_java)
401 AM_CONDITIONAL(HAVE_JAVA,test "x$use_java" = "xyes")
402
403 #####################
404 ## Check for programs
405 ##
406
407 SG_CONFIGURE_PART(Check for programs...)
408 AC_CHECK_PROG(BASH, bash, `which bash`, /bin/sh)
409 WARNING="This file is generated, do not edit"
410 AC_SUBST(WARNING)
411
412
413 # Can we rebuild the parsers?
414 # We really want flex and refuse other lex. So, the parser is portable and
415 # does not induce extra lib dependency
416 AC_PROG_FLEX(2.5.30)
417                 
418 # Can we rebuild the xml-lexers from the XML specification?
419 # if not, simply touch the flex source files (which are distributed in
420 #  tarballs even if generated by flexml) and hope for the best.
421 AC_CHECK_PROG(FLEXML,flexml,`which flexml`,NOTFOUND)
422 AM_CONDITIONAL(HAVE_FLEXML,test x$FLEXML != xNOTFOUND)
423
424 if test x$USE_MAINTAINER_MODE = xyes 
425 then
426    # Check for doxygen when in maintainer mode since dist* targets fail
427    # without it
428    AC_PATH_PROG(DOXYGEN,doxygen,`which doxygen`)
429    if test x$DOXYGEN = x ; then 
430      AC_MSG_ERROR([doxygen is mandatory in maintainer mode])
431    fi
432 fi
433
434 # Can we extract really usable backtraces? (also need the popen function)
435 AC_PATH_PROG(ADDR2LINE, addr2line)
436 if test x$ADDR2LINE != x ; then
437   AC_DEFINE_UNQUOTED(ADDR2LINE,"$ADDR2LINE",[Path to the addr2line tool])
438 fi
439
440 AC_SUBST(ac_configure_args)
441 # Can we make status line about the compilation result?
442 AC_CHECK_PROG(MD5SUM,md5sum,`which md5sum`)
443 if test x$MD5SUM != xno ; then
444   build_version=`find -name '*.[ch]' |grep -v src/ucontext_stack.h | grep -v src/gras_config.h |\ 
445                  xargs cat| $MD5SUM | sed 's/ .*$//'`
446 else 
447   build_version="no_md5sum_binary"
448 fi
449 build_id="$PACKAGE ver=$VERSION build=$build_version args=\"$ac_configure_args\""
450 AC_SUBST(build_id)
451
452 ###################
453 ## Makes the output
454 ##
455
456
457 #
458 #      examples/gras/chord/Makefile  examples/gras/chord/test_sg examples/gras/chord/test_rl
459 #  src/amok/Makefile
460
461 SG_CONFIGURE_PART(Generating files...)
462
463 # Core of the libraries
464
465 AC_CONFIG_FILES([
466   Makefile
467   include/Makefile
468   src/Makefile
469   src/ucontext_stack.h
470 ])
471
472 # Tools being embeeded in gramine (stub generator)
473 AC_CONFIG_FILES([
474   tools/Makefile
475     tools/gras/Makefile
476     tools/tesh/Makefile
477 ])
478
479
480 # GRAMINE_CUT_BEGIN
481
482 # Tools NOT being embeeded in gramine
483 AC_CONFIG_FILES([
484   tools/graspe-slave
485 ],[
486     for file in                                                 \
487      tools/graspe-slave           tools/graspe-master           \
488     ; do                                                        \
489       test -e $file && chmod +x $file;                          \
490     done
491 ])
492
493 # Testsuite
494
495 AC_CONFIG_FILES([  
496   testsuite/Makefile
497   testsuite/run_tests    
498 ],[
499     for file in                                                 \
500      testsuite/run_tests                                        \
501     ; do                                                        \
502       test -e $file && chmod +x $file;                          \
503     done
504 ])
505
506 # Teshsuite (testsuite using tesh)
507 AC_CONFIG_FILES([  
508   teshsuite/Makefile
509 ])
510
511 # Documentation
512 AC_CONFIG_FILES([
513   doc/Makefile
514   doc/Doxyfile
515 ])
516
517 # Examples
518
519 #      examples/gras/p2p/Makefile
520 #      examples/gras/p2p/chord/Makefile
521 #      examples/gras/p2p/can/Makefile
522
523 AC_CONFIG_FILES([
524     examples/java/Makefile
525       examples/java/basic/Makefile
526       examples/java/comm_time/Makefile
527       examples/java/suspend/Makefile
528       examples/java/ping_pong/Makefile
529 ])
530
531 AC_CONFIG_FILES([
532   examples/Makefile 
533     examples/msg/Makefile
534     examples/simdag/Makefile
535     examples/gras/Makefile
536       examples/gras/ping/Makefile   
537       examples/gras/rpc/Makefile
538       examples/gras/spawn/Makefile
539       examples/gras/synchro/Makefile
540       examples/gras/timer/Makefile
541       examples/gras/chrono/Makefile
542       examples/gras/mutual_exclusion/simple_token/Makefile
543       examples/gras/mmrpc/Makefile
544       examples/gras/pmm/Makefile
545       examples/gras/all2all/Makefile
546     examples/amok/Makefile       
547 ])
548
549 AC_CONFIG_FILES([
550   src/smpi/smpicc
551   src/smpi/smpirun
552 ])
553
554 # GRAMINE_CUT_END
555
556 AC_OUTPUT
557
558 echo "
559
560 Configuration of package \`${PACKAGE}' (version ${VERSION}) on $gras_arch_name (=$gras_arch):
561
562         Compiler:        ${CC} (version: ${GCC_VERSION})
563         
564         CFlags:          ${CFLAGS}
565         CPPFlags:        ${CPPFLAGS}
566         LDFlags:         ${LDFLAGS}
567
568         Context backend: ${with_context}
569         Compile Java:    ${use_java}
570         
571         Maintainer mode: ${USE_MAINTAINER_MODE}
572
573 "
574 if test x$botbuild = xyes ; then
575   echo "        This is a bot build. Do not specify --enable-botbuild if you are not a bot."
576   echo
577 fi
578
579 if test -e .svn && test x$USE_MAINTAINER_MODE != xyes && test x$botbuild = xyes ; then
580   echo "WARNING: "
581   echo "WARNING: You are compiling the SVN in botbuild mode. If you are not a daemon, don't do so. "
582   echo "WARNING: Remove the --enable-botbuild from your configure line, and add --enable-maintainer-mode instead."
583   echo "WARNING:"
584   echo "WARNING: You won't be able to build archives until then (make dist is likely to fail). "
585   echo "WARNING:"
586 fi
587
588 echo $build_id > stamp.configure
589
590 exit 0;