Annotation of Amaya/configure.in, revision 1.47

1.1       cvs         1: dnl
                      2: dnl Process this file with autoconf to produce a configure script.
                      3: dnl Autoconf script for Amaya and Thot.
1.10      cvs         4: dnl Daniel Veillard and Irene Vatton, 1997
1.1       cvs         5: dnl
                      6: 
                      7: dnl  ***************************************************************
                      8: dnl
                      9: dnl    GENERIC AUTOCONF STUFF : GUESS INFORMATIONS ON SYSTEM SETUP
                     10: dnl
                     11: dnl  ***************************************************************
                     12: 
                     13: AC_PREREQ(2.2)
                     14: AC_INIT(thotlib/internals/h/constpiv.h)
                     15: AC_REVISION
                     16: 
                     17: dnl
                     18: dnl Checks for platform information
                     19: dnl
                     20: 
                     21: AC_CANONICAL_SYSTEM
                     22: AC_CONFIG_HEADER(config.h)
                     23: 
                     24: dnl
                     25: dnl Initializing Automake
                     26: dnl
                     27: 
                     28: AC_PROG_MAKE_SET
                     29: AC_ARG_PROGRAM
                     30: 
                     31: dnl
                     32: dnl Checks for programs.
                     33: dnl
                     34: 
                     35: AC_PROG_YACC
                     36: AC_PROG_CC
                     37: AC_PROG_CPP
                     38: AC_PROG_LEX
                     39: AC_PROG_AWK
                     40: AC_PROG_INSTALL
                     41: AC_PROG_LN_S
                     42: AC_PROG_MAKE_SET
                     43: AC_PROG_RANLIB
                     44: AC_PATH_PROG(CP, cp, /bin/cp, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     45: AC_PATH_PROG(MV, mv, /bin/mv, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     46: AC_PATH_PROG(RM, rm, /bin/rm, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     47: AC_PATH_PROG(MKDIR, mkdir, /bin/mkdir, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     48: AC_PATH_PROG(ECHO, echo, /bin/echo, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     49: AC_PATH_PROG(CAT, cat, /bin/cat, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     50: AC_PATH_PROG(CHMOD, chmod, /bin/chmod, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     51: AC_PATH_PROG(SED, sed, /bin/sed, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     52: AC_PATH_PROG(AR, ar, /usr/bin/ar, $PATH:/bin:/usr/bin:/usr/ucb/bin)
1.6       cvs        53: AC_PATH_PROG(DIFF, diff, /usr/bin/diff, $PATH:/bin:/usr/bin:/usr/ucb/bin)
1.1       cvs        54: 
                     55: dnl
                     56: dnl Checks for libraries.
                     57: dnl
                     58: 
                     59: AC_CHECK_LIB(socket, socket, )
                     60: AC_CHECK_LIB(inet, connect)
                     61: AC_CHECK_LIB(nsl, t_accept)
                     62: AC_CHECK_LIB(dl, dlopen)
                     63: AC_PATH_X
                     64: AC_PATH_XTRA
                     65: 
1.41      cvs        66: dnl
                     67: dnl Check for libXp
                     68: dnl
1.38      cvs        69: 
1.41      cvs        70: for ac_dir in               \
                     71:   /usr/X11R6/lib        \
                     72:   /usr/X11R5/lib        \
                     73:                             \
                     74:   /usr/lib/X11R6        \
                     75:   /usr/lib/X11R5        \
                     76:                             \
                     77:   /usr/local/X11R6/lib  \
                     78:   /usr/local/X11R5/lib  \
                     79:                             \
                     80:   /usr/local/lib/X11R6  \
                     81:   /usr/local/lib/X11R5  \
                     82:                             \
                     83:   /usr/X11/lib          \
                     84:   /usr/lib/X11          \
                     85:   /usr/local/X11/lib    \
                     86:   /usr/local/lib/X11    \
                     87:                             \
                     88:   /usr/X386/lib         \
                     89:   /usr/x386/lib         \
                     90:   /usr/XFree86/lib/X11  \
                     91:                             \
                     92:   /usr/dt/lib           \
                     93:                             \
                     94:   /usr/lib              \
                     95:   /usr/local/lib        \
                     96:   /usr/unsupported/lib  \
                     97:   /usr/athena/lib       \
                     98:   /usr/local/x11r5/lib  \
                     99:   /usr/lpp/Xamples/lib  \
                    100:                             \
                    101:   /usr/lesstif/lib      \
                    102:   /usr/local/lesstif/lib\
                    103:   /usr/gnu/lesstif/lib  \
                    104:   $HOME/lesstif/lib     \
                    105:   ; \
                    106: do
                    107:   if test -r "$ac_dir/libXp.a" -o -r "$ac_dir/libXp.so"; then
                    108:      echo "\nfound libXp.a\n"
                    109:      X_PRE_LIBS="-lXp ${X_PRE_LIBS}"
                    110:      break
                    111:   fi
                    112: done
1.1       cvs       113: dnl
1.5       cvs       114: dnl Checks for header files.
                    115: dnl
                    116: 
                    117: AC_HEADER_DIRENT
                    118: AC_HEADER_STDC
                    119: AC_HEADER_SYS_WAIT
                    120: 
                    121: AC_CHECK_HEADERS(stdio.h)
                    122: AC_CHECK_HEADERS(sys/types.h types.h)
                    123: AC_CHECK_HEADERS(sys/unistd.h unistd.h)
                    124: AC_CHECK_HEADERS(sys/fcntl.h fcntl.h)
                    125: AC_CHECK_HEADERS(sys/limits.h limits.h)
                    126: AC_CHECK_HEADERS(sys/stat.h stat.h)
                    127: AC_CHECK_HEADERS(sys/file.h)
                    128: AC_CHECK_HEADERS(sys/ioctl.h)
                    129: AC_CHECK_HEADERS(sys/time.h time.h)
                    130: AC_CHECK_HEADERS(sys/systeminfo.h)
1.46      cvs       131: AC_CHECK_HEADERS(sys/string.h strings.h)
1.34      cvs       132: AC_CHECK_HEADERS(sys/syslog.h syslog.h)
1.5       cvs       133: AC_CHECK_HEADERS(sys/socket.h socket.h)
                    134: AC_CHECK_HEADERS(appkit/appkit.h appkit.h)
                    135: AC_CHECK_HEADERS(netinet/in.h in.h)
                    136: AC_CHECK_HEADERS(dn.h)
                    137: AC_CHECK_HEADERS(sys/ipc.h)
                    138: AC_CHECK_HEADERS(net/errno.h sys/errno.h errno.h)
                    139: AC_CHECK_HEADERS(pwd.h)
                    140: AC_CHECK_HEADERS(grp.h)
                    141: AC_CHECK_HEADERS(arpa/inet.h inet.h)
                    142: AC_CHECK_HEADERS(netdb.h)
                    143: AC_CHECK_HEADERS(manifest.h)
                    144: AC_CHECK_HEADERS(bsdtypes.h)
                    145: AC_CHECK_HEADERS(stdefs.h)
                    146: AC_CHECK_HEADERS(bsdtime.h)
                    147: AC_CHECK_HEADERS(sys/select.h select.h)
                    148: AC_CHECK_HEADERS(dnetdb.h)
                    149: AC_CHECK_HEADERS(libc.h)
                    150: AC_CHECK_HEADERS(stdlib.h)
                    151: AC_CHECK_HEADERS(malloc.h)
                    152: AC_CHECK_HEADERS(memory.h)
                    153: AC_CHECK_HEADERS(unixlib.h)
                    154: AC_CHECK_HEADERS(ctype.h)
                    155: AC_CHECK_HEADERS(cursesX.h curses.h)
                    156: AC_CHECK_HEADERS(sys/resource.h resource.h)
                    157: AC_HEADER_DIRENT
                    158: AC_CHECK_HEADERS(dir.h direct.h) dnl AC_HEADER_DIRENT only checks for some..
                    159: AC_HEADER_STDC
                    160: AC_HEADER_SYS_WAIT
                    161: AC_HEADER_TIME
                    162: AC_HEADER_STAT
                    163: 
                    164: dnl
                    165: dnl Checks for typedefs, structures, and compiler characteristics.
                    166: dnl
                    167: 
                    168: AC_C_CONST
                    169: AC_C_INLINE
                    170: AC_TYPE_MODE_T
                    171: AC_TYPE_OFF_T
                    172: AC_TYPE_SIZE_T
                    173: AC_HEADER_TIME
                    174: AC_STRUCT_TM
                    175: AC_STRUCT_TIMEZONE
                    176: AC_TYPE_UID_T
                    177: 
                    178: dnl
                    179: dnl Checks for library functions.
                    180: dnl
                    181: 
                    182: AC_FUNC_ALLOCA
                    183: AC_TYPE_GETGROUPS
                    184: AC_PROG_GCC_TRADITIONAL
                    185: AC_FUNC_MEMCMP
                    186: AC_FUNC_MMAP
                    187: AC_TYPE_SIGNAL
                    188: AC_FUNC_VPRINTF
1.25      cvs       189: AC_CHECK_FUNCS(getcwd gethostname gettimeofday getwd mkdir mktime putenv select socket strdup strerror strftime strstr strtod strtol uname lstat strcasecmp strncasecmp strchr)
1.5       cvs       190: 
                    191: dnl
1.4       cvs       192: dnl Checking for Motif libraries and includes
                    193: dnl
                    194: dnl Borrowed from Lesstif configure.in
                    195: dnl Lesstif is a Great Project (TM)
                    196: dnl
                    197: 
                    198: AC_DEFUN(AC_PATH_MOTIF_DIRECT,
                    199: [test -z "$motif_direct_test_library" && motif_direct_test_library=Xm
                    200: test -z "$motif_direct_test_function" && motif_direct_test_function=XmCreatePushButton
                    201: test -z "$motif_direct_test_include" && motif_direct_test_include=Xm/Xm.h
                    202:   for ac_dir in               \
                    203:     /usr/include/Motif1.2     \
                    204:     /usr/Motif1.2/include     \
                    205:                               \
                    206:     /usr/motif/include        \
                    207:                               \
                    208:     /usr/X11R6/include        \
                    209:     /usr/X11R5/include        \
                    210:                               \
                    211:     /usr/include/X11R6        \
                    212:     /usr/include/X11R5        \
                    213:                               \
                    214:     /usr/local/X11R6/include  \
                    215:     /usr/local/X11R5/include  \
                    216:                               \
                    217:     /usr/local/include/X11R6  \
                    218:     /usr/local/include/X11R5  \
                    219:                               \
                    220:     /usr/X11/include          \
                    221:     /usr/include/X11          \
                    222:     /usr/local/X11/include    \
                    223:     /usr/local/include/X11    \
                    224:                               \
                    225:     /usr/X386/include         \
                    226:     /usr/x386/include         \
                    227:     /usr/XFree86/include/X11  \
                    228:                               \
                    229:     /usr/dt/include           \
                    230:                               \
                    231:     /usr/include              \
                    232:     /usr/local/include        \
                    233:     /usr/unsupported/include  \
                    234:     /usr/athena/include       \
                    235:     /usr/local/x11r5/include  \
                    236:     /usr/lpp/Xamples/include  \
1.14      cvs       237:                               \
                    238:     /usr/lesstif/include      \
                    239:     /usr/local/lesstif/include\
                    240:     /usr/gnu/lesstif/include  \
                    241:     $HOME/lesstif/include     \
1.4       cvs       242:     ; \
                    243:   do
                    244:     if test -r "$ac_dir/$motif_direct_test_include"; then
                    245:       no_motif= ac_motif_includes=$ac_dir
                    246:       break
                    247:     fi
                    248:   done
                    249: 
                    250: # Check for the libraries.
                    251: # See if we find them without any special options.
                    252: # Don't add to $LIBS permanently.
                    253: ac_save_LIBS="$LIBS"
                    254: LIBS="-l$motif_direct_test_library $LIBS"
                    255: # First see if replacing the include by lib works.
                    256: for ac_dir in `echo "$ac_motif_includes" | sed s/include/lib/` \
                    257:     /usr/lib/Motif1.2     \
                    258:     /usr/Motif1.2/lib     \
                    259:                           \
                    260:     /usr/motif/lib        \
                    261:                           \
                    262:     /usr/X11R6/lib        \
                    263:     /usr/X11R5/lib        \
                    264:                           \
                    265:     /usr/lib/X11R6        \
                    266:     /usr/lib/X11R5        \
                    267:                           \
                    268:     /usr/local/X11R6/lib  \
                    269:     /usr/local/X11R5/lib  \
                    270:                           \
                    271:     /usr/local/lib/X11R6  \
                    272:     /usr/local/lib/X11R5  \
                    273:                           \
                    274:     /usr/X11/lib          \
                    275:     /usr/lib/X11          \
                    276:     /usr/local/X11/lib    \
                    277:                           \
                    278:     /usr/X386/lib         \
                    279:     /usr/x386/lib         \
                    280:     /usr/XFree86/lib/X11  \
                    281:                           \
                    282:     /usr/lib              \
                    283:     /usr/local/lib        \
                    284:     /usr/unsupported/lib  \
                    285:     /usr/athena/lib       \
                    286:     /usr/local/x11r5/lib  \
                    287:     /usr/lpp/Xamples/lib  \
1.14      cvs       288:                           \
                    289:     /usr/lesstif/lib      \
                    290:     /usr/local/lesstif/lib\
                    291:     /usr/gnu/lesstif/lib  \
                    292:     $HOME/lesstif/lib     \
1.4       cvs       293:     ; \
                    294: do
                    295:   for ac_extension in a so sl; do
                    296:     if test -r $ac_dir/lib${motif_direct_test_library}.$ac_extension; then
                    297:       no_motif= ac_motif_libraries=$ac_dir
                    298:       break 2
                    299:     fi
                    300:   done
1.5       cvs       301: done
                    302: LIBS="$ac_save_LIBS"
                    303: ])
1.4       cvs       304: 
                    305: AC_DEFUN(AC_PATH_MOTIF,
                    306: [AC_REQUIRE_CPP()dnl
                    307: 
                    308: motif_includes=NONE
                    309: motif_libraries=NONE
                    310: 
                    311: AC_MSG_CHECKING(for Motif)
                    312: AC_ARG_WITH(motif, [  --with-motif            enable Motif tests])
1.39      cvs       313: 
1.42      cvs       314: if test "${GCC}" = "yes"; then
1.40      cvs       315:    CPP="${CPP} -x c"
1.39      cvs       316: fi
1.4       cvs       317: if test "x$with_motif" = xno; then
                    318:   no_motif=yes
                    319: else
                    320:   if test "x$motif_includes" != xNONE && test "x$motif_libraries" != xNONE; then
                    321:     no_motif=
                    322:   else
                    323: AC_CACHE_VAL(ac_cv_path_motif,
                    324: [# One or both of these vars are not set, and there is no cached value.
                    325: no_motif=yes
                    326: AC_PATH_MOTIF_DIRECT
                    327: 
                    328: if test "$no_motif" = yes; then
                    329:   ac_cv_path_motif="no_motif=yes"
                    330: else
                    331:   ac_cv_path_motif="no_motif= ac_motif_includes=$ac_motif_includes ac_motif_libraries=$ac_motif_libraries"
                    332: fi])dnl
                    333:   fi
                    334:   eval "$ac_cv_path_motif"
                    335: fi # with_motif != no
                    336: 
                    337: if test "$no_motif" = yes; then
                    338:   AC_MSG_RESULT(no)
1.5       cvs       339:   MOTIF_INCLUDES=
                    340:   MOTIF_LIBRARIES=
1.4       cvs       341: else
                    342:   test "x$motif_includes" = xNONE && motif_includes=$ac_motif_includes
                    343:   test "x$motif_libraries" = xNONE && motif_libraries=$ac_motif_libraries
                    344:   ac_cv_path_motif="no_motif= ac_motif_includes=$motif_includes ac_motif_libraries=$motif_libraries"
                    345:   AC_MSG_RESULT([libraries $motif_libraries, headers $motif_includes])
1.5       cvs       346:   if test "$motif_includes" != "/usr/include" ; then
                    347:     MOTIF_INCLUDES="-I$motif_includes"
                    348:   fi
                    349:   if test "$motif_libraries" != "/usr/lib" ; then
                    350:     MOTIF_LIBRARIES="-L$motif_libraries"
1.19      cvs       351:     case "${host}" in
                    352:         *-*sun-solaris* )
                    353:          MOTIF_LIBRARIES="${MOTIF_LIBRARIES} -R$motif_libraries"
                    354:         ;;
                    355:     esac    
1.5       cvs       356:   fi
1.4       cvs       357: fi
1.5       cvs       358: AC_SUBST(MOTIF_INCLUDES)
                    359: AC_SUBST(MOTIF_LIBRARIES)
1.4       cvs       360: ])
                    361: 
                    362: AC_PATH_MOTIF
                    363: 
1.1       cvs       364: dnl  ***************************************************************
                    365: dnl
                    366: dnl    SPECIFIC STUFF : CONFIGURATION OPTIONS FOR THOT AND AMAYA
                    367: dnl
                    368: dnl  ***************************************************************
                    369: 
1.26      cvs       370: THOT_VER="2.2"
1.44      cvs       371: AMAYA_VER="1.5"
1.36      cvs       372: KAFFE_VER="cvs"
1.1       cvs       373: 
                    374: dnl
1.6       cvs       375: dnl We use a special versoin of cextract patched for alignment
                    376: dnl to build the signatures of the modules functions located in f subdirs
                    377: dnl
                    378: CEXTRACT_VER="1.7"
                    379: CEXTRACT_FLAGS="+O"
                    380: 
                    381: dnl
1.3       cvs       382: dnl Check when building with Insure from Parasoft
                    383: dnl
                    384: 
1.5       cvs       385: AC_ARG_WITH(insure, [  --with-insure           Uses Insure Parasoft debugger])
                    386: if test "$with_insure" = "yes" ; then
                    387:     CC=insight
1.3       cvs       388: fi
                    389: 
                    390: dnl
1.9       cvs       391: dnl Adjust the some variables depending on the host and compiler
                    392: dnl Thot NEED signed chars !!!
1.7       cvs       393: dnl
                    394: 
1.9       cvs       395: KAFFE_ENGINE=""
1.7       cvs       396: if test "${CC}" = "gcc" ; then
1.44      cvs       397:   CFLAGS="${CFLAGS} -W "
1.7       cvs       398:   case "${host}" in
                    399:       *-*-irix5* | *-*irix6* )
                    400:          CFLAGS="${CFLAGS} -fsigned-char"
                    401:       ;;
                    402:   esac
1.14      cvs       403: fi
                    404: 
                    405: if test "$ac_cv_c_const" = "no" ; then
                    406:   CFLAGS="${CFLAGS} -DCONST= "
1.7       cvs       407: fi
                    408: 
                    409: dnl
1.1       cvs       410: dnl Check for availability of amaya and thot editor sources
                    411: dnl
                    412: 
1.5       cvs       413: AC_ARG_WITH(thot, [  --with-thot             Build the Thot editor])
                    414: AC_ARG_WITH(amaya, [  --with-amaya            Build the Amaya HTML browser/editor])
1.1       cvs       415: 
                    416: build_thot="yes"
                    417: build_amaya="yes"
                    418: 
                    419: if test "$with_thot" = "no" ; then
                    420:     build_thot="no"
1.45      cvs       421: else
                    422:   if test ! -f $srcdir/thot/Makefile.in ; then
                    423:     AC_MSG_WARN(Thot editor sources not found, disabling Thot build !)
                    424:     build_thot="no"
                    425:   fi
1.1       cvs       426: fi
1.45      cvs       427: 
1.1       cvs       428: if test "$with_amaya" = "no" ; then
                    429:     build_amaya="no"
1.45      cvs       430: else
                    431:   if test ! -f $srcdir/amaya/Makefile.in ; then
1.1       cvs       432:     AC_MSG_WARN(Amaya browser/editor sources not found, disabling Amaya build !)
                    433:     build_amaya="no"
1.45      cvs       434:   fi
1.1       cvs       435: fi
                    436: 
1.45      cvs       437:  
1.1       cvs       438: dnl
1.3       cvs       439: dnl Check for external, Thot related programs
                    440: dnl
                    441: 
                    442: build_misc="no"
                    443: if test "$build_thot" = "yes" ;  then
                    444:     if test -f $srcdir/misc/Makefile.in ; then
                    445:        build_misc="yes"
                    446:        build_annotations="no"
                    447:        if test -f $srcdir/misc/annotations/Makefile.in ; then
                    448:            build_annotations="yes"
                    449:        fi
                    450:        if test -f $srcdir/misc/util/Makefile.in ; then
                    451:            build_util="yes"
                    452:            build_tableaux="no"
                    453:            build_transform="no"
                    454:            build_versions="no"
                    455:            if test -f $srcdir/misc/util/tableaux/Makefile.in ; then
                    456:                build_tableaux="yes"
                    457:            fi
                    458:            if test -f $srcdir/misc/util/transform/Makefile.in ; then
                    459:                build_transform="yes"
                    460:            fi
                    461:            if test -f $srcdir/misc/util/versions/Makefile.in ; then
                    462:                build_versions="yes"
                    463:            fi
                    464:        fi
                    465:     fi
                    466: fi
                    467: 
                    468: dnl
1.1       cvs       469: dnl Check for additionnal packages kaffe-xxx or libwww
                    470: dnl use AC_CONFIG_SUBDIRS to launch configure in the subdir
                    471: dnl
                    472: 
1.26      cvs       473: AC_ARG_ENABLE(java,    [  --enable-java           Add Kaffe Java virtual machine])
1.22      cvs       474: AC_ARG_ENABLE(javaawt, [  --enable-java-awt       Add Kaffe Java Biss AWT])
1.26      cvs       475: AC_ARG_ENABLE(intr,    [  --enable-intr           Use Kaffe Java Interpreter])
                    476: AC_ARG_ENABLE(jit,     [  --enable-jit            Use Kaffe Java JIT Compiler])
                    477: AC_ARG_ENABLE(plugin,  [  --enable-plugin         Add Netscape Plug-Ins support])
                    478: AC_ARG_ENABLE(math,    [  --enable-math           Add Math support ])
                    479: AC_ARG_ENABLE(graph,   [  --enable-graph          Add Graphics support ])
1.47    ! cvs       480: AC_ARG_ENABLE(annot,   [  --enable-annot          Add Annotations support ])
1.26      cvs       481: AC_ARG_ENABLE(ilu,     [  --enable-ilu            Add ILU support])
1.1       cvs       482: 
1.8       cvs       483: dnl
1.10      cvs       484: dnl Check for the Kaffe engine to use : interpreter or JIT
1.9       cvs       485: dnl
1.13      cvs       486: 
                    487: with_java=""
1.9       cvs       488: if test "$enable_intr" = "yes" ; then
                    489:     with_java="yes"
                    490:     KAFFE_ENGINE="--with-engine=intrp"
                    491: fi
                    492: if test "$enable_intr" = "no" ; then
                    493:     with_java="yes"
                    494:     KAFFE_ENGINE="--with-engine=jit"
                    495: fi
                    496: if test "$enable_jit" = "yes" ; then
                    497:     with_java="yes"
                    498:     KAFFE_ENGINE="--with-engine=jit"
                    499: fi
                    500: if test "$enable_jit" = "no" ; then
                    501:     with_java="yes"
                    502:     KAFFE_ENGINE="--with-engine=intr"
                    503: fi
                    504: 
                    505: 
                    506: dnl
1.17      cvs       507: dnl java is disabled by default
1.8       cvs       508: dnl
1.13      cvs       509: 
1.19      cvs       510: if test "$enable_java" = "yes" ; then
                    511:     with_java="yes"
1.1       cvs       512: fi
1.8       cvs       513: 
                    514: dnl
1.22      cvs       515: dnl if java, java-awt is enabled by default
                    516: dnl
                    517: 
                    518: if test "$enable_javaawt" = "no" ; then
                    519:     java_awt_option="-DJAVA_NO_AWT"
                    520: else
                    521:     java_awt_option=""
                    522: fi
                    523: 
                    524: dnl
1.21      cvs       525: dnl plugins support is disabled by default
1.8       cvs       526: dnl
1.13      cvs       527: 
                    528: if test "$with_plugin" = "" ; then
1.21      cvs       529:   if test "$enable_plugin" = "yes" ; then
                    530:     with_plugin="yes"
                    531:   else
1.17      cvs       532:     with_plugin="no"
                    533:   fi
1.10      cvs       534: fi  
1.1       cvs       535: 
1.8       cvs       536: dnl
1.10      cvs       537: dnl math is enabled by default
1.8       cvs       538: dnl
1.13      cvs       539: if test "$with_math" = "" ; then
                    540:     if test "$enable_math" = "no" ; then
                    541:        with_math="no"
                    542:     else
                    543:        with_math="yes"
                    544:     fi
1.8       cvs       545: fi
                    546: 
1.16      cvs       547: dnl
1.26      cvs       548: dnl graph is disabled by default
                    549: dnl
                    550: if test "$with_graph" = "" ; then
                    551:     if test "$enable_graph" = "yes" ; then
                    552:        with_graph="yes"
                    553:     else
                    554:        with_graph="no"
                    555:     fi
                    556: fi
                    557: 
                    558: dnl
1.47    ! cvs       559: dnl annotations is disabled by default
        !           560: dnl
        !           561: if test "$with_annot" = "" ; then
        !           562:     if test "$enable_annot" = "yes" ; then
        !           563:        with_annot="yes"
        !           564:     else
        !           565:        with_annot="no"
        !           566:     fi
        !           567: fi
        !           568: 
        !           569: dnl
1.16      cvs       570: dnl ilu is disabled by default
                    571: dnl
                    572: if test "$with_ilu" = "" ; then
                    573:     if test "$enable_ilu" = "yes" ; then
                    574:        with_ilu="yes"
                    575:     else
                    576:        with_ilu="no"
                    577:     fi
                    578: fi
                    579: 
1.22      cvs       580: dnl
                    581: dnl Checking for ilu
                    582: dnl
                    583: 
                    584: ILUHOME=""
                    585: if test "$with_ilu" = "yes" ; then
                    586:     dnl
                    587:     dnl try to get first the path for the c-stubber
                    588:     dnl
                    589:     AC_PATH_PROG(CSTUBBER, c-stubber, c-stubber, $PATH:$ILUHOME/bin:/bin:/usr/bin:/usr/ucb/bin:/usr/ilu/bin:/usr/local/bin:/usr/local/ilu/bin:/opt/ilu/bin:$HOME/ilu/bin)
                    590:     case "$CSTUBBER" in
                    591:         /*/bin/c-stubber) 
                    592:            ILU_BINARIES=`dirname $CSTUBBER`
                    593:            ILUHOME=`dirname $ILU_BINARIES`
                    594:            ILU_LIBRARIES=$ILUHOME/lib
                    595:            ILU_INCLUDES=$ILUHOME/include
                    596:            ;;
                    597:         /*/c-stubber) 
                    598:            ILU_BINARIES=`dirname $CSTUBBER`
                    599:            ILUHOME=`dirname $ILU_BINARIES`
                    600:            ILU_LIBRARIES=$ILUHOME/lib
                    601:            ILU_INCLUDES=$ILUHOME/include
                    602:            ;;
                    603:     esac
                    604:     if test "$CSTUBBER" = "" -o "$CSTUBBER" = "c-stubber" ; then
                    605:        AC_MSG_WARN(ILU c-stubber binary not found, ILU disabled !)
                    606:        with_ilu="no"
                    607:     fi
                    608: fi
                    609: 
1.19      cvs       610: if test "$build_amaya" = "yes" ; then
                    611: 
1.36      cvs       612:     if test ! -f $srcdir/kaffe-$KAFFE_VER/Makefile.in \
                    613:             -a ! -f $srcdir/kaffe-$KAFFE_VER.tar.gz ; then
1.1       cvs       614:        if test "$with_java" = "yes" ; then
                    615:            AC_MSG_WARN(kaffe-$KAFFE_VER sources not found, disabling Java !)
                    616:            with_java="no"
                    617:        fi
                    618:     fi
                    619: 
1.15      cvs       620:     if test "$with_java" = "yes" ; then
                    621:        #
                    622:        # Verify that Java code is available.
                    623:        # Look first for thotlib, amaya and jigsaw classes source code
                    624:        #
1.37      cvs       625:        if test -f $srcdir/classes/org/w3c/www/protocol/http/HttpURLConnection.java \
1.15      cvs       626:                ; then
                    627:            with_java_sources="yes"
                    628:        else
                    629:            with_java_sources="no"
                    630:        fi 
1.37      cvs       631:        #
                    632:        # Then check for a sources ZIP for the classes.
                    633:        #
                    634:        if test -f $srcdir/classes/sources.zip \
                    635:                ; then
                    636:            with_java_sources="yes"
                    637:        else
                    638:            with_java_sources="no"
                    639:        fi 
                    640: 
1.15      cvs       641:        #
                    642:        # Then check for precompiled classes packages.
                    643:        #
1.36      cvs       644:        if test -f $srcdir/classes/jigsaw.zip \
1.15      cvs       645:                ; then
                    646:            with_java_package="yes"
                    647:        else
                    648:            with_java_package="no"
                    649:        fi 
                    650: 
                    651:        #
                    652:        # At least one of both should be available.
                    653:        #
                    654:        if test "$with_java_sources" = "no" -a "$with_java_package" = "no"
                    655:        then
                    656:            AC_MSG_WARN(Amaya Java classes not found : disabling Java!)
                    657:             with_java="no"
1.35      cvs       658:        else
                    659:            #
                    660:            # kaffe may require libgmp ...
                    661:            #
                    662:            AC_CHECK_LIB(gmp,mpz_abs)
1.1       cvs       663:        fi
                    664:     fi
                    665: 
1.43      cvs       666:     if test ! -f $srcdir/../libwww/Makefile.in ; then
1.16      cvs       667:        if test "$with_java" = "no" -a "$with_ilu" = "no" ; then
1.33      cvs       668:            AC_MSG_WARN(libwww sources not found !!)
1.1       cvs       669:            AC_MSG_WARN(Disabling Amaya build !)
                    670:            build_amaya="no"
                    671:        fi
                    672:     fi
1.8       cvs       673: 
                    674:     if test ! -f $srcdir/amaya/MathML.S ; then
1.10      cvs       675:        if test "$with_math" = "yes" ; then
1.8       cvs       676:            AC_MSG_WARN(MathML sources not found !!)
1.26      cvs       677:            AC_MSG_WARN(Disabling Math build !)
1.10      cvs       678:            with_math="no"
                    679:            MATH_OPTIONS=
1.8       cvs       680:        fi
                    681:     fi
1.26      cvs       682: 
                    683:     if test ! -f $srcdir/amaya/GraphML.S ; then
                    684:        if test "$with_graph" = "yes" ; then
                    685:            AC_MSG_WARN(GraphML sources not found !!)
                    686:            AC_MSG_WARN(Disabling Graphics build !)
                    687:            with_graph="no"
                    688:            GRAPH_OPTIONS=
                    689:        fi
                    690:     fi
                    691: 
1.47    ! cvs       692:     if test ! -f $srcdir/amaya/Makefile.annot ; then
        !           693:        if test "$with_annot" = "yes" ; then
        !           694:            AC_MSG_WARN(Annotation makefile not found !!)
        !           695:            AC_MSG_WARN(Disabling Annotations build !)
        !           696:            with_annot="no"
        !           697:        fi
        !           698:     fi
        !           699: 
1.16      cvs       700:     if test "$with_java" = "yes" -a "$with_ilu" = "yes" ; then
                    701:         java_ilu_option="-DWITH_ILU"
                    702:         ilu_java_option="-DWITH_JAVA"
                    703:     fi
1.1       cvs       704: fi
                    705: 
                    706: dnl
                    707: dnl The options for each library or binary
                    708: dnl
                    709: 
                    710: THOT_OPTIONS=
1.30      cvs       711: AMAYA_OPTIONS=$MATH_OPTIONS $GRAPH_OPTIONS
1.1       cvs       712: PLUGIN_OPTIONS="-DPLUGIN_TRACE -DXP_UNIX"
                    713: dnl JAVA_OPTIONS="-DDEBUG_KAFFE -DDEBUG_LOCK -DDEBUG_SELECT -DDEBUG_SELECT_CHANNELS -DDEBUG_TIMING -DSYNC_DNS"
1.22      cvs       714: JAVA_OPTIONS="$java_ilu_option $java_awt_option"
1.1       cvs       715: ANNOTATIONS_OPTIONS=
                    716: IMGLIBS="-ljpeg -lpng -lz"
1.3       cvs       717: EXTRA_LIBS=
1.1       cvs       718: 
1.16      cvs       719: ILU_OPTIONS="$ilu_java_option"
                    720: ILU_INCLUDES=
                    721: ILU_LIBRARIES=
                    722: 
1.1       cvs       723: dnl
                    724: dnl Set up the PATHs needed
                    725: dnl
                    726: 
                    727: API="\$(THOTDIR)/thotlib/include"
                    728: VAR="\$(THOTDIR)/thotlib/internals/var"
                    729: INCL="\$(THOTDIR)/thotlib/internals/h"
                    730: FUNC="\$(THOTDIR)/thotlib/internals/f"
                    731: SCHEMAS="\$(THOTDIR)/schemas"
                    732: SCHEMASOPERA="\$(THOTDIR)/schemasOPERA"
                    733: JPEGINCL="-I\$(THOTDIR)/libjpeg"
                    734: PNGINCL="-I\$(THOTDIR)/libpng -I\$(THOTDIR)/libpng/zlib"
                    735: 
                    736: dnl
                    737: dnl Set up the include variables.
                    738: dnl
                    739: 
                    740: THOTINCLUDES="-I$API -I$VAR -I$INCL -I$FUNC -I$SCHEMAS -I$SCHEMASOPERA $JPEGINCL $PNGINCL"
                    741: APIINCLUDES=-I$API 
                    742: if test "$VPATHOPT" = "" ; then
                    743:        VPATHOPT="VPATH"
                    744: fi
                    745: 
                    746: dnl
                    747: dnl Exports the current values of the variables.
                    748: dnl
                    749: 
                    750: AC_SUBST(THOT_VER)
                    751: AC_SUBST(AMAYA_VER)
                    752: AC_SUBST(KAFFE_VER)
1.6       cvs       753: AC_SUBST(CEXTRACT_VER)
                    754: AC_SUBST(CEXTRACT_FLAGS)
1.1       cvs       755: 
1.9       cvs       756: AC_SUBST(KAFFE_ENGINE)
                    757: 
1.1       cvs       758: AC_SUBST(THOTINCLUDES)
                    759: AC_SUBST(APIINCLUDES)
                    760: AC_SUBST(VPATHOPT)
                    761: 
                    762: AC_SUBST(THOT_OPTIONS)
                    763: AC_SUBST(AMAYA_OPTIONS)
                    764: AC_SUBST(PLUGIN_OPTIONS)
                    765: AC_SUBST(JAVA_OPTIONS)
                    766: AC_SUBST(ANNOTATIONS_OPTIONS)
                    767: AC_SUBST(IMGLIBS)
1.3       cvs       768: AC_SUBST(EXTRA_LIBS)
1.1       cvs       769: 
1.22      cvs       770: AC_SUBST(ILUHOME)
1.16      cvs       771: AC_SUBST(ILU_OPTIONS)
                    772: AC_SUBST(ILU_INCLUDES)
                    773: AC_SUBST(ILU_LIBRARIES)
                    774: 
1.1       cvs       775: dnl
                    776: dnl Include the option Makefile.xxx fragment for plugin and or Java options
                    777: dnl
                    778: 
                    779: if test "$with_plugin" = "yes" ; then
                    780:     AC_SUBST_FILE(plugin_frag)dnl
                    781:     plugin_frag=$srcdir/pluginlib/Makefile.plugin
                    782: else
                    783:     AC_SUBST_FILE(plugin_frag)
                    784:     plugin_frag=/dev/null
                    785: fi
                    786: 
                    787: if test "$with_java" = "yes" ; then
1.8       cvs       788:     AC_SUBST_FILE(java_frag)
1.1       cvs       789:     java_frag=$srcdir/javalib/Makefile.java
                    790:     AC_SUBST_FILE(www_frag)
                    791:     www_frag=/dev/null
1.15      cvs       792:     if test "$with_java_sources" = "yes" ; then
                    793:        AC_SUBST_FILE(javasrc_frag)
                    794:        javasrc_frag=$srcdir/javalib/Makefile.javasrc
                    795:        AC_SUBST_FILE(javanosrc_frag)
                    796:        javanosrc_frag=/dev/null
                    797:     else
                    798:        AC_SUBST_FILE(javasrc_frag)
                    799:        javasrc_frag=/dev/null
                    800:        AC_SUBST_FILE(javanosrc_frag)
                    801:        javanosrc_frag=$srcdir/javalib/Makefile.javanosrc
                    802:     fi
1.1       cvs       803: else
                    804:     java_frag=/dev/null
1.29      cvs       805:     javasrc_frag=/dev/null
                    806:     javanosrc_frag=/dev/null
                    807: 
                    808:     if test "$with_ilu" = "yes" ; then
                    809:        AC_SUBST_FILE(java_frag)
                    810:        AC_SUBST_FILE(www_frag)
                    811:        www_frag=/dev/null
                    812:     else
                    813:        AC_SUBST_FILE(java_frag)
                    814:        AC_SUBST_FILE(www_frag)dnl
                    815:        www_frag=$srcdir/amaya/Makefile.libwww
                    816:     fi
1.16      cvs       817: fi
1.1       cvs       818: 
1.10      cvs       819: if test "$with_math" = "yes" ; then
                    820:     AC_SUBST_FILE(math_frag)
                    821:     math_frag=$srcdir/amaya/Makefile.math
1.8       cvs       822: else
1.10      cvs       823:     AC_SUBST_FILE(math_frag)
                    824:     math_frag=/dev/null
1.8       cvs       825: fi
                    826: 
1.26      cvs       827: if test "$with_graph" = "yes" ; then
                    828:     AC_SUBST_FILE(graph_frag)
                    829:     graph_frag=$srcdir/amaya/Makefile.graph
                    830: else
                    831:     AC_SUBST_FILE(graph_frag)
1.31      cvs       832:     graph_frag=/dev/null
1.26      cvs       833: fi
                    834: 
1.47    ! cvs       835: if test "$with_annot" = "yes" ; then
        !           836:     AC_SUBST_FILE(annot_frag)
        !           837:     annot_frag=$srcdir/amaya/Makefile.annot
        !           838: else
        !           839:     AC_SUBST_FILE(annot_frag)
        !           840:     annot_frag=/dev/null
        !           841: fi
        !           842: 
1.16      cvs       843: if test "$with_ilu" = "yes" ; then
                    844:     AC_SUBST_FILE(ilu_frag)
                    845:     ilu_frag=$srcdir/ilulib/Makefile.ilu
                    846: else
                    847:     AC_SUBST_FILE(ilu_frag)
                    848:     ilu_frag=/dev/null
                    849: fi
                    850: 
1.1       cvs       851: dnl  ***************************************************************
                    852: dnl
                    853: dnl      FINAL STEP : PRODUCE ALL THE MAKEFILES AND CONFIG FILES
                    854: dnl
                    855: dnl  ***************************************************************
                    856: 
                    857: EXTRA_MAKEFILE_IN=
1.2       cvs       858: make_output="Makefile Options.orig:Options.in tools/Makefile \
1.1       cvs       859:        libjpeg/Makefile libpng/Makefile libpng/zlib/Makefile \
1.2       cvs       860:        tools/mkdep/Makefile \
1.1       cvs       861:        tools/cextract-1.7/Makefile thotlib/Makefile \
1.5       cvs       862:        thotlib/include/Makefile batch/Makefile tablelib/Makefile"
1.1       cvs       863: 
                    864: if test "$build_amaya" = "yes" ; then
1.2       cvs       865: 
1.19      cvs       866:     make_output="$make_output amaya/Makefile pluginlib/Makefile"
1.2       cvs       867:     EXTRA_MAKEFILE_IN="$srcdir/amaya/Makefile.in \
1.27      cvs       868: $srcdir/amaya/Makefile.libwww"
                    869: 
                    870:     if test "$$with_plugin" = "yes" ; then
                    871:        make_output="$make_output pluginlib/Makefile"
                    872:        EXTRA_MAKEFILE_IN="$srcdir/pluginlib/Makefile.in \
1.2       cvs       873: $srcdir/pluginlib/Makefile.plugin"
1.27      cvs       874:     fi
1.2       cvs       875: 
1.19      cvs       876:     if test "$with_java" = "yes" ; then
                    877:        make_output="$make_output tools/javastub/Makefile \
                    878: tools/dns_daemon/Makefile javalib/Makefile"
                    879:        EXTRA_MAKEFILE_IN="$srcdir/tools/javastub/Makefile.in \
                    880: $srcdir/tools/dns_daemon/Makefile.in \
                    881: $srcdir/javalib/Makefile.in"
                    882:     fi
1.16      cvs       883: 
1.19      cvs       884:     if test "$with_ilu" = "yes" ; then
                    885:        make_output="$make_output ilulib/Makefile tools/ilustub/Makefile"
                    886:        EXTRA_MAKEFILE_IN="$srcdir/ilulib/Makefile.in \
1.16      cvs       887: $srcdir/ilulib/Makefile.ilu \
                    888: $srcdir/tools/ilustub/Makefile.in"
1.19      cvs       889:     fi
1.1       cvs       890: fi
                    891: 
                    892: if test "$build_thot" = "yes" ; then
1.3       cvs       893: 
1.5       cvs       894:     make_output="$make_output thot/Makefile \
                    895: drawlib/Makefile indexlib/Makefile"
1.3       cvs       896:     EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
1.5       cvs       897: $srcdir/thot/Makefile.in \
                    898: $srcdir/drawlib/Makefile.in \
                    899: $srcdir/indexlib/Makefile.in"
1.3       cvs       900: 
                    901:     if test "$build_misc" = "yes" ; then
                    902: 
                    903:        make_output="$make_output misc/Makefile"
                    904:        EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    905: $srcdir/misc/Makefile.in"
                    906: 
                    907:        if test "$build_annotations" = "yes" ; then
                    908:            make_output="$make_output misc/annotations/Makefile"
                    909:            EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    910: $srcdir/misc/annotations/Makefile.in"
1.19      cvs       911:        fi
1.3       cvs       912: 
                    913:        if test "$build_util" = "yes" ; then
                    914: 
                    915:            make_output="$make_output misc/util/Makefile"
                    916:            EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    917: $srcdir/misc/util/Makefile.in"
                    918: 
                    919:            if test "$build_tableaux" = "yes" ; then
                    920: 
                    921:                make_output="$make_output misc/util/tableaux/Makefile"
                    922:                EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    923: $srcdir/misc/util/tableaux/Makefile.in"
                    924: 
                    925:            fi
                    926:            if test "$build_transform" = "yes" ; then
                    927: 
                    928:                make_output="$make_output misc/util/transform/Makefile"
                    929:                EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    930: $srcdir/misc/util/transform/Makefile.in"
                    931: 
                    932:            fi
                    933:            if test "$build_versions" = "yes" ; then
                    934: 
                    935:                make_output="$make_output misc/util/versions/Makefile"
                    936:                EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    937: $srcdir/misc/util/versions/Makefile.in"
                    938: 
                    939:            fi
                    940:        fi
                    941:     fi
1.1       cvs       942: fi
                    943: 
                    944: AC_SUBST(EXTRA_MAKEFILE_IN)
1.6       cvs       945: AC_OUTPUT($make_output , [
                    946: dnl
                    947: dnl This fragment of shell code is executed after the
                    948: dnl Makefile(s) dump ...
                    949: dnl
                    950: 
                    951: echo timestamp > stamp-h
                    952: 
                    953: dnl
                    954: dnl Check for an upgrade in the Options numbers
                    955: dnl
                    956: 
                    957: if test -f Options ; then
                    958:    oldversion=`grep Version Options`
                    959:    newversion=`grep Version Options.orig`
                    960:    if test "$oldversion" != "$newversion" ; then
                    961:        echo WARNING : Options files have changed, old options saved to Options.old
                    962:        cp Options Options.old
                    963:        cp Options.orig Options
                    964:        exit 1
                    965:    fi
                    966: fi
                    967: ])
1.1       cvs       968: 
                    969: if test "$build_thot" = "yes" ; then
                    970:     if test "$build_amaya" = "yes" ; then
                    971:        echo Amaya and Thot packages are now configured
                    972:     else
                    973:        echo Thot package is now configured
                    974:     fi
                    975: else
                    976:     if test "$build_amaya" = "yes" ; then
                    977:        echo Amaya package is now configured
                    978:     else
                    979:        echo Nor Amaya nor Thot package found, get the corresponding archive
                    980:     fi
                    981: 
                    982: fi
                    983: 
                    984: if test "$build_amaya" = "yes" ; then
1.5       cvs       985:     if test "$with_java" = "yes" -a "$with_plugin" = "yes" ; then
                    986:         AC_MSG_WARN(Amaya configured with both Java and Plugins support)
1.16      cvs       987: dnl        AC_MSG_WARN(Beware this combination doesn't work well)
1.1       cvs       988:     else
1.5       cvs       989:        if test "$with_java" = "yes" ; then
1.9       cvs       990:            if test "$KAFFE_ENGINE" = "--with-engine=jit" ;  then
                    991:               echo Amaya configured with Java JIT support
                    992:            else
                    993:                if test "$KAFFE_ENGINE" = "--with-engine=intr" ;  then
                    994:                    echo Amaya configured with Java interpreter support
                    995:                else
                    996:                    echo Amaya configured with Java support
                    997:                fi
                    998:             fi
1.11      cvs       999:            echo Using kaffe-$KAFFE_VER Java virtual machine
1.16      cvs      1000:        else if test "$with_ilu" = "no" ; then
1.5       cvs      1001:            echo Amaya configured with libWWW
                   1002:        fi
1.16      cvs      1003:        fi
1.5       cvs      1004:        if test "$with_plugin" = "yes" ; then
                   1005:            echo Amaya configured with Plugins support
                   1006:        fi
1.8       cvs      1007:     fi
1.10      cvs      1008:     if test "$with_math" = "yes" ; then
                   1009:        echo Amaya configured with Math support
1.26      cvs      1010:     fi
                   1011:     if test "$with_graph" = "yes" ; then
                   1012:        echo Amaya configured with Graph support
1.47    ! cvs      1013:     fi
        !          1014:     if test "$with_annot" = "yes" ; then
        !          1015:        echo Amaya configured with Annotations support
1.16      cvs      1016:     fi
                   1017:     if test "$with_ilu" = "yes" ; then
                   1018:        echo Amaya configured with ILU support
1.1       cvs      1019:     fi
1.5       cvs      1020: fi
                   1021: 
                   1022: if test "$no_motif" = yes ; then
                   1023:     echo "Motif seems not installed on this machine"
                   1024:     echo "Thot and Amaya need Motif 1.2 or 2.0"
                   1025:     echo "Thot and Amaya probably won't compile"
                   1026: else
                   1027: if test "$motif_includes" = "" ; then
                   1028:     echo "Motif includes were not found"
                   1029:     echo "Thot and Amaya might not compile"
                   1030:     echo "Edit your Option file"
                   1031: else
                   1032: if test "$motif_libraries" = "" ; then
                   1033:     echo "Motif libraries were not found"
                   1034:     echo "Thot and Amaya might not compile"
                   1035:     echo "Edit your Option file"
                   1036: fi
                   1037: fi
1.1       cvs      1038: fi
                   1039: 
                   1040: echo "Now start \"make all\" (GNU make preferably) to build the binaries"
1.5       cvs      1041: 

Webmaster