Annotation of Amaya/configure.in, revision 1.13

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: 
                     66: dnl
1.5       cvs        67: dnl Checks for header files.
                     68: dnl
                     69: 
                     70: AC_HEADER_DIRENT
                     71: AC_HEADER_STDC
                     72: AC_HEADER_SYS_WAIT
                     73: 
                     74: AC_CHECK_HEADERS(stdio.h)
                     75: AC_CHECK_HEADERS(sys/types.h types.h)
                     76: AC_CHECK_HEADERS(sys/unistd.h unistd.h)
                     77: AC_CHECK_HEADERS(sys/fcntl.h fcntl.h)
                     78: AC_CHECK_HEADERS(sys/limits.h limits.h)
                     79: AC_CHECK_HEADERS(sys/stat.h stat.h)
                     80: AC_CHECK_HEADERS(sys/file.h)
                     81: AC_CHECK_HEADERS(sys/ioctl.h)
                     82: AC_CHECK_HEADERS(sys/time.h time.h)
                     83: AC_CHECK_HEADERS(sys/systeminfo.h)
                     84: AC_CHECK_HEADERS(string.h strings.h)
                     85: AC_CHECK_HEADERS(syslog.h)
                     86: AC_CHECK_HEADERS(sys/socket.h socket.h)
                     87: AC_CHECK_HEADERS(appkit/appkit.h appkit.h)
                     88: AC_CHECK_HEADERS(netinet/in.h in.h)
                     89: AC_CHECK_HEADERS(dn.h)
                     90: AC_CHECK_HEADERS(sys/ipc.h)
                     91: AC_CHECK_HEADERS(net/errno.h sys/errno.h errno.h)
                     92: AC_CHECK_HEADERS(pwd.h)
                     93: AC_CHECK_HEADERS(grp.h)
                     94: AC_CHECK_HEADERS(arpa/inet.h inet.h)
                     95: AC_CHECK_HEADERS(netdb.h)
                     96: AC_CHECK_HEADERS(manifest.h)
                     97: AC_CHECK_HEADERS(bsdtypes.h)
                     98: AC_CHECK_HEADERS(stdefs.h)
                     99: AC_CHECK_HEADERS(bsdtime.h)
                    100: AC_CHECK_HEADERS(sys/select.h select.h)
                    101: AC_CHECK_HEADERS(dnetdb.h)
                    102: AC_CHECK_HEADERS(libc.h)
                    103: AC_CHECK_HEADERS(stdlib.h)
                    104: AC_CHECK_HEADERS(malloc.h)
                    105: AC_CHECK_HEADERS(memory.h)
                    106: AC_CHECK_HEADERS(unixlib.h)
                    107: AC_CHECK_HEADERS(ctype.h)
                    108: AC_CHECK_HEADERS(cursesX.h curses.h)
                    109: AC_CHECK_HEADERS(sys/resource.h resource.h)
                    110: AC_HEADER_DIRENT
                    111: AC_CHECK_HEADERS(dir.h direct.h) dnl AC_HEADER_DIRENT only checks for some..
                    112: AC_HEADER_STDC
                    113: AC_HEADER_SYS_WAIT
                    114: AC_HEADER_TIME
                    115: AC_HEADER_STAT
                    116: 
                    117: dnl
                    118: dnl Checks for typedefs, structures, and compiler characteristics.
                    119: dnl
                    120: 
                    121: AC_C_CONST
                    122: AC_C_INLINE
                    123: AC_TYPE_MODE_T
                    124: AC_TYPE_OFF_T
                    125: AC_TYPE_SIZE_T
                    126: AC_HEADER_TIME
                    127: AC_STRUCT_TM
                    128: AC_STRUCT_TIMEZONE
                    129: AC_TYPE_UID_T
                    130: 
                    131: dnl
                    132: dnl Checks for library functions.
                    133: dnl
                    134: 
                    135: AC_FUNC_ALLOCA
                    136: AC_TYPE_GETGROUPS
                    137: AC_PROG_GCC_TRADITIONAL
                    138: AC_FUNC_MEMCMP
                    139: AC_FUNC_MMAP
                    140: AC_TYPE_SIGNAL
                    141: AC_FUNC_VPRINTF
                    142: AC_CHECK_FUNCS(getcwd gethostname gettimeofday getwd mkdir mktime putenv select socket strdup strerror strftime strstr strtod strtol uname)
                    143: 
                    144: dnl
