Annotation of Amaya/configure.in, revision 1.55

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

Webmaster