Logo AND Algorithmique Numérique Distribuée

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