1.4       cvs       145: dnl Checking for Motif libraries and includes
                    146: dnl
                    147: dnl Borrowed from Lesstif configure.in
                    148: dnl Lesstif is a Great Project (TM)
                    149: dnl
                    150: 
                    151: AC_DEFUN(AC_PATH_MOTIF_DIRECT,
                    152: [test -z "$motif_direct_test_library" && motif_direct_test_library=Xm
                    153: test -z "$motif_direct_test_function" && motif_direct_test_function=XmCreatePushButton
                    154: test -z "$motif_direct_test_include" && motif_direct_test_include=Xm/Xm.h
                    155:   for ac_dir in               \
                    156:     /usr/include/Motif1.2     \
                    157:     /usr/Motif1.2/include     \
                    158:                               \
                    159:     /usr/motif/include        \
                    160:                               \
                    161:     /usr/X11R6/include        \
                    162:     /usr/X11R5/include        \
                    163:                               \
                    164:     /usr/include/X11R6        \
                    165:     /usr/include/X11R5        \
                    166:                               \
                    167:     /usr/local/X11R6/include  \
                    168:     /usr/local/X11R5/include  \
                    169:                               \
                    170:     /usr/local/include/X11R6  \
                    171:     /usr/local/include/X11R5  \
                    172:                               \
                    173:     /usr/X11/include          \
                    174:     /usr/include/X11          \
                    175:     /usr/local/X11/include    \
                    176:     /usr/local/include/X11    \
                    177:                               \
                    178:     /usr/X386/include         \
                    179:     /usr/x386/include         \
                    180:     /usr/XFree86/include/X11  \
                    181:                               \
                    182:     /usr/dt/include           \
                    183:                               \
                    184:     /usr/include              \
                    185:     /usr/local/include        \
                    186:     /usr/unsupported/include  \
                    187:     /usr/athena/include       \
                    188:     /usr/local/x11r5/include  \
                    189:     /usr/lpp/Xamples/include  \
                    190:     ; \
                    191:   do
                    192:     if test -r "$ac_dir/$motif_direct_test_include"; then
                    193:       no_motif= ac_motif_includes=$ac_dir
                    194:       break
                    195:     fi
                    196:   done
                    197: 
                    198: # Check for the libraries.
                    199: # See if we find them without any special options.
                    200: # Don't add to $LIBS permanently.
                    201: ac_save_LIBS="$LIBS"
                    202: LIBS="-l$motif_direct_test_library $LIBS"
                    203: # First see if replacing the include by lib works.
                    204: for ac_dir in `echo "$ac_motif_includes" | sed s/include/lib/` \
                    205:     /usr/lib/Motif1.2     \
                    206:     /usr/Motif1.2/lib     \
                    207:                           \
                    208:     /usr/motif/lib        \
                    209:                           \
                    210:     /usr/X11R6/lib        \
                    211:     /usr/X11R5/lib        \
                    212:                           \
                    213:     /usr/lib/X11R6        \
                    214:     /usr/lib/X11R5        \
                    215:                           \
                    216:     /usr/local/X11R6/lib  \
                    217:     /usr/local/X11R5/lib  \
                    218:                           \
                    219:     /usr/local/lib/X11R6  \
                    220:     /usr/local/lib/X11R5  \
                    221:                           \
                    222:     /usr/X11/lib          \
                    223:     /usr/lib/X11          \
                    224:     /usr/local/X11/lib    \
                    225:                           \
                    226:     /usr/X386/lib         \
                    227:     /usr/x386/lib         \
                    228:     /usr/XFree86/lib/X11  \
                    229:                           \
                    230:     /usr/lib              \
                    231:     /usr/local/lib        \
                    232:     /usr/unsupported/lib  \
                    233:     /usr/athena/lib       \
                    234:     /usr/local/x11r5/lib  \
                    235:     /usr/lpp/Xamples/lib  \
                    236:     ; \
                    237: do
                    238:   for ac_extension in a so sl; do
                    239:     if test -r $ac_dir/lib${motif_direct_test_library}.$ac_extension; then
                    240:       no_motif= ac_motif_libraries=$ac_dir
                    241:       break 2
                    242:     fi
                    243:   done
1.5       cvs       244: done
                    245: LIBS="$ac_save_LIBS"
                    246: ])
