Logo AND Algorithmique Numérique Distribuée

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