Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Set in release mode: remove temps and less debug
[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.4-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: 6267 $)
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 AC_SEARCH_LIBS([connect],[socket],[],[],[]) # need -lsocket on solaris
263
264 #########################################
265 ## Build optional modules (gtnets)
266 ##
267 gtnets=no
268 AC_ARG_WITH(gtnets,
269   AS_HELP_STRING([--with-gtnets], [Path to GTNetS installation (default to empty, ie not using GTNetS)]),
270   gtnets_path="$withval",gtnets_path="no")
271 if test "x$gtnets_path" = "xno" ; then
272   AC_MSG_RESULT(Eventually you will come to GTNetS.)
273 else  
274   AC_MSG_RESULT(***** You have decided to use the experimental GTNetS. We hope you know what you're doing.. *****)
275   AC_MSG_CHECKING(for gtnets)
276   AC_LANG_PUSH([C++])  
277   GTNETS_LDFLAGS="-lgtnets -L$gtnets_path/lib"
278   GTNETS_CPPFLAGS="-I$gtnets_path/include -I$gtnets_path/include/gtnets"
279   LDFLAGS_SAV=$LDFLAGS  
280   CPPFLAGS_SAV=$CPPFLAGS
281   CPPFLAGS+=$GTNETS_CPPFLAGS
282   LDFLAGS+=$GTNETS_LDFLAGS
283   AC_TRY_LINK([ #include <simulator.h>
284               ], [Simulator s; s.RunUntilNextCompletion();], gtnets=yes, gtnets=no)
285   CPPFLAGS=$CPPFLAGS_SAV
286   LDFLAGS=$LDFLAGS_SAV
287   AC_LANG_POP([C++])  
288 fi
289
290 if test "x$gtnets" = "xyes" ; then
291   AC_MSG_RESULT(Enabling GTNETS support.)
292   AC_DEFINE([HAVE_GTNETS], 1, [Indicates that we have GTNETS support])
293   LDFLAGS+="-lgtnets -L$gtnets_path/lib"
294   CPPFLAGS+="-I$gtnets_path/include -I$gtnets_path/include/gtnets"
295 fi
296 AM_CONDITIONAL(HAVE_GTNETS, test "x$gtnets" != "xno")
297
298
299
300
301 #########################################
302 ## Build optional modules (csdp)
303 ##
304 csdp=no
305 AC_ARG_WITH(csdp,
306   AS_HELP_STRING([--with-csdp], [Path to csdp installation (default to empty, i.e. not using csdp)]),
307   csdp_path="$withval",csdp_path="no")
308   AC_MSG_CHECKING(for CSDP option:)
309 if test "x$csdp_path" = "xno" ; then
310   AC_MSG_RESULT([no, eventually you will come to csdp.])
311 else  
312   AC_MSG_RESULT(***** You have decided to use csdp. Let's check whether it works or not *****)
313   AC_MSG_CHECKING(for csdp)
314   CSDP_LDFLAGS="-L$csdp_path/lib -lsdp -llapack -lblas -lm"
315   CSDP_CPPFLAGS="-I$csdp_path/include -I$csdp_path/include/csdp"
316
317   AC_CHECK_LIB(sdp,easy_sdp, csdp_lib=yes, csdp_lib=no,$CSDP_LDFLAGS)
318   
319   CPPFLAGS_SAV=$CPPFLAGS
320   CPPFLAGS+=$CSDP_CPPFLAGS
321   AC_CHECK_HEADER(declarations.h, csdp_header=yes, csdp_header=no, [])
322   CPPFLAGS=$CPPFLAGS_SAV
323
324   
325
326   if test "x$csdp_lib = xyes" -a "x$csdp_header = xyes" ; then
327      csdp=yes;
328   else 
329      csdp=no;
330   fi
331   if test "x$csdp" = xyes; then 
332     AM_CPPFLAGS="$AM_CPPFLAGS $CSDP_CPPFLAGS"
333     SIMGRID_DEP="$SIMGRID_DEP $CSDP_LDFLAGS"
334     AC_MSG_RESULT(Found working sdp library.)
335     AC_DEFINE([HAVE_SDP], 1, [Indicates whether we have the CSDP library or not])
336   else
337     AC_MSG_RESULT(Could not find any working sdp library.)
338   fi;
339 fi
340 AM_CONDITIONAL(HAVE_SDP,test x$csdp != xno)
341
342 AC_SUBST([SIMGRID_DEP])
343 AC_SUBST([SMPI_DEP])
344
345 AC_CHECK_LIB(nsl, gethostbyname, [GRAS_DEP="$GRAS_DEP -lnsl"])
346 AC_CHECK_LIB(socket, connect,    [GRAS_DEP="$GRAS_DEP -lsocket"])
347
348 AC_MSG_CHECKING(for extra dependencies of libgras)
349 case $host_os in
350   *mingw* ) GRAS_DEP="$GRAS_DEP -lws2_32" ; SIMGRID_DEP="$SIMGRID_DEP -lws2_32";
351             AM_CPPFLAGS="$AM_CPPFLAGS -DDLL_EXPORT"
352             AC_DEFINE(CONTEXT_THREADS,1);;
353 esac
354
355
356
357 if test "x$GRAS_DEP" = x; then 
358    AC_MSG_RESULT(none)
359 else
360    AC_MSG_RESULT($GRAS_DEP)
361 fi
362 AC_SUBST([GRAS_DEP])
363
364 ##############################################
365 ## Enhance maintainer mode and SUBST variables
366 ## (must be placed after any compilation tests since our overprotective flags
367 ##  let some tests fail)
368
369 # Check whether we are doing a regular build or a GRAMINE (minimal) one
370 # Next line is modified by sed when building gramine source tree
371 gramine_mode=no
372 if test x$gramine_mode = xyes
373 then
374   USE_MAINTAINER_MODE=no
375 fi
376 AM_CONDITIONAL(GRAMINE_MODE,test x$gramine_mode != xno)
377
378
379 AM_MAINTAINER_MODE
380 if test x$USE_MAINTAINER_MODE = xyes 
381 then
382    # Maintainers have no choice ! I'm a BOFH, and I plainly assume. [Mt]
383    enable_compile_warnings=yes   
384 fi
385 SG_COMPILE_FLAGS
386
387 AC_SUBST([CFLAGS])
388 AC_SUBST([CPPFLAGS])
389 AC_SUBST([LDFLAGS])
390 AC_SUBST([AM_CPPFLAGS])
391 AC_SUBST([abs_builddir])
392 AC_SUBST([abs_srcdir])
393 AC_SUBST([abs_top_builddir])
394 AC_SUBST([abs_top_srcdir])
395
396 ##############################################
397 ## Specific mode for build daemons.
398 ## (they compile the SVN without having the autotools installed)
399 AC_ARG_ENABLE(botbuild,
400               AS_HELP_STRING([--enable-botbuild], [Compilation mode for build daemons -- do not use it]),
401               botbuild=$enableval,botbuild=no)
402 AM_CONDITIONAL(BOTBUILD_MODE,test x$botbuild != xno)
403
404 if test -e .svn && test x$USE_MAINTAINER_MODE != xyes && test x$botbuild != xyes ; then
405   echo "ERROR: "
406   echo "ERROR: You have to enable the maintainer mode to compile the SVN."
407   echo "ERROR: For this, just call configure this way:"
408   echo "ERROR:"
409   echo "ERROR: ./configure '--enable-maintainer-mode' $ac_configure_args"
410   echo "ERROR:"
411   exit 1
412 fi
413
414
415 SG_CONFIGURE_PART(Checking Java bindings...)
416 # Java cruft
417 AC_ARG_ENABLE(java,
418               AS_HELP_STRING([--disable-java], [To not compile the Java bindings even if the tools are found]),
419               disable_java=$enableval,disable_java=yes)
420 if test "x$disable_java" != "xyes" ; then
421    use_java="disabled by user"
422 else
423   AC_PATH_PROG([JAVAC], [javac], `which javac`)
424   AC_PATH_PROG([JAVA],  [java] , `which java`)
425   AC_PATH_PROG([JAR],   [jar]  , `which jar`)
426   AC_CHECK_HEADERS(jni.h)
427   if test -n "$JAVAC" && test -n "$JAVA" && test -n "$JAR" && test "x$ac_cv_header_jni_h" = "xyes" ; then
428      use_java="yes"
429      AC_DEFINE(HAVE_JAVA,1, [defines whether Java bindings must be compiled or not])
430   else   
431      use_java="no"
432   fi
433 fi
434 AC_MSG_RESULT(decide whether to compile java bindings... $use_java)
435 AM_CONDITIONAL(HAVE_JAVA,test "x$use_java" = "xyes")
436
437
438 #####################
439 ## Check for programs
440 ##
441
442 SG_CONFIGURE_PART(Checking programs...)
443 AC_CHECK_PROG(BASH, bash, `which bash`, /bin/sh)
444 WARNING="This file is generated, do not edit"
445 AC_SUBST(WARNING)
446
447
448 # Can we rebuild the parsers?
449 # We really want flex and refuse other lex. So, the parser is portable and
450 # does not induce extra lib dependency
451 AC_PROG_FLEX(2.5.30)
452                 
453 # Can we rebuild the xml-lexers from the XML specification?
454 # if not, simply touch the flex source files (which are distributed in
455 #  tarballs even if generated by flexml) and hope for the best.
456 AC_CHECK_PROG(FLEXML,flexml,`which flexml`,NOTFOUND)
457 AM_CONDITIONAL(HAVE_FLEXML,test x$FLEXML != xNOTFOUND)
458
459 # Check for doxygen when in maintainer mode which is helpful to build doc & dist
460 AC_PATH_PROG(DOXYGEN,doxygen,`which doxygen`)
461 AM_CONDITIONAL(HAVE_DOXYGEN,test x$DOXYGEN != x)
462
463 # Can we extract really usable backtraces? (also need the popen function)
464 AC_PATH_PROG(ADDR2LINE, addr2line)
465 if test x$ADDR2LINE != x ; then
466   AC_DEFINE_UNQUOTED(ADDR2LINE,"$ADDR2LINE",[Path to the addr2line tool])
467 fi
468
469 AC_SUBST(ac_configure_args)
470 AC_DEFINE_UNQUOTED(AC_CONFIGURE_ARGS,"$ac_configure_args",[Arguments passed to the configure script])
471 # Can we make status line about the compilation result?
472 dnl A C_CHECK_PROG(MD5SUM,md5sum,`which md5sum`)
473 build_id="$PACKAGE ver=$VERSION args=\"$ac_configure_args\""
474 AC_SUBST(build_id)
475
476 ###################
477 ## Makes the output
478 ##
479
480
481 #
482 #      examples/gras/chord/Makefile  examples/gras/chord/test_sg examples/gras/chord/test_rl
483 #  src/amok/Makefile
484
485 SG_CONFIGURE_PART(Generating files...)
486
487 # Core of the libraries
488
489 AC_CONFIG_FILES([
490   Makefile
491   include/Makefile
492   src/Makefile
493   src/context_sysv_config.h
494 ])
495
496 # Tools being embeeded in gramine (stub generator)
497 AC_CONFIG_FILES([
498   tools/Makefile
499     tools/gras/Makefile
500     tools/tesh/Makefile
501 ])
502 #    tools/tesh2/Makefile
503
504
505 # GRAMINE_CUT_BEGIN
506
507 # Tools NOT being embeeded in gramine
508 AC_CONFIG_FILES([
509   tools/graspe-slave
510 ],[
511     for file in                                                 \
512      tools/graspe-slave           tools/graspe-master           \
513      checkall                     examples/java/runtest         \
514     ; do                                                        \
515       test -e $file && chmod +x $file;                          \
516     done
517 ])
518
519 # Testsuite
520
521 AC_CONFIG_FILES([  
522   testsuite/Makefile
523   testsuite/run_tests    
524 ],[
525     for file in                                                 \
526      testsuite/run_tests                                        \
527     ; do                                                        \
528       test -e $file && chmod +x $file;                          \
529     done
530 ])
531
532 # Teshsuite (testsuite using tesh)
533 AC_CONFIG_FILES([  
534   teshsuite/Makefile
535 ])
536
537 # Documentation
538 AC_CONFIG_FILES([
539   doc/Makefile
540   doc/Doxyfile
541 ])
542
543 # Examples
544
545 #      examples/gras/p2p/Makefile
546 #      examples/gras/p2p/chord/Makefile
547 #      examples/gras/p2p/can/Makefile
548
549 AC_CONFIG_FILES([
550     examples/java/Makefile
551       examples/java/basic/Makefile
552       examples/java/comm_time/Makefile
553       examples/java/suspend/Makefile
554       examples/java/ping_pong/Makefile
555 ])
556
557 AC_CONFIG_FILES([
558   examples/Makefile 
559     examples/msg/Makefile
560     examples/simdag/Makefile
561     examples/gras/Makefile
562       examples/gras/ping/Makefile   
563       examples/gras/rpc/Makefile
564       examples/gras/spawn/Makefile
565       examples/gras/synchro/Makefile
566       examples/gras/timer/Makefile
567       examples/gras/properties/Makefile
568       examples/gras/chrono/Makefile
569       examples/gras/mutual_exclusion/simple_token/Makefile
570       examples/gras/mmrpc/Makefile
571       examples/gras/pmm/Makefile
572       examples/gras/all2all/Makefile
573     examples/amok/Makefile       
574     examples/smpi/Makefile       
575 ])
576
577 AC_CONFIG_FILES([
578   src/smpi/smpicc
579   src/smpi/smpirun
580 ],[
581     for file in                                                 \
582       src/smpi/smpicc                                           \
583       src/smpi/smpirun                                          \
584     ; do                                                        \
585       test -e $file && chmod +x $file;                          \
586     done
587 ])
588
589 # GRAMINE_CUT_END
590
591 AC_OUTPUT
592
593 echo "
594
595 Configuration of package \`${PACKAGE}' (version ${VERSION}) on $gras_arch_name (=$gras_arch):
596
597         Compiler:        ${CC} (version: ${GCC_VERSION})
598         
599         CFlags:          ${CFLAGS}
600         CPPFlags:        ${CPPFLAGS}
601         LDFlags:         ${LDFLAGS}
602
603         Context backend: ${with_context}
604         Compile Java:    ${use_java}
605         
606         Maintainer mode: ${USE_MAINTAINER_MODE}
607
608 "
609 if test x$botbuild = xyes ; then
610   echo "        This is a bot build. Do not specify --enable-botbuild if you are not a bot."
611   echo
612 fi
613
614 if test -e .svn && test x$USE_MAINTAINER_MODE != xyes && test x$botbuild = xyes ; then
615   echo "WARNING: "
616   echo "WARNING: You are compiling the SVN in botbuild mode. If you are not a daemon, don't do so. "
617   echo "WARNING: Remove the --enable-botbuild from your configure line, and add --enable-maintainer-mode instead."
618   echo "WARNING:"
619   echo "WARNING: You won't be able to build archives until then (make dist is likely to fail). "
620   echo "WARNING:"
621 fi
622
623 echo $build_id > stamp.configure
624
625 exit 0;