1.4       cvs       247: 
                    248: AC_DEFUN(AC_PATH_MOTIF,
                    249: [AC_REQUIRE_CPP()dnl
                    250: 
                    251: motif_includes=NONE
                    252: motif_libraries=NONE
                    253: 
                    254: AC_MSG_CHECKING(for Motif)
                    255: AC_ARG_WITH(motif, [  --with-motif            enable Motif tests])
                    256: if test "x$with_motif" = xno; then
                    257:   no_motif=yes
                    258: else
                    259:   if test "x$motif_includes" != xNONE && test "x$motif_libraries" != xNONE; then
                    260:     no_motif=
                    261:   else
                    262: AC_CACHE_VAL(ac_cv_path_motif,
                    263: [# One or both of these vars are not set, and there is no cached value.
                    264: no_motif=yes
                    265: AC_PATH_MOTIF_DIRECT
                    266: 
                    267: if test "$no_motif" = yes; then
                    268:   ac_cv_path_motif="no_motif=yes"
                    269: else
                    270:   ac_cv_path_motif="no_motif= ac_motif_includes=$ac_motif_includes ac_motif_libraries=$ac_motif_libraries"
                    271: fi])dnl
                    272:   fi
                    273:   eval "$ac_cv_path_motif"
                    274: fi # with_motif != no
                    275: 
                    276: if test "$no_motif" = yes; then
                    277:   AC_MSG_RESULT(no)
1.5       cvs       278:   MOTIF_INCLUDES=
                    279:   MOTIF_LIBRARIES=
1.4       cvs       280: else
                    281:   test "x$motif_includes" = xNONE && motif_includes=$ac_motif_includes
                    282:   test "x$motif_libraries" = xNONE && motif_libraries=$ac_motif_libraries
                    283:   ac_cv_path_motif="no_motif= ac_motif_includes=$motif_includes ac_motif_libraries=$motif_libraries"
                    284:   AC_MSG_RESULT([libraries $motif_libraries, headers $motif_includes])
1.5       cvs       285:   if test "$motif_includes" != "/usr/include" ; then
                    286:     MOTIF_INCLUDES="-I$motif_includes"
                    287:   fi
                    288:   if test "$motif_libraries" != "/usr/lib" ; then
                    289:     MOTIF_LIBRARIES="-L$motif_libraries"
                    290:   fi
1.4       cvs       291: fi
1.5       cvs       292: AC_SUBST(MOTIF_INCLUDES)
                    293: AC_SUBST(MOTIF_LIBRARIES)
1.4       cvs       294: ])
                    295: 
                    296: AC_PATH_MOTIF
                    297: 
1.1       cvs       298: dnl  ***************************************************************
                    299: dnl
                    300: dnl    SPECIFIC STUFF : CONFIGURATION OPTIONS FOR THOT AND AMAYA
                    301: dnl
                    302: dnl  ***************************************************************
                    303: 
                    304: THOT_VER="2.1a"
                    305: AMAYA_VER="1.0a"
1.11      cvs       306: KAFFE_VER="0.9.1"
1.1       cvs       307: LIBWWW_VER="5.0a"
                    308: 
                    309: dnl
1.6       cvs       310: dnl We use a special versoin of cextract patched for alignment
                    311: dnl to build the signatures of the modules functions located in f subdirs
                    312: dnl
                    313: CEXTRACT_VER="1.7"
                    314: CEXTRACT_FLAGS="+O"
                    315: 
                    316: dnl
1.3       cvs       317: dnl Check when building with Insure from Parasoft
                    318: dnl
                    319: 
1.5       cvs       320: AC_ARG_WITH(insure, [  --with-insure           Uses Insure Parasoft debugger])
                    321: if test "$with_insure" = "yes" ; then
                    322:     CC=insight
1.3       cvs       323: fi
                    324: 
                    325: dnl
1.9       cvs       326: dnl Adjust the some variables depending on the host and compiler
                    327: dnl Thot NEED signed chars !!!
