Logo AND Algorithmique Numérique Distribuée

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