1.7       cvs       328: dnl
                    329: 
1.13    ! cvs       330: default_www_access="libwww"
        !           331: 
1.9       cvs       332: KAFFE_ENGINE=""
1.7       cvs       333: if test "${CC}" = "gcc" ; then
                    334:   CFLAGS="${CFLAGS} -Wall "
                    335:   case "${host}" in
                    336:       *-*-irix5* | *-*irix6* )
                    337:          CFLAGS="${CFLAGS} -fsigned-char"
                    338:       ;;
1.13    ! cvs       339:       *linux* )
        !           340:          default_www_access="java"
        !           341:       ;;
        !           342:       *solaris* )
        !           343:          default_www_access="java"
        !           344:       ;;
1.7       cvs       345:   esac
                    346: fi
                    347: 
                    348: dnl
1.1       cvs       349: dnl Check for availability of amaya and thot editor sources
                    350: dnl
                    351: 
1.5       cvs       352: AC_ARG_WITH(thot, [  --with-thot             Build the Thot editor])
                    353: AC_ARG_WITH(amaya, [  --with-amaya            Build the Amaya HTML browser/editor])
1.1       cvs       354: 
                    355: build_thot="yes"
                    356: build_amaya="yes"
                    357: 
                    358: if test "$with_thot" = "no" ; then
                    359:     build_thot="no"
                    360: fi
                    361: if test "$with_amaya" = "no" ; then
                    362:     build_amaya="no"
                    363: fi
                    364: 
                    365: if test ! -f $srcdir/thot/Makefile.in ; then
                    366:     AC_MSG_WARN(Thot editor sources not found, disabling Thot build !)
                    367:     build_thot="no"
                    368: fi
                    369:    
                    370: if test ! -f $srcdir/amaya/Makefile.in ; then
                    371:     AC_MSG_WARN(Amaya browser/editor sources not found, disabling Amaya build !)
                    372:     build_amaya="no"
                    373: fi
                    374: 
                    375: dnl
1.3       cvs       376: dnl Check for external, Thot related programs
                    377: dnl
                    378: 
                    379: build_misc="no"
                    380: if test "$build_thot" = "yes" ;  then
                    381:     if test -f $srcdir/misc/Makefile.in ; then
                    382:        build_misc="yes"
                    383:        build_annotations="no"
                    384:        if test -f $srcdir/misc/annotations/Makefile.in ; then
                    385:            build_annotations="yes"
                    386:        fi
                    387:        if test -f $srcdir/misc/util/Makefile.in ; then
                    388:            build_util="yes"
                    389:            build_tableaux="no"
                    390:            build_transform="no"
                    391:            build_versions="no"
                    392:            if test -f $srcdir/misc/util/tableaux/Makefile.in ; then
                    393:                build_tableaux="yes"
                    394:            fi
                    395:            if test -f $srcdir/misc/util/transform/Makefile.in ; then
                    396:                build_transform="yes"
                    397:            fi
                    398:            if test -f $srcdir/misc/util/versions/Makefile.in ; then
                    399:                build_versions="yes"
                    400:            fi
                    401:        fi
                    402:     fi
                    403: fi
                    404: 
                    405: dnl
1.1       cvs       406: dnl Check for additionnal packages kaffe-xxx or libwww
                    407: dnl use AC_CONFIG_SUBDIRS to launch configure in the subdir
                    408: dnl
                    409: 
1.5       cvs       410: AC_ARG_ENABLE(java, [  --enable-java           Add Kaffe Java virtual machine])
1.9       cvs       411: AC_ARG_ENABLE(intr, [  --enable-intr           Use Kaffe Java Interpreter])
1.10      cvs       412: AC_ARG_ENABLE(jit, [  --enable-jit             Use Kaffe Java JIT Compiler])
                    413: AC_ARG_ENABLE(plugin, [  --enable-plugin       Add Netscape Plug-Ins support])
                    414: AC_ARG_ENABLE(math, [  --enable-math             Add Math support ])
1.1       cvs       415: 
1.8       cvs       416: dnl
1.10      cvs       417: dnl Check for the Kaffe engine to use : interpreter or JIT
1.9       cvs       418: dnl
1.13    ! cvs       419: 
        !           420: with_java=""
1.9       cvs       421: if test "$enable_intr" = "yes" ; then
                    422:     with_java="yes"
                    423:     KAFFE_ENGINE="--with-engine=intrp"
                    424: fi
                    425: if test "$enable_intr" = "no" ; then
                    426:     with_java="yes"
                    427:     KAFFE_ENGINE="--with-engine=jit"
                    428: fi
                    429: if test "$enable_jit" = "yes" ; then
                    430:     with_java="yes"
                    431:     KAFFE_ENGINE="--with-engine=jit"
                    432: fi
                    433: if test "$enable_jit" = "no" ; then
                    434:     with_java="yes"
                    435:     KAFFE_ENGINE="--with-engine=intr"
                    436: fi
                    437: 
                    438: 
                    439: dnl
1.13    ! cvs       440: dnl java is enable by default on Linux and Solaris
        !           441: dnl targets only.
1.8       cvs       442: dnl
1.13    ! cvs       443: 
        !           444: if test "$with_java" = "" ; then
        !           445:     if test "default_www_access" = "libwww" ; then
        !           446:        if test "$enable_java" = "yes" ; then
        !           447:            with_java="yes"
        !           448:        else
        !           449:            with_java="no"
        !           450:        fi
        !           451:     else
        !           452:        if test "$enable_java" = "no" ; then
        !           453:            with_java="no"
        !           454:        else
        !           455:            with_java="yes"
        !           456:        fi
        !           457:     fi
1.1       cvs       458: fi
1.8       cvs       459: 
                    460: dnl
1.13    ! cvs       461: dnl plugins support is disabled by default if using java
        !           462: dnl otherwise it is enabled by default
1.8       cvs       463: dnl
1.13    ! cvs       464: 
        !           465: if test "$with_plugin" = "" ; then
        !           466:     if test "$with_java" = "yes" ; then
        !           467:       if test "$enable_plugin" = "yes" ; then
        !           468:        with_plugin="yes"
        !           469:       else
        !           470:        with_plugin="no"
        !           471:       fi
        !           472:     else
        !           473:       if test "$enable_plugin" = "no" ; then
        !           474:        with_plugin="no"
        !           475:       else
        !           476:        with_plugin="yes"
        !           477:       fi
        !           478:     fi  
1.10      cvs       479: fi  
1.1       cvs       480: 
1.8       cvs       481: dnl
1.10      cvs       482: dnl math is enabled by default
1.8       cvs       483: dnl
1.13    ! cvs       484: if test "$with_math" = "" ; then
        !           485:     if test "$enable_math" = "no" ; then
        !           486:        with_math="no"
        !           487:     else
        !           488:        with_math="yes"
        !           489:     fi
1.8       cvs       490: fi
                    491: 
1.1       cvs       492: if test "$build_amaya" = "yes" ; then 
                    493:     if test ! -f $srcdir/kaffe-$KAFFE_VER/Makefile.in ; then
                    494:        if test "$with_java" = "yes" ; then
                    495:            AC_MSG_WARN(kaffe-$KAFFE_VER sources not found, disabling Java !)
                    496:            with_java="no"
                    497:        fi
                    498:     fi
                    499: 
                    500:     if test ! -f $srcdir/classes/thotlib.zip ; then
                    501:        if test "$with_java" = "yes" ; then
                    502:            AC_MSG_WARN(Java classes not found, disabling Java !)
                    503:            with_java="no"
                    504:        fi
                    505:     fi
                    506: 
                    507:     if test ! -f $srcdir/w3c-libwww-$LIBWWW_VER/Makefile.in ; then
                    508:        if test "$with_java" = "no" ; then
                    509:            AC_MSG_WARN(w3c-libwww-$LIBWWW_VER sources not found !!)
                    510:            AC_MSG_WARN(Disabling Amaya build !)
                    511:            build_amaya="no"
                    512:        fi
                    513:     fi
1.8       cvs       514: 
                    515:     if test ! -f $srcdir/amaya/MathML.S ; then
1.10      cvs       516:        if test "$with_math" = "yes" ; then
1.8       cvs       517:            AC_MSG_WARN(MathML sources not found !!)
1.10      cvs       518:            AC_MSG_WARN(Disabling MATH build !)
                    519:            with_math="no"
                    520:            MATH_OPTIONS=
1.8       cvs       521:        fi
                    522:     fi
1.1       cvs       523: fi
                    524: 
                    525: dnl
                    526: dnl The options for each library or binary
                    527: dnl
                    528: 
                    529: THOT_OPTIONS=
1.10      cvs       530: AMAYA_OPTIONS="-DCOUGAR" $MATH_OPTIONS
1.1       cvs       531: PLUGIN_OPTIONS="-DPLUGIN_TRACE -DXP_UNIX"
                    532: dnl JAVA_OPTIONS="-DDEBUG_KAFFE -DDEBUG_LOCK -DDEBUG_SELECT -DDEBUG_SELECT_CHANNELS -DDEBUG_TIMING -DSYNC_DNS"
                    533: JAVA_OPTIONS=
                    534: ANNOTATIONS_OPTIONS=
                    535: IMGLIBS="-ljpeg -lpng -lz"
1.3       cvs       536: EXTRA_LIBS=
1.1       cvs       537: 
                    538: dnl
                    539: dnl Set up the PATHs needed
                    540: dnl
                    541: 
                    542: API="\$(THOTDIR)/thotlib/include"
                    543: VAR="\$(THOTDIR)/thotlib/internals/var"
                    544: INCL="\$(THOTDIR)/thotlib/internals/h"
                    545: FUNC="\$(THOTDIR)/thotlib/internals/f"
                    546: SCHEMAS="\$(THOTDIR)/schemas"
                    547: SCHEMASOPERA="\$(THOTDIR)/schemasOPERA"
                    548: JPEGINCL="-I\$(THOTDIR)/libjpeg"
                    549: PNGINCL="-I\$(THOTDIR)/libpng -I\$(THOTDIR)/libpng/zlib"
                    550: 
                    551: dnl
                    552: dnl Set up the include variables.
                    553: dnl
                    554: 
                    555: THOTINCLUDES="-I$API -I$VAR -I$INCL -I$FUNC -I$SCHEMAS -I$SCHEMASOPERA $JPEGINCL $PNGINCL"
                    556: APIINCLUDES=-I$API 
                    557: if test "$VPATHOPT" = "" ; then
                    558:        VPATHOPT="VPATH"
                    559: fi
                    560: 
                    561: dnl
                    562: dnl Exports the current values of the variables.
                    563: dnl
                    564: 
                    565: AC_SUBST(THOT_VER)
                    566: AC_SUBST(AMAYA_VER)
                    567: AC_SUBST(LIBWWW_VER)
                    568: AC_SUBST(KAFFE_VER)
1.6       cvs       569: AC_SUBST(CEXTRACT_VER)
                    570: AC_SUBST(CEXTRACT_FLAGS)
1.1       cvs       571: 
1.9       cvs       572: AC_SUBST(KAFFE_ENGINE)
                    573: 
1.1       cvs       574: AC_SUBST(THOTINCLUDES)
                    575: AC_SUBST(APIINCLUDES)
                    576: AC_SUBST(VPATHOPT)
                    577: 
                    578: AC_SUBST(THOT_OPTIONS)
                    579: AC_SUBST(AMAYA_OPTIONS)
                    580: AC_SUBST(PLUGIN_OPTIONS)
                    581: AC_SUBST(JAVA_OPTIONS)
                    582: AC_SUBST(ANNOTATIONS_OPTIONS)
                    583: AC_SUBST(IMGLIBS)
1.3       cvs       584: AC_SUBST(EXTRA_LIBS)
1.1       cvs       585: 
                    586: dnl
                    587: dnl Include the option Makefile.xxx fragment for plugin and or Java options
                    588: dnl
                    589: 
                    590: if test "$with_plugin" = "yes" ; then
                    591:     AC_SUBST_FILE(plugin_frag)dnl
                    592:     plugin_frag=$srcdir/pluginlib/Makefile.plugin
                    593: else
                    594:     AC_SUBST_FILE(plugin_frag)
                    595:     plugin_frag=/dev/null
                    596: fi
                    597: 
                    598: if test "$with_java" = "yes" ; then
1.8       cvs       599:     AC_SUBST_FILE(java_frag)
1.1       cvs       600:     java_frag=$srcdir/javalib/Makefile.java
                    601:     AC_SUBST_FILE(www_frag)
                    602:     www_frag=/dev/null
                    603: else
                    604:     AC_SUBST_FILE(java_frag)
                    605:     java_frag=/dev/null
                    606:     AC_SUBST_FILE(www_frag)dnl
                    607:     www_frag=$srcdir/amaya/Makefile.libwww
                    608: fi
                    609: 
1.10      cvs       610: if test "$with_math" = "yes" ; then
                    611:     AC_SUBST_FILE(math_frag)
                    612:     math_frag=$srcdir/amaya/Makefile.math
1.8       cvs       613: else
1.10      cvs       614:     AC_SUBST_FILE(math_frag)
                    615:     math_frag=/dev/null
1.8       cvs       616: fi
                    617: 
1.1       cvs       618: dnl  ***************************************************************
                    619: dnl
                    620: dnl      FINAL STEP : PRODUCE ALL THE MAKEFILES AND CONFIG FILES
                    621: dnl
                    622: dnl  ***************************************************************
                    623: 
                    624: EXTRA_MAKEFILE_IN=
1.2       cvs       625: make_output="Makefile Options.orig:Options.in tools/Makefile \
1.1       cvs       626:        libjpeg/Makefile libpng/Makefile libpng/zlib/Makefile \
1.2       cvs       627:        tools/mkdep/Makefile \
1.1       cvs       628:        tools/cextract-1.7/Makefile thotlib/Makefile \
1.5       cvs       629:        thotlib/include/Makefile batch/Makefile tablelib/Makefile"
1.1       cvs       630: 
                    631: if test "$build_amaya" = "yes" ; then
1.2       cvs       632: 
                    633:     make_output="$make_output amaya/Makefile \
                    634: tools/javastub/Makefile tools/dns_daemon/Makefile javalib/Makefile \
                    635: pluginlib/Makefile"
                    636: 
                    637:     EXTRA_MAKEFILE_IN="$srcdir/amaya/Makefile.in \
                    638: $srcdir/amaya/Makefile.libwww \
                    639: $srcdir/tools/javastub/Makefile.in \
                    640: $srcdir/tools/dns_daemon/Makefile.in \
                    641: $srcdir/javalib/Makefile.in \
                    642: $srcdir/pluginlib/Makefile.in \
                    643: $srcdir/pluginlib/Makefile.plugin"
                    644: 
1.1       cvs       645: fi
                    646: 
                    647: if test "$build_thot" = "yes" ; then
1.3       cvs       648: 
1.5       cvs       649:     make_output="$make_output thot/Makefile \
                    650: drawlib/Makefile indexlib/Makefile"
                    651: 
1.3       cvs       652:     EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
1.5       cvs       653: $srcdir/thot/Makefile.in \
                    654: $srcdir/drawlib/Makefile.in \
                    655: $srcdir/indexlib/Makefile.in"
1.3       cvs       656: 
                    657:     if test "$build_misc" = "yes" ; then
                    658: 
                    659:        make_output="$make_output misc/Makefile"
                    660:        EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    661: $srcdir/misc/Makefile.in"
                    662: 
                    663:        if test "$build_annotations" = "yes" ; then
                    664: 
                    665:            make_output="$make_output misc/annotations/Makefile"
                    666:            EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    667: $srcdir/misc/annotations/Makefile.in"
                    668: 
                    669:        fi
                    670:        if test "$build_util" = "yes" ; then
                    671: 
                    672:            make_output="$make_output misc/util/Makefile"
                    673:            EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    674: $srcdir/misc/util/Makefile.in"
                    675: 
                    676:            if test "$build_tableaux" = "yes" ; then
                    677: 
                    678:                make_output="$make_output misc/util/tableaux/Makefile"
                    679:                EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    680: $srcdir/misc/util/tableaux/Makefile.in"
                    681: 
                    682:            fi
                    683:            if test "$build_transform" = "yes" ; then
                    684: 
                    685:                make_output="$make_output misc/util/transform/Makefile"
                    686:                EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    687: $srcdir/misc/util/transform/Makefile.in"
                    688: 
                    689:            fi
                    690:            if test "$build_versions" = "yes" ; then
                    691: 
                    692:                make_output="$make_output misc/util/versions/Makefile"
                    693:                EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
                    694: $srcdir/misc/util/versions/Makefile.in"
                    695: 
                    696:            fi
                    697:        fi
                    698:     fi
1.1       cvs       699: fi
                    700: 
                    701: AC_SUBST(EXTRA_MAKEFILE_IN)
1.6       cvs       702: AC_OUTPUT($make_output , [
                    703: dnl
                    704: dnl This fragment of shell code is executed after the
                    705: dnl Makefile(s) dump ...
                    706: dnl
                    707: 
                    708: echo timestamp > stamp-h
                    709: 
                    710: dnl
                    711: dnl Check for an upgrade in the Options numbers
                    712: dnl
                    713: 
                    714: if test -f Options ; then
                    715:    oldversion=`grep Version Options`
                    716:    newversion=`grep Version Options.orig`
                    717:    if test "$oldversion" != "$newversion" ; then
                    718:        echo WARNING : Options files have changed, old options saved to Options.old
                    719:        cp Options Options.old
                    720:        cp Options.orig Options
                    721:        exit 1
                    722:    fi
                    723: fi
                    724: ])
1.1       cvs       725: 
                    726: if test "$build_thot" = "yes" ; then
                    727:     if test "$build_amaya" = "yes" ; then
                    728:        echo Amaya and Thot packages are now configured
                    729:     else
                    730:        echo Thot package is now configured
                    731:     fi
                    732: else
                    733:     if test "$build_amaya" = "yes" ; then
                    734:        echo Amaya package is now configured
                    735:     else
                    736:        echo Nor Amaya nor Thot package found, get the corresponding archive
                    737:     fi
                    738: 
                    739: fi
                    740: 
                    741: if test "$build_amaya" = "yes" ; then
1.5       cvs       742:     if test "$with_java" = "yes" -a "$with_plugin" = "yes" ; then
                    743:         AC_MSG_WARN(Amaya configured with both Java and Plugins support)
                    744:         AC_MSG_WARN(Beware this combination doesn't work well)
1.1       cvs       745:     else
1.5       cvs       746:        if test "$with_java" = "yes" ; then
1.9       cvs       747:            if test "$KAFFE_ENGINE" = "--with-engine=jit" ;  then
                    748:               echo Amaya configured with Java JIT support
                    749:            else
                    750:                if test "$KAFFE_ENGINE" = "--with-engine=intr" ;  then
                    751:                    echo Amaya configured with Java interpreter support
                    752:                else
                    753:                    echo Amaya configured with Java support
                    754:                fi
                    755:             fi
1.11      cvs       756:            echo Using kaffe-$KAFFE_VER Java virtual machine
1.5       cvs       757:        else
                    758:            echo Amaya configured with libWWW
                    759:        fi
                    760:        if test "$with_plugin" = "yes" ; then
                    761:            echo Amaya configured with Plugins support
                    762:        fi
1.8       cvs       763:     fi
1.10      cvs       764:     if test "$with_math" = "yes" ; then
                    765:        echo Amaya configured with Math support
1.1       cvs       766:     fi
1.5       cvs       767: fi
                    768: 
                    769: if test "$no_motif" = yes ; then
                    770:     echo "Motif seems not installed on this machine"
                    771:     echo "Thot and Amaya need Motif 1.2 or 2.0"
                    772:     echo "Thot and Amaya probably won't compile"
                    773: else
                    774: if test "$motif_includes" = "" ; then
                    775:     echo "Motif includes were not found"
                    776:     echo "Thot and Amaya might not compile"
                    777:     echo "Edit your Option file"
                    778: else
                    779: if test "$motif_libraries" = "" ; then
                    780:     echo "Motif libraries were not found"
                    781:     echo "Thot and Amaya might not compile"
                    782:     echo "Edit your Option file"
                    783: fi
                    784: fi
1.1       cvs       785: fi
                    786: 
                    787: echo "Now start \"make all\" (GNU make preferably) to build the binaries"
1.5       cvs       788: 

Webmaster