Annotation of Amaya/configure.in, revision 1.150

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: 
1.114     kahan      13: AC_PREREQ(2.53)
1.1       cvs        14: AC_INIT(thotlib/internals/h/constpiv.h)
                     15: AC_REVISION
                     16: 
                     17: dnl
1.69      kahan      18: dnl Verify that configure is not being called in the Amaya directory
                     19: dnl
                     20: if test -d batch -a -f configure.in ; then
1.70      kahan      21:    echo 
                     22:    echo "****************************************************************"
1.69      kahan      23:    echo ERROR: You must invoke the configure script in a subidrectory
                     24:    echo under the Amaya tree.
                     25:    echo For example:
                     26:    echo "  cd Amaya ; mkdir obj ; cd obj ; ../configure [your options] "
1.70      kahan      27:    echo "****************************************************************"
                     28:    echo 
1.69      kahan      29:    exit 1
                     30: fi
                     31: 
                     32: dnl
1.1       cvs        33: dnl Checks for platform information
                     34: dnl
                     35: 
                     36: AC_CANONICAL_SYSTEM
                     37: AC_CONFIG_HEADER(config.h)
                     38: 
                     39: dnl
                     40: dnl Initializing Automake
                     41: dnl
                     42: 
                     43: AC_PROG_MAKE_SET
                     44: AC_ARG_PROGRAM
                     45: 
                     46: dnl
                     47: dnl Checks for programs.
                     48: dnl
                     49: 
                     50: AC_PROG_YACC
                     51: AC_PROG_CC
                     52: AC_PROG_CPP
1.122     gully      53: AC_PROG_CXX
1.1       cvs        54: AC_PROG_LEX
                     55: AC_PROG_AWK
                     56: AC_PROG_INSTALL
                     57: AC_PROG_LN_S
                     58: AC_PROG_MAKE_SET
                     59: AC_PROG_RANLIB
                     60: AC_PATH_PROG(CP, cp, /bin/cp, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     61: AC_PATH_PROG(MV, mv, /bin/mv, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     62: AC_PATH_PROG(RM, rm, /bin/rm, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     63: AC_PATH_PROG(MKDIR, mkdir, /bin/mkdir, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     64: AC_PATH_PROG(ECHO, echo, /bin/echo, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     65: AC_PATH_PROG(CAT, cat, /bin/cat, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     66: AC_PATH_PROG(CHMOD, chmod, /bin/chmod, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     67: AC_PATH_PROG(SED, sed, /bin/sed, $PATH:/bin:/usr/bin:/usr/ucb/bin)
                     68: AC_PATH_PROG(AR, ar, /usr/bin/ar, $PATH:/bin:/usr/bin:/usr/ucb/bin)
1.6       cvs        69: AC_PATH_PROG(DIFF, diff, /usr/bin/diff, $PATH:/bin:/usr/bin:/usr/ucb/bin)
1.1       cvs        70: 
                     71: dnl
                     72: dnl Checks for libraries.
                     73: dnl
                     74: 
                     75: AC_CHECK_LIB(socket, socket, )
                     76: AC_CHECK_LIB(inet, connect)
                     77: AC_CHECK_LIB(nsl, t_accept)
                     78: AC_CHECK_LIB(dl, dlopen)
1.141     gully      79: #AC_PATH_X
                     80: #AC_PATH_XTRA
1.1       cvs        81: 
1.41      cvs        82: dnl
1.5       cvs        83: dnl Checks for header files.
                     84: dnl
                     85: 
                     86: AC_HEADER_DIRENT
                     87: AC_HEADER_STDC
                     88: AC_HEADER_SYS_WAIT
                     89: 
                     90: AC_CHECK_HEADERS(stdio.h)
                     91: AC_CHECK_HEADERS(sys/types.h types.h)
                     92: AC_CHECK_HEADERS(sys/unistd.h unistd.h)
                     93: AC_CHECK_HEADERS(sys/fcntl.h fcntl.h)
                     94: AC_CHECK_HEADERS(sys/limits.h limits.h)
                     95: AC_CHECK_HEADERS(sys/stat.h stat.h)
                     96: AC_CHECK_HEADERS(sys/file.h)
                     97: AC_CHECK_HEADERS(sys/ioctl.h)
                     98: AC_CHECK_HEADERS(sys/time.h time.h)
                     99: AC_CHECK_HEADERS(sys/systeminfo.h)
1.46      cvs       100: AC_CHECK_HEADERS(sys/string.h strings.h)
1.34      cvs       101: AC_CHECK_HEADERS(sys/syslog.h syslog.h)
1.5       cvs       102: AC_CHECK_HEADERS(sys/socket.h socket.h)
1.131     gully     103: 
                    104: # SG: not used ? => do not compile on macosx
                    105: # AC_CHECK_HEADERS(appkit/appkit.h appkit.h)
                    106: # AC_CHECK_HEADERS(apppkit/apppkit.h apppkit.h)
                    107: 
1.5       cvs       108: AC_CHECK_HEADERS(netinet/in.h in.h)
                    109: AC_CHECK_HEADERS(dn.h)
                    110: AC_CHECK_HEADERS(sys/ipc.h)
                    111: AC_CHECK_HEADERS(net/errno.h sys/errno.h errno.h)
                    112: AC_CHECK_HEADERS(pwd.h)
                    113: AC_CHECK_HEADERS(grp.h)
                    114: AC_CHECK_HEADERS(arpa/inet.h inet.h)
                    115: AC_CHECK_HEADERS(netdb.h)
                    116: AC_CHECK_HEADERS(manifest.h)
                    117: AC_CHECK_HEADERS(bsdtypes.h)
                    118: AC_CHECK_HEADERS(stdefs.h)
                    119: AC_CHECK_HEADERS(bsdtime.h)
                    120: AC_CHECK_HEADERS(sys/select.h select.h)
                    121: AC_CHECK_HEADERS(dnetdb.h)
                    122: AC_CHECK_HEADERS(libc.h)
                    123: AC_CHECK_HEADERS(stdlib.h)
                    124: AC_CHECK_HEADERS(malloc.h)
                    125: AC_CHECK_HEADERS(memory.h)
                    126: AC_CHECK_HEADERS(unixlib.h)
                    127: AC_CHECK_HEADERS(ctype.h)
                    128: AC_CHECK_HEADERS(cursesX.h curses.h)
                    129: AC_CHECK_HEADERS(sys/resource.h resource.h)
                    130: AC_HEADER_DIRENT
                    131: AC_CHECK_HEADERS(dir.h direct.h) dnl AC_HEADER_DIRENT only checks for some..
                    132: AC_HEADER_STDC
                    133: AC_HEADER_SYS_WAIT
                    134: AC_HEADER_TIME
                    135: AC_HEADER_STAT
1.103     kahan     136: AC_CHECK_HEADERS(stdint.h)
1.5       cvs       137: 
                    138: dnl
                    139: dnl Checks for typedefs, structures, and compiler characteristics.
                    140: dnl
                    141: 
                    142: AC_C_CONST
                    143: AC_C_INLINE
                    144: AC_TYPE_MODE_T
                    145: AC_TYPE_OFF_T
                    146: AC_TYPE_SIZE_T
                    147: AC_HEADER_TIME
                    148: AC_STRUCT_TM
                    149: AC_STRUCT_TIMEZONE
                    150: AC_TYPE_UID_T
                    151: 
                    152: dnl
                    153: dnl Checks for library functions.
                    154: dnl
                    155: 
                    156: AC_FUNC_ALLOCA
                    157: AC_TYPE_GETGROUPS
                    158: AC_PROG_GCC_TRADITIONAL
                    159: AC_FUNC_MEMCMP
                    160: AC_FUNC_MMAP
                    161: AC_TYPE_SIGNAL
                    162: AC_FUNC_VPRINTF
1.58      cvs       163: AC_CHECK_FUNCS(getcwd gethostname gettimeofday getwd mkdir mktime putenv select socket strdup strerror strftime strstr strtod strtol uname lstat strcasecmp strncasecmp strchr memcpy)
1.5       cvs       164: 
1.132     gully     165: #
                    166: # Check for operating system (UNIX / WINDOWS / MACOSX )
                    167: # ---------->
                    168: # canonicalize the target OS : default UNIX
                    169: OS_OPTIONS="-D_UNIX"
                    170: case $target_os in
                    171:   aix*)       OS_OPTIONS="-D_UNIX" ;;
                    172:   cygwin*)    OS_OPTIONS="-D_UNIX" ;;
                    173:   darwin*)    OS_OPTIONS="-D_UNIX -D_MACOS" ;;
                    174:   freebsd2*)  OS_OPTIONS="-D_UNIX" ;;
                    175:   freebsd*)   OS_OPTIONS="-D_UNIX" ;;
                    176:   hpux*)      OS_OPTIONS="-D_UNIX" ;;
                    177:   irix*)      OS_OPTIONS="-D_UNIX" ;;
                    178:   linuxaout*) OS_OPTIONS="-D_UNIX" ;;
                    179:   linux*)     OS_OPTIONS="-D_UNIX" ;;
                    180:   mingw32*)   OS_OPTIONS="-D_UNIX" ;;
                    181:   netbsd*)    OS_OPTIONS="-D_UNIX" ;;
                    182:   openbsd*)   OS_OPTIONS="-D_UNIX" ;;
                    183:   osf[12]*)   OS_OPTIONS="-D_UNIX" ;;
                    184:   osf*)       OS_OPTIONS="-D_UNIX" ;;
                    185:   solaris2*)  OS_OPTIONS="-D_UNIX" ;;
                    186:   sunos4*)    OS_OPTIONS="-D_UNIX" ;;
                    187:   ultrix*)    OS_OPTIONS="-D_UNIX" ;;
                    188: esac
                    189: 
1.85      vatton    190: AC_ARG_WITH(GL,              [  --with-gl               enable Opengl canvas (experimental) ])
                    191: dnl
                    192: dnl GL canvas is disabled by default
                    193: dnl
                    194: dnl needs Opengl, glu, Xft (xfree 4 font server)
                    195: dnl needs GTK
                    196: dnl text WILL need freetype2, ftgl
                    197: dnl GL is for opengl
                    198: dnl Glu is for text drawing (until we switch) 
                    199: dnl GLU is for tesselation algortihms (until we extract it from this lib)
                    200: dnl (tesselation is used for polygons with holes in it...)
                    201: dnl gtkgl is for integration of opengl in GTK
                    202: if test "$with_gl" = "" ; then
                    203:  if test "$enable_gl" = "yes" ; then
                    204:     with_gl="yes"
                    205:   else
                    206:     with_gl="no"
                    207:   fi
                    208: fi  
                    209: 
1.120     gully     210: # check if gtk gui should be used
                    211: AC_ARG_WITH(gtk, [  --with-gtk              use GTK GUI toolkit ])
                    212: if test "$with_gtk" = "yes" -o "$enable_gtk" = "yes" ; then
                    213:   if test "$withval" = "no" ; then
                    214:     with_gtk="no"
                    215:   else
                    216:     with_gtk="yes"
                    217:   fi
                    218: fi
                    219: 
1.143     gully     220: # check for mesa library (OpenGL)
                    221: AC_ARG_WITH(MESA,              [  --with-mesa               enable OpenGL canvas with internal MesaLib (only used with wxWidgets GUI) ])
                    222: if test "$with_mesa" = "" ; then
                    223:  if test "$enable_mesa" = "yes" ; then
                    224:     with_mesa="yes"
                    225:     with_gl="no"
                    226:   else
                    227:     with_mesa="no"
                    228:   fi
                    229: fi
                    230: 
                    231: # check if wxWidgets gui should be used
                    232: AC_ARG_WITH(wx, [  --with-wx               use wxWidgets GUI toolkit (experimental)])
1.124     gully     233: if test "$with_wx" = "yes" -o "$enable_wx" = "yes" ; then
                    234:   if test "$withval" = "no" ; then
                    235:     with_wx="no"
                    236:   else
                    237:     with_wx="yes"
1.143     gully     238:     # force mesa or opengl with wxWidgets (mesa is used in priority)
                    239:     if test "$with_gl" = "no" ; then
                    240:       with_mesa="yes"
                    241:     fi
1.124     gully     242:   fi
                    243: fi
                    244: 
1.134     gully     245: # Check if iat least one GUI toolkit is enabled
                    246: if test "$with_wx" = "no" -o "$with_wx" = "" ; then
                    247:   if test "$with_gtk" = "no" -o "$with_gtk" = "" ; then
                    248:     # Nothing is enable so force the default GUI toolkit (GTK)
                    249:     with_wx="no"
                    250:     with_gtk="yes"
1.85      vatton    251:   fi
                    252: fi
                    253: 
1.121     gully     254: # check if no gui is enable
                    255: AC_ARG_WITH(nogui, [  --with-nogui            do not use GUI toolkit ])
                    256: if test "$with_nogui" = "yes" -o "$enable_nogui" = "yes" ; then
                    257:   with_nogui="yes"
                    258:   with_gtk="no"
1.134     gully     259:   with_wx="no"
1.121     gully     260:   NOGUI_OPTIONS="-D_NOGUI"
                    261: fi
                    262: 
1.136     gully     263: # check if wxWidgets debug is enable
                    264: AC_ARG_WITH(wxdebug,              [  --with-wxdebug               compiles wxWidgets with debuging options ])
                    265: if test "$with_wxdebug" = "yes" ; then
                    266:   with_wxdebug="yes"
                    267: else
                    268:   with_wxdebug="no"
                    269: fi
                    270: 
1.134     gully     271: if test "$with_wx" = "yes" ; then
1.120     gully     272:   if test "$with_gtk" = "yes" ; then
                    273:     echo 
                    274:     echo "****************************************************************"
                    275:     echo " ERROR: "
                    276:     echo " More than one GUI toolkit is enable"
                    277:     echo " Only one GUI toolkit should be enable (turn off one)"
                    278:     echo " exemple ok :  ../configure --with-gtk "
1.134     gully     279:     echo " exemple !ok : ../configure --with-gtk --with-wx"
1.120     gully     280:     echo "****************************************************************"
                    281:     echo 
                    282:     exit 1
                    283:   fi
                    284: fi
1.134     gully     285: 
1.85      vatton    286: if test "$with_gtk" = "yes" ; then
1.134     gully     287:   gdkimlib_h_found="no"
1.63      vatton    288: 
1.134     gully     289:   # check that gtk-config exists
                    290:   AC_CHECK_PROG(GTKCONFIG_FOUND,gtk-config,yes,no)
                    291:   if test "$GTKCONFIG_FOUND" = no ; then
                    292:     AC_MSG_ERROR(Cannot find gtk-config. Please install gtk development library.)
                    293:   fi
                    294:                    
1.131     gully     295:   GTK_INCLUDES="${GTK_INCLUDES} `gtk-config --cflags`"
1.124     gully     296:   AC_SUBST(GTK_INCLUDES)
                    297:   GTK_LIBRARIES="`gtk-config --libs`"
1.134     gully     298:   # GL doesn't need the imlib
1.124     gully     299:   if test "${with_gl}" != "yes" ; then
1.134     gully     300:     GTK_LIBRARIES="${GTK_LIBRARIES} -lgdk_imlib"
                    301:   else
                    302:     gdkimlib_h_found="yes"
1.124     gully     303:   fi
1.106     kahan     304: 
1.124     gully     305:   AC_SUBST(GTK_LIBRARIES)
                    306:   GTK_OPTIONS="-D_GTK"
1.76      vatton    307:   no_graphic=yes
1.134     gully     308: 
1.150   ! gully     309:   # SG : lookingfor gtkimlib includes
        !           310:   #      because not found with gtk-config on macosx
        !           311:   gtk_path_for_gdkimlib_h="`gtk-config --prefix`"
        !           312:   for ac_dir in               \
        !           313:     /sw/include/              \
        !           314:     /sw/local/include         \
        !           315:     /usr/include              \
        !           316:     /usr/local/include        \
        !           317:     "$gtk_path_for_gdkimlib_h/include" \
        !           318:     "$gtk_path_for_gdkimlib_h/local/include" \
        !           319:     ; \
        !           320:   do
        !           321:     if test -r "$ac_dir/gdk_imlib.h"; then
        !           322:       echo "found gdk_imlib.h"
        !           323:       gdkimlib_h_found="yes"
        !           324:       GTK_INCLUDES="${GTK_INCLUDES} -I$ac_dir"
        !           325:       break
        !           326:     fi
        !           327:   done 
        !           328: 
1.134     gully     329:   if test "$gdkimlib_h_found" = "no" ; then
                    330:     echo
                    331:     echo "****************************************************************"
                    332:     echo " ERROR: gdk_imlib.h not found -"
                    333:     echo " [please install imlib developpement package (libimlib1-devel on mandrake)]"
                    334:     echo "****************************************************************"
                    335:     exit 1
                    336:   fi                                                                                         
1.120     gully     337: fi
                    338: 
1.143     gully     339: 
                    340: if test "$with_mesa" = "yes" ; then
                    341:   # --------- compile Mesa library (opengl) --------------- #
                    342: 
                    343:   # check that sources of Mesa exists
                    344:   if test ! -f ../../Mesa/Makefile ; then
                    345:     AC_MSG_ERROR(Mesa library sources not found (opengl). Please download Mesa sources (http://www.mesa3d.org/) or remove --with-gl option !)
                    346:   fi
                    347: 
                    348:   OLDDIR=`pwd`
                    349:   cd ../../Mesa
                    350: 
                    351: 
                    352:   echo "---> Compiling Mesa library."
                    353:   if test "$OS_OPTIONS" = "-D_UNIX" ; then
                    354:     # LINUX
1.145     gully     355:     # compile only .a libraries because Amaya is linked staticaly with mesa
                    356:     make linux-static    
                    357:     if test $? != 0 ; then
                    358:       AC_MSG_ERROR(A problem occurs durring Mesa library compilation. Please fix the problem and try again.)
                    359:     fi
1.143     gully     360:   fi
                    361:   echo "---> Compiling Mesa library. - DONE"
                    362: 
                    363: 
1.145     gully     364:   echo "---> Install Mesa library into Amaya/Mesa/"
1.143     gully     365:   mkdir -p $OLDDIR/../Mesa
                    366:   mkdir -p $OLDDIR/../Mesa/include
                    367:   mkdir -p $OLDDIR/../Mesa/lib
1.145     gully     368:   # copy includes
1.143     gully     369:   cp -r include/GL $OLDDIR/../Mesa/include/
1.145     gully     370:   # copy libraries (only .a because we dont want to share)
                    371:   cp lib/*.a $OLDDIR/../Mesa/lib/
                    372:   echo "---> Install Mesa library into Amaya/Mesa/ - DONE"
1.143     gully     373: 
                    374: 
                    375:   cd $OLDDIR
                    376: 
                    377:   # this is the flags used to build amaya with OpenGL
                    378:   GL_OPTIONS="-D_GL"
                    379:   GL_INCLUDES="-I../../Mesa/include"
                    380:   GL_LIBRARIES="-Wl,-rpath,../../Mesa/lib -L../../Mesa/lib -lGL -lGLU"
                    381:   AC_SUBST(GL_INCLUDES)
                    382:   AC_SUBST(GL_LIBRARIES)
                    383: fi
                    384: 
1.124     gully     385: if test "$with_wx" = "yes" ; then
1.135     gully     386:   
                    387:   # check that sources of wxWidgets exists
                    388:   if test ! -f ../../wxWidgets/Makefile.in ; then
                    389:     AC_MSG_ERROR(wxWidgets library sources not found. Please download wxWidgets sources (http://www.wxwidgets.org/) or remove --with-wx option !)
                    390:   fi
                    391: 
                    392:   # --------- compile wxWidgets library --------------- #
                    393:   echo "---> Configuring wxWidgets library."
                    394:   OLDDIR=`pwd`
1.149     gully     395:   # create the build directory (debug or release)
1.135     gully     396:   cd ../../wxWidgets/
1.149     gully     397:   if test $with_wxdebug = yes ; then
                    398:     WXBUILD_DIR="AMAYABUILD_DEBUG"
                    399:   else
                    400:     WXBUILD_DIR="AMAYABUILD_RELEASE"
                    401:   fi
                    402:   mkdir -p $WXBUILD_DIR
                    403:   cd $WXBUILD_DIR
1.136     gully     404: 
1.149     gully     405:   # remove old configure cached options
1.135     gully     406:   rm -f configarg.cache
1.136     gully     407: 
                    408:   # setup configure options
1.135     gully     409:   if test "$OS_OPTIONS" = "-D_UNIX" ; then
                    410:     # LINUX
1.145     gully     411:     #   --enable-gtk2           use GTK+ 2.0 if available (EXPERIMENTAL)
                    412:     #   --enable-shared         create shared library code
                    413:     #   --enable-unicode        compile wxString with Unicode support
                    414:     #   --with-gtk              use GTK+
                    415:     #   --with-opengl           use OpenGL (or Mesa)
                    416:     WXCONFIGURE_OPTION="--with-opengl --with-gtk --enable-gtk2 --enable-unicode --enable-shared=no"
1.135     gully     417:   fi
                    418:   if test "$OS_OPTIONS" = "-D_UNIX -D_MACOS" ; then
                    419:     # MACOSX
                    420:     AC_MSG_ERROR(TODO: configurer wxWidgets pour MACOSX)
1.145     gully     421:     # --with-mac              use Mac OS X
                    422:     # --with-cocoa            use Cocoa
1.136     gully     423:     # WXCONFIGURE_OPTION="--with-opengl --with-gtk --enable-gtk2 --enable-unicode"
                    424:   fi
                    425:   if test $with_wxdebug = yes ; then
1.141     gully     426:     WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-debug"
1.143     gully     427:     # SG: I've disabled other debug options because the lib has bugs when using these flags \
                    428:     # (maybe because these flags are not often used by wxWidgets developpers)
1.141     gully     429:     # WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-debug --enable-debug_cntxt --enable-debug_gdb --enable-debug_info --enable-debug_flag --enable-mem_tracing"
1.145     gully     430:   else
                    431:     WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-optimise"
1.135     gully     432:   fi
1.143     gully     433: 
1.136     gully     434:   # launch the configure
1.143     gully     435:   if test "$with_mesa" = "yes" ; then
                    436:     # use internal OpenGL (mesa) libraries
                    437:     ../configure CFLAGS="-I../../Mesa/include" CXXFLAGS="-I../../Mesa/include" CPPFLAGS="-I../../Mesa/include" LDFLAGS_GL="-Wl,-rpath,../../Mesa/lib -L../../Mesa/lib" OPENGL_LIBS="-lGL -lGLU" $WXCONFIGURE_OPTION
1.145     gully     438:     if test $? != 0 ; then
                    439:       AC_MSG_ERROR(A problem occurs durring wxWidgets library configuration. Please fix the problem and try again.)
                    440:     fi
1.143     gully     441:   else
                    442:     # use OpenGL system libraries
                    443:     ../configure $WXCONFIGURE_OPTION    
                    444:   fi
1.136     gully     445: 
1.135     gully     446:   echo "---> Configuring wxWidgets library. - DONE"
                    447:   echo "---> Compiling wxWidgets library."
                    448:   # compile the lib
                    449:   make
1.145     gully     450:   if test $? != 0 ; then
                    451:     AC_MSG_ERROR(A problem occurs durring wxWidgets library compilation. Please fix the problem and try again.)
                    452:   fi
1.135     gully     453:   echo "---> Compiling wxWidgets contrib xrc library."
                    454:   cd contrib/src/xrc
                    455:   # compile xrc lib (xml resource lib)
                    456:   make
                    457:   cd $OLDDIR
                    458:   echo "---> Compiling wxWidgets library. - DONE"
                    459:   # --------- compile wxWidgets library - DONE --------------- #
                    460: 
1.143     gully     461: 
                    462:   # --------- install wxWidgets library  --------------- #
                    463:   echo "---> Install wxWidgets library into Amaya."
                    464:   OLDDIR=$(pwd)
                    465:   cd ../../wxWidgets
1.149     gully     466:   # create destination directories
                    467:   if test $with_wxdebug = yes ; then
                    468:     WXAMAYA_DIR="wxWidgets_debug"
                    469:   else
                    470:     WXAMAYA_DIR="wxWidgets_release"
                    471:   fi
                    472:   mkdir -p $OLDDIR/../$WXAMAYA_DIR
                    473:   mkdir -p $OLDDIR/../$WXAMAYA_DIR/include
                    474:   mkdir -p $OLDDIR/../$WXAMAYA_DIR/contrib
                    475:   mkdir -p $OLDDIR/../$WXAMAYA_DIR/contrib/include
                    476:   mkdir -p $OLDDIR/../$WXAMAYA_DIR/lib
                    477:   # remove old lib
                    478:   rm -rf $OLDDIR/../$WXAMAYA_DIR/lib/*
1.145     gully     479:   # copy includes
1.149     gully     480:   cp -r include/* $OLDDIR/../$WXAMAYA_DIR/include/
                    481:   cp -r contrib/include/* $OLDDIR/../$WXAMAYA_DIR/contrib/include/
                    482:   cp -r $WXBUILD_DIR/lib/wx $OLDDIR/../$WXAMAYA_DIR/lib/
1.145     gully     483:   # copy libraries (only .a because we dont want to share)
1.149     gully     484:   cp -pd $WXBUILD_DIR/lib/*.a $OLDDIR/../$WXAMAYA_DIR/lib/
1.145     gully     485:   # copy autoconfig script (needed to setup 'Option' file)
1.149     gully     486:   cp -pd $WXBUILD_DIR/*-config $OLDDIR/../$WXAMAYA_DIR/
1.143     gully     487:   cd $OLDDIR
                    488:   echo "---> Install wxWidgets library into Amaya. - DONE"
                    489:   # --------- install wxWidgets library - DONE --------------- #
                    490: 
                    491: 
1.135     gully     492:   # --------- configuring wxWidgets paths --------------- #
1.149     gully     493:   WXCONFIG=../$WXAMAYA_DIR/wx-config
1.143     gully     494:   # look for relative wxWidgets path : necessary to install into different paths amaya
1.149     gully     495:   WXCONFIG_ARGS="--prefix=../../$WXAMAYA_DIR --exec-prefix=../../$WXAMAYA_DIR"
1.134     gully     496:   # check that wx-config exists
1.135     gully     497:   if test ! -f $WXCONFIG ; then
1.143     gully     498:     AC_MSG_ERROR(Cannot find wx-config. Please download wxWidgets (http://www.wxwidgets.org/))
1.134     gully     499:   fi
1.144     gully     500: 
                    501:   # setup include paths  
1.135     gully     502:   WX_INCLUDES="`$WXCONFIG $WXCONFIG_ARGS --cxxflags`"
1.149     gully     503:   WX_INCLUDES="-I../../$WXAMAYA_DIR/contrib/include/ ${WX_INCLUDES}"
1.124     gully     504:   AC_SUBST(WX_INCLUDES)
                    505: 
1.144     gully     506:   # setup libraries paths
                    507:   WX_LIBRARIES=""
                    508:   WX_LIBRARIES_EXTRA_PARAM=""
                    509:   WXCONFIG_LIBS_PARAM="xrc,html,adv,core,xml"
1.132     gully     510:   # GL is used ?
1.143     gully     511:   if test "$with_gl" = "yes" -o "$with_mesa" = "yes" ; then
1.144     gully     512:     WXCONFIG_LIBS_PARAM="${WXCONFIG_LIBS_PARAM},gl"
1.132     gully     513:     # SG: this is a mistery why wx-config doesn't add these needed option on macosx
                    514:     if test "$OS_OPTIONS" = "-D_UNIX -D_MACOS" ; then
1.144     gully     515:       WX_LIBRARIES_EXTRA_PARAM="-framework OpenGL -framework AGL"
1.132     gully     516:     fi
1.124     gully     517:   fi
1.149     gully     518:   WX_LIBRARIES="-Wl,-rpath,../../$WXAMAYA_DIR/lib `$WXCONFIG $WXCONFIG_ARGS --libs=${WXCONFIG_LIBS_PARAM}` ${WX_LIBRARIES_EXTRA_PARAM}"
1.144     gully     519:   AC_SUBST(WX_LIBRARIES)
1.124     gully     520: 
                    521:   WX_OPTIONS="-D_WX"
1.135     gully     522:   # --------- configuring wxWidgets paths - DONE --------------- #
1.132     gully     523: 
                    524:   no_graphic=yes
1.124     gully     525: fi
                    526: 
1.63      vatton    527: if test "${GCC}" = "yes"; then
                    528:    CPP="${CPP} -x c"
                    529: fi
                    530: 
1.1       cvs       531: dnl  ***************************************************************
                    532: dnl
1.61      cvs       533: dnl    SPECIFIC STUFF : CONFIGURATION OPTIONS FOR AMAYA
1.1       cvs       534: dnl
                    535: dnl  ***************************************************************
                    536: 
1.101     kahan     537: # We don't use our graphic libraries for the pure GTK version (without GL)
                    538: 
1.132     gully     539: # if configure has option --with-graphiclibs then dont check for system graphic libs
                    540: # force amaya static graphic libs to be used
                    541: AC_ARG_WITH(graphiclibs, [  --with-graphiclibs     use static libjpeg, libpng.])
1.143     gully     542: if test "$with_graphiclibs" = "yes" -o "$enable_graphiclibs" = "yes" ; then
1.132     gully     543:   no_graphic="no"
                    544: else
                    545:   no_graphic="yes"
1.76      vatton    546: fi
1.132     gully     547:                  
1.76      vatton    548: if test "$no_graphic" = yes; then
                    549: dnl
                    550:     AC_MSG_CHECKING([for libjpeg version = 6b])
                    551:     AC_EGREP_CPP([x 62 *x],
                    552:         [#include <jpeglib.h>
                    553:          x JPEG_LIB_VERSION x],
                    554: dnl
                    555:         AC_MSG_RESULT([yes])
1.105     vatton    556:        JPEGINCL=''
1.76      vatton    557:         LIBJPEG='-ljpeg'
                    558:         MAKEJPEG=['#'],
                    559: dnl
                    560:         AC_MSG_RESULT([no])
1.105     vatton    561:        JPEGINCL='-I$(THOTDIR)/libjpeg'
1.76      vatton    562:         LIBJPEG='../libjpeg.a'      dnl LIBJPEG goes into amaya/Makefile.in
                    563:         )
                    564: dnl    
                    565: dnl
1.95      vatton    566:     AC_MSG_CHECKING([for libpng version = 1.0.x or 1.2.x])
                    567:     AC_EGREP_CPP([x \"1.[02]\..*\" *x],
1.76      vatton    568:         [#include <png.h>
                    569:        x PNG_LIBPNG_VER_STRING x],
                    570: dnl
                    571:         AC_MSG_RESULT([yes])
1.105     vatton    572:        PNGINCL=''
1.76      vatton    573:         LIBPNG='-lpng'
                    574:         LIBZ=''
                    575:        MAKEPNG=['#'],
                    576: dnl
                    577:         AC_MSG_RESULT([no])
1.105     vatton    578:        PNGINCL='-I$(THOTDIR)/libpng -I$(THOTDIR)/libpng/zlib'
1.76      vatton    579:         LIBPNG='../libpng.a'
                    580:         LIBZ='../libz.a'
                    581:         )
                    582: else
1.105     vatton    583:     JPEGINCL='-I$(THOTDIR)/libjpeg'
1.76      vatton    584:     LIBJPEG='../libjpeg.a'
1.105     vatton    585:     PNGINCL='-I$(THOTDIR)/libpng -I$(THOTDIR)/libpng/zlib'
1.76      vatton    586:     LIBPNG='../libpng.a'
                    587:     LIBZ='../libz.a'
                    588: fi
                    589: dnl
                    590: AC_SUBST(LIBJPEG)
                    591: AC_SUBST(LIBPNG)
                    592: AC_SUBST(LIBZ)
                    593: AC_SUBST(MAKEJPEG)
                    594: AC_SUBST(MAKEPNG)
                    595: 
1.119     vatton    596: AMAYA_VER="8.2"
1.1       cvs       597: 
                    598: dnl
1.6       cvs       599: dnl We use a special versoin of cextract patched for alignment
                    600: dnl to build the signatures of the modules functions located in f subdirs
                    601: dnl
                    602: CEXTRACT_VER="1.7"
                    603: CEXTRACT_FLAGS="+O"
                    604: 
1.3       cvs       605: 
                    606: dnl
1.9       cvs       607: dnl Adjust the some variables depending on the host and compiler
1.61      cvs       608: dnl Thotlib NEED signed chars !!!
1.7       cvs       609: dnl
                    610: 
                    611: if test "${CC}" = "gcc" ; then
1.44      cvs       612:   CFLAGS="${CFLAGS} -W "
1.7       cvs       613:   case "${host}" in
                    614:       *-*-irix5* | *-*irix6* )
                    615:          CFLAGS="${CFLAGS} -fsigned-char"
                    616:       ;;
                    617:   esac
1.14      cvs       618: fi
                    619: 
                    620: if test "$ac_cv_c_const" = "no" ; then
                    621:   CFLAGS="${CFLAGS} -DCONST= "
1.7       cvs       622: fi
                    623: 
1.122     gully     624: 
                    625: # force C mode (-x c)
1.123     gully     626: CFLAGS="${CFLAGS} -x c"
1.122     gully     627: 
                    628: # C++ options (-x c++)
                    629: CXX_OPTIONS="-D__cplusplus"
1.123     gully     630: CXXFLAGS="${CXXFLAGS} -W -x c++ ${CXX_OPTIONS}"
1.122     gully     631: 
1.132     gully     632: # setup LDFLAGS
                    633: # on macosx, specific flags must be set to avoid conflicts with allready installed libwww
                    634: # for exemple it's possible to install libwww with fink (fink install libwww)
                    635: # to avoid conflicts, we just force the linker to search for specified amaya path first
1.133     gully     636: if test "$OS_OPTIONS" = "-D_UNIX -D_MACOS" ; then
1.132     gully     637:   LDFLAGS="-Wl,-search_paths_first"
                    638: else
                    639:   LDFLAGS=""
                    640: fi
1.128     gully     641: 
                    642: dnl
1.61      cvs       643: dnl Check for availability of amaya sources
1.1       cvs       644: dnl
                    645: 
                    646: build_amaya="yes"
                    647: 
                    648: if test "$with_amaya" = "no" ; then
                    649:     build_amaya="no"
1.45      cvs       650: else
                    651:   if test ! -f $srcdir/amaya/Makefile.in ; then
1.1       cvs       652:     AC_MSG_WARN(Amaya browser/editor sources not found, disabling Amaya build !)
                    653:     build_amaya="no"
1.45      cvs       654:   fi
1.1       cvs       655: fi
                    656: 
                    657: dnl
1.50      cvs       658: dnl Check for additionnal packages
1.1       cvs       659: dnl use AC_CONFIG_SUBDIRS to launch configure in the subdir
                    660: dnl
1.93      kahan     661: 
1.143     gully     662: if test "$with_gl" = "yes" -o "$with_mesa" = "yes" ; then
                    663: 
                    664:   # if with_gl is on then test system opengl library (GL & GLU)
                    665:   if test "$with_gl" = "yes" ; then
1.139     carcone   666:        # setup a list of standard paths int LDFLAGS
                    667:        # for AC_CHECK_LIB library existance checks
1.140     carcone   668:        LIBS_OLD=$LIBS
1.139     carcone   669:        LDFLAGS_OLD=$LDFLAGS
                    670:        LDFLAGS="-L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib"
1.75      cheyroul  671:        AC_MSG_CHECKING([OpenGL])
                    672:        for ac_dir in                           \
                    673:                /usr/include                    \
                    674:                /usr/X11R6/include              \
                    675:                /usr/local/include              \
                    676:                ; \
1.80      cheyroul  677:        do  if test -r "$ac_dir/GL/gl.h" ; then
1.143     gully     678:           gl_inc="yes"
                    679:           GL_INC_I="$ac_dir"
                    680:           if test "$ac_dir" != "/usr/include" ; then
                    681:             GL_INCLUDES="-I$ac_dir"
                    682:          fi
                    683:           AC_CHECK_LIB(GL,glBegin,,AC_MSG_ERROR(Cannot find OpenGL library. Please install OpenGL.))
                    684:           AC_MSG_RESULT([yes])
                    685:                  break 
                    686:         fi
                    687:        done
                    688:        
1.80      cheyroul  689:        AC_MSG_CHECKING([GLU])  
1.75      cheyroul  690:        for ac_dir in                           \
                    691:                /usr/include                    \
                    692:                /usr/X11R6/include              \
                    693:                /usr/local/include              \
                    694:                ; \
1.138     gully     695:        do  if test -r "$ac_dir/GL/glu.h" ; then
1.143     gully     696:           glu_inc="yes"
                    697:           GL_INC_II="$ac_dir"
                    698:           if test "$ac_dir" != "/usr/include" ; then
                    699:             if test "$ac_dir" != "$GL_INC_I" ; then
                    700:               GL_INCLUDES="$GL_INCLUDES -I$ac_dir"
                    701:             fi
                    702:           fi
                    703:           # now test that glu version is >= 1.2
                    704:           AC_CHECK_LIB(GLU,gluNewTess,,AC_CHECK_LIB(glu32,gluNewTess,,AC_MSG_ERROR(Cannot find OpenGL GLU lib or existing version is < 1.2. Pease upgrade your GLU library.)))
                    705:           AC_MSG_RESULT([yes])
                    706:                  break 
                    707:         fi
                    708:         done
1.139     carcone   709:        LDFLAGS=$LDFLAGS_OLD
1.140     carcone   710:        LIBS=$LIBS_OLD
1.143     gully     711:     if test "$gl_inc" = "" ; then              
                    712:       AC_MSG_WARN(Opengl headers (gl.h) not found !!)
                    713:       AC_MSG_WARN(Disabling opengl build !)
                    714:       with_gl="no"
                    715:       GL_OPTIONS=      
                    716:       GL_INCLUDES=     
                    717:       GL_LIBRARIES=
                    718:       exit 1;
                    719:     fi
                    720: 
                    721:     if test "$glu_inc" = "" ; then
                    722:       AC_MSG_WARN(Glu headers (glu.h) not found !!)
                    723:       AC_MSG_WARN(Disabling opengl build !)
                    724:   
                    725:       with_gl="no"
                    726:       GL_OPTIONS=      
                    727:       GL_INCLUDES=     
                    728:       GL_LIBRARIES=
                    729:       exit 1;
                    730:     fi
                    731:     
                    732:     GL_LIBRARIES="-L/usr/lib -L/usr/X11R6/lib -lGL -lGLU"
                    733:     GL_OPTIONS="-D_GL"
                    734: 
                    735:     AC_SUBST(GL_INCLUDES)
                    736:     AC_SUBST(GL_LIBRARIES)
                    737:   fi # if with_gl
1.139     carcone   738:        
1.143     gully     739:   # check for gtkglarea.h only if gtk gui is selected
                    740:   if test "$with_gtk" = "yes" ; then
                    741:     AC_MSG_CHECKING([GTKGLAREA])
                    742:     for ac_dir in                              \
1.132     gully     743:                /usr/include/GL                 \
1.75      cheyroul  744:                /usr/include                    \
                    745:                /usr/X11R6/include/GL           \
                    746:                /usr/X11R6/include              \
                    747:                /usr/local/include              \
                    748:                /usr/local/include/GL           \
                    749:                ; \
1.143     gully     750:     do  if test -r "$ac_dir/gtkgl/gtkglarea.h" ; then
                    751:       gtkgl_inc="yes"
                    752:         if test "$ac_dir" != "/usr/include" ; then
                    753:           if test "$ac_dir" != "$GL_INC_II" ; then
                    754:             if test "$ac_dir" != "$GL_INC_I" ; then
                    755:               GTK_GL_INCLUDES="-I$ac_dir"
                    756:             fi
                    757:           fi
                    758:         fi
                    759:         AC_MSG_RESULT([yes])
                    760:         break  
                    761:     fi
                    762:     done
                    763:     GTK_GL_LIBRARIES="-lgtkgl"
                    764: 
                    765:     if test "$gtkgl_inc" = "" ; then
                    766:       AC_MSG_WARN(Gtkglarea headers (gktglarea.h) not found !!)
                    767:       AC_MSG_WARN(Disabling opengl build !)
                    768:       with_gl="no"
                    769:       exit 1;
                    770:     fi
                    771:     AC_SUBST(GTK_GL_INCLUDES)
                    772:     AC_SUBST(GTK_GL_LIBRARIES)
                    773:   fi
1.132     gully     774: 
1.143     gully     775:   # checking for freetype lib (fonts library)
                    776:   if test ! -f $(which freetype-config) ; then
                    777:     AC_MSG_ERROR(Cannot find freetype library (font load/display routines). Please install it.)
                    778:   fi
                    779:   FREETYPE_INCLUDES=`freetype-config --cflags`
                    780:   FREETYPE_LIBRARIES=`freetype-config --libs`
                    781:   AC_SUBST(FREETYPE_INCLUDES)
                    782:   AC_SUBST(FREETYPE_LIBRARIES)
                    783: 
                    784: 
                    785:   # checking for xft lib
                    786:   # (not used because xft-config doesn't exist on debian stable)
                    787:   #if test ! -f $(which xft-config) ; then
                    788:   #  AC_MSG_ERROR(Cannot find Xft library. Please install it.)
                    789:   #fi
                    790:   #XFT_INCLUDES=`xft-config --cflags`
                    791:   #XFT_LIBRARIES=`xft-config --libs`
                    792:   #AC_SUBST(XFT_INCLUDES)
                    793:   #AC_SUBST(XFT_LIBRARIES)
                    794: 
                    795:   # START CHECKING XFT #
                    796:   # checking for Xft (old way)
                    797:   AC_MSG_CHECKING([Xft])
                    798:   for ac_dir in                        \
1.104     cheyroul  799:                /usr/include                    \
                    800:                /usr/X11R6/include              \
                    801:                /usr/local/include              \
                    802:                /usr/include/X11/Xft            \
                    803:                /usr/X11R6/include/X11/Xft      \
                    804:                /usr/local/include/X11/Xft      \
                    805:                /usr/include/X11/Xft1           \
                    806:                /usr/X11R6/include/X11/Xft1     \
1.113     vatton    807:                /usr/include/Xft2/X11/Xft/      \
1.104     cheyroul  808:                /usr/local/include/X11/Xft1     \
                    809:                /usr/include/X11/Xft2           \
                    810:                /usr/X11R6/include/X11/Xft2     \
                    811:                /usr/local/include/X11/Xft2     \
                    812:                ; \
1.143     gully     813:   do  if test -r "$ac_dir/Xft.h" ; then
                    814:     xft_inc="yes"
                    815:     XFT_INCLUDES="-I$ac_dir"
                    816:     AC_MSG_RESULT([yes])       
                    817:     break      
                    818:   fi
                    819:   done 
                    820:   if test "$xft_inc" = "" ; then
                    821:     AC_MSG_WARN(Xft 2 headers (Xft.h) not found !!)
                    822:     AC_MSG_WARN(Disabling opengl build !)
                    823:       with_gl="no"
                    824:       exit 1;
                    825:   fi
                    826: 
                    827:   AC_MSG_CHECKING([Xft-library])
                    828:   for ac_dir in                        \
                    829:                /usr/lib                        \
                    830:                /usr/X11R6/lib                  \
                    831:                /usr/local/lib                  \
                    832:                ; \
                    833:   do  if test -r "$ac_dir/libXft.so" ; then
                    834:     xft_lib="yes"
                    835:     XFT_LIBRARIES="-L$ac_dir -lXft"
                    836:     AC_MSG_RESULT([yes])
                    837:     break      
                    838:   fi
                    839:   done 
                    840:   if test "$xft_lib" = "" ; then
                    841:     AC_MSG_WARN(Xft 2 librarie (libXft.so) not found !!)
                    842:     AC_MSG_WARN(Disabling opengl build !)
                    843:       with_gl="no"
                    844:       exit 1;
                    845:   fi
                    846:   AC_SUBST(XFT_INCLUDES)
                    847:   AC_SUBST(XFT_LIBRARIES)
                    848:   # END CHECKING XFT #
                    849: 
                    850: 
                    851:   AC_MSG_CHECKING([gcc3])      
                    852:   for ac_dir in                        \
1.96      cheyroul  853:                /usr/lib                        \
                    854:                /usr/X11R6/lib          \
                    855:                /usr/local/lib          \
                    856:                ; \
1.143     gully     857:   do  if test -r "$ac_dir/libstdc++.so.5" ; then
                    858:     stdglu_inc="yes"
                    859:     STDCPP_LIBRARIES="-lstdc++"
                    860:     STDCPP_INCLUDES=""
                    861:     AC_MSG_RESULT([yes])       
                    862:     break
                    863:   fi
                    864:   done
                    865:   AC_SUBST(STDCPP_INCLUDES)
                    866:   AC_SUBST(STDCPP_LIBRARIES)
                    867: 
                    868:   NOPRINT=""
                    869:   PRINTIFNOTGL=" print_prog"
                    870: 
                    871: else # if with_gl or with_mesa
                    872: 
                    873:   NOPRINT=""
                    874:   PRINTIFNOTGL=" print_prog"
1.132     gully     875: 
1.143     gully     876: fi # if with_gl or with_mesa
1.132     gully     877: 
1.97      cheyroul  878: AC_SUBST(PRINTIFNOTGL)
1.112     cheyroul  879: AC_SUBST(NOPRINT)
                    880: 
1.76      vatton    881: 
                    882: AC_ARG_ENABLE(svg,           [  --disable-svg           remove SVG support ])
                    883: AC_ARG_ENABLE(annot,         [  --disable-annot         remove Annotations support ])
1.146     kahan     884: AC_ARG_ENABLE(redland,       [  --disable-redland       disable the redland RDF library ])
1.116     kahan     885: AC_ARG_ENABLE(system-redland,       [  --enable-system-redland try the redland RDF system library ])
1.108     kahan     886: AC_ARG_ENABLE(bookmarks,     [  --enable-bookmarks      enables experimental bookmark support ])
1.76      vatton    887: AC_ARG_ENABLE(generic-xml,   [  --disable-generic-xml   remove Generic XML support ])
                    888: 
1.75      cheyroul  889: dnl
1.21      cvs       890: dnl plugins support is disabled by default
1.8       cvs       891: dnl
1.13      cvs       892: 
                    893: if test "$with_plugin" = "" ; then
1.21      cvs       894:   if test "$enable_plugin" = "yes" ; then
1.55      kahan     895:     with_plugin="yes"
1.21      cvs       896:   else
1.17      cvs       897:     with_plugin="no"
                    898:   fi
1.10      cvs       899: fi  
1.1       cvs       900: 
1.8       cvs       901: dnl
1.68      vatton    902: dnl svg is enabled by default
1.26      cvs       903: dnl
1.68      vatton    904: if test "$with_svg" = "" ; then
                    905:     if test "$enable_svg" = "no" ; then
                    906:        with_svg="no"
1.49      cvs       907:     else
1.68      vatton    908:        with_svg="yes"
1.26      cvs       909:     fi
                    910: fi
                    911: 
                    912: dnl
1.56      kahan     913: dnl annotations is enabled by default
1.47      cvs       914: dnl
                    915: if test "$with_annot" = "" ; then
1.56      kahan     916:     if test "$enable_annot" = "no" ; then
                    917:        with_annot="no"
                    918:     else
1.54      cvs       919:        with_annot="yes"
1.47      cvs       920:     fi
1.99      kahan     921: else
                    922:     with_annot="yes"
1.47      cvs       923: fi
                    924: 
1.93      kahan     925: 
                    926: dnl
1.146     kahan     927: dnl The redland library is enabled by default
1.93      kahan     928: dnl
1.146     kahan     929: if test "$with_redland" = "" ; then
                    930:     if test "$enable_redland" = "no" ; then
                    931:        with_redland="no"
1.93      kahan     932:     else
1.109     kahan     933:        with_redland="yes"
                    934:     fi
                    935: else
1.146     kahan     936:     with_redland="yes"
1.109     kahan     937: fi
                    938: 
                    939: dnl
1.116     kahan     940: dnl The redland library is disabled by default
                    941: dnl
                    942: if test "$with_system_redland" = "" ; then
                    943:     if test "$enable_system_redland" = "yes" ; then
                    944:        with_redland="yes"
                    945:        with_system_redland="yes"
                    946:     else
                    947:        with_system_redland="no"
                    948:     fi
                    949: else
                    950:     with_system_redland="no"
                    951: fi
                    952: 
                    953: dnl
                    954: dnl The bookmarks support is disabled by default
1.108     kahan     955: dnl
                    956: if test "$with_bookmarks" = "" ; then
                    957:     if test "$enable_bookmarks" = "yes" ; then
                    958:        with_bookmarks="yes"
1.125     vatton    959:        with_redland="yes"
1.108     kahan     960:     else
                    961:        with_bookmarks="no"
                    962:     fi
                    963: else
                    964:     with_bookmarks="no"
                    965: fi
                    966: 
                    967: dnl
1.70      kahan     968: dnl Generic XML support enabled by default
                    969: dnl
                    970: if test "$with_generic_xml" = "" ; then
                    971:     if test "$enable_generic_xml" = "no" ; then
                    972:        with_generic_xml="no"
                    973:        GENERIC_XML_OPTIONS=
                    974:     else
                    975:        with_generic_xml="yes"
                    976:        GENERIC_XML_OPTIONS=-DXML_GENERIC
                    977:     fi
                    978: fi
                    979: 
1.120     gully     980: AC_ARG_WITH(dav,            [  --with-dav              enable WebDAV support (experimental) ])
1.88      kirschpi  981: dnl
                    982: dnl DAV support disabled by default
                    983: dnl
                    984: if test "$with_dav" = "" ; then
                    985:   if test "$enable_dav" = "yes" ; then
                    986:     with_dav="yes"
                    987:   else
                    988:     with_dav="no"
                    989:   fi
                    990: fi  
                    991: 
                    992: if test "$with_dav" = "yes" ; then
                    993:    DAV_OPTIONS=-DDAV
1.90      kirschpi  994:    DAVDIR="davlib"
                    995:    LIBDAV="libwwwdav"
                    996:    WITHDAV="--with-dav" 
                    997:    WWWDAV="-lwwwdav" 
1.88      kirschpi  998: else
                    999:    with_dav="no"
                   1000:    DAV_OPTIONS=""
1.90      kirschpi 1001:    DAVDIR=""
                   1002:    LIBDAV=""
                   1003:    WITHDAV="" 
                   1004:    WWWDAV="" 
1.88      kirschpi 1005: fi
                   1006: 
1.70      kahan    1007: 
1.19      cvs      1008: if test "$build_amaya" = "yes" ; then
1.43      cvs      1009:     if test ! -f $srcdir/../libwww/Makefile.in ; then
1.50      cvs      1010:        AC_MSG_WARN(libwww sources not found !!)
                   1011:        AC_MSG_WARN(Disabling Amaya build !)
                   1012:        build_amaya="no"
1.1       cvs      1013:     fi
1.8       cvs      1014: 
                   1015:     if test ! -f $srcdir/amaya/MathML.S ; then
1.10      cvs      1016:        if test "$with_math" = "yes" ; then
1.8       cvs      1017:            AC_MSG_WARN(MathML sources not found !!)
1.26      cvs      1018:            AC_MSG_WARN(Disabling Math build !)
1.10      cvs      1019:            with_math="no"
                   1020:            MATH_OPTIONS=
1.8       cvs      1021:        fi
                   1022:     fi
1.26      cvs      1023: 
1.68      vatton   1024:     if test ! -f $srcdir/amaya/SVG.S ; then
                   1025:        if test "$with_svg" = "yes" ; then
                   1026:            AC_MSG_WARN(SVG sources not found !!)
                   1027:            AC_MSG_WARN(Disabling SVG build !)
                   1028:            with_svg="no"
                   1029:            SVG_OPTIONS=
1.26      cvs      1030:        fi
                   1031:     fi
                   1032: 
1.48      cvs      1033:     if test ! -f $srcdir/annotlib/Makefile.in ; then
1.47      cvs      1034:        if test "$with_annot" = "yes" ; then
                   1035:            AC_MSG_WARN(Annotation makefile not found !!)
                   1036:            AC_MSG_WARN(Disabling Annotations build !)
                   1037:            with_annot="no"
                   1038:        fi
                   1039:     fi
1.55      kahan    1040: 
1.146     kahan    1041:     if test "$with_redland" = "yes" -a "$with_annot" = "no" -a "$with_bookmarks" = "no"; then
                   1042:        AC_MSG_WARN(Disabling redland as neither annotations nor bookmarks are enabled !)
1.93      kahan    1043:        MAKERAPTOR=['#']
                   1044:        with_raptor="no"
                   1045:     fi
                   1046: 
1.116     kahan    1047:     redland_compile_source=yes
                   1048:     if test "$with_redland" = "yes" -a "$with_system_redland" = "yes" ; then
                   1049:        # check to see if we have a redland library
                   1050:        AC_MSG_CHECKING(system redland library)
1.142     kahan    1051:        redland_min_version=0.9.16
1.116     kahan    1052:        REDLAND_CONFIG="redland-config"
                   1053:        REDLAND_VERSION=`$REDLAND_CONFIG --version`
                   1054:        redland_version_dec=`echo $REDLAND_VERSION | awk -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
                   1055:        redland_min_version_dec=`echo $redland_min_version | awk -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
                   1056:        if test $redland_version_dec -lt $redland_min_version_dec; then
                   1057:          AC_MSG_RESULT(no - found version $REDLAND_VERSION and minimal version is $redland_min_version)
                   1058:        else
                   1059:          AC_MSG_RESULT(yes - found version $REDLAND_VERSION)
                   1060:         AC_MSG_CHECKING(checking for redland headers)
1.117     kahan    1061:         dnl  We should use awk here and remove the -I from the following line
                   1062:          dnl REDLAND_HEADERS=`$REDLAND_CONFIG --cflags`
                   1063:         REDLAND_HEADERS=""
                   1064:         if test -e "/usr/include/redland.h" ; then
                   1065:           REDLAND_HEADERS="/usr/include";
                   1066:         else 
                   1067:            if test -e "/usr/local/include/redland.h" ; then
                   1068:             REDLAND_HEADERS="/usr/local/include";
                   1069:            fi
                   1070:          fi        
                   1071:         if test $REDLAND_HEADERS != ""; then
1.116     kahan    1072:            AC_MSG_RESULT(yes - have development version)
                   1073:            redland_compile_source=no
                   1074:         else
                   1075:            AC_MSG_RESULT(no - no development version)
                   1076:          fi
                   1077:        fi
                   1078:     fi
                   1079: 
                   1080:     if test "$with_redland" = "yes" -a "$redland_compile_source" = "yes" \
                   1081:        -a ! -d "$srcdir/../redland" ; then
1.109     kahan    1082:        AC_MSG_WARN(Redland source dir not found !!)
                   1083:        AC_MSG_WARN(Disabling redland build !)
                   1084:        MAKEREDLAND=['#']
                   1085:        with_redland="no"
                   1086:     fi
                   1087: 
                   1088:     if test "$with_redland" = "yes" ; then
1.116     kahan    1089:        AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -DLIBRDF_INTERNAL=1 -DAM_REDLAND -DRAPTOR_RDF_PARSER"
                   1090:        if test "$redland_compile_source" = "yes" ; then
                   1091:          AMAYA_RAPTOR_SRC="amaya_comp_redland"
                   1092:          AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -I\$(THOTDIR)/../redland/librdf -I\$(THOTDIR)/../redland/raptor"
                   1093:          AMAYA_RAPTOR_LIBS="../redland/librdf/.libs/librdf.a ../redland/raptor/.libs/libraptor.a"
                   1094:          AMAYA_RAPTOR_INCLUDES="-I\$(THOTDIR)/../redland/librdf -I\$(THOTDIR)/../redland/raptor"
                   1095:        else
                   1096:          MAKEREDLAND=['#']
                   1097:         AMAYA_RAPTOR_SRC=
                   1098:         redland_includes=`$REDLAND_CONFIG --cflags`
                   1099:         redland_libs=`$REDLAND_CONFIG --libs`
                   1100:          AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS"
                   1101:          AMAYA_ANNOT_INCLUDES="$redland_includes -I\$(THOTDIR)/thotlib/include"
                   1102:          AMAYA_ANNOT_EXTRA_LIBS="$redland_libs"
                   1103:          AMAYA_RAPTOR_INCLUDES="$redland_includes"
                   1104:        fi
1.109     kahan    1105:     fi
                   1106: 
1.116     kahan    1107: 
1.108     kahan    1108:     dnl control whether we should build the bookmarks support
1.146     kahan    1109:     if test "$with_annot" = "yes" -a "$with_redland" = "no" ; then
                   1110:        AC_MSG_WARN(Disabling annotations build as redland is disabled !)
1.148     kahan    1111:        with_annot="no"
1.146     kahan    1112:     fi
1.108     kahan    1113:     if test "$with_bookmarks" = "yes" -a "$with_annot" = "no" ; then
                   1114:        AC_MSG_WARN(Disabling bookmarks build as annotations are disabled !)
                   1115:        with_bookmarks="no"
                   1116:     fi
1.109     kahan    1117:     if test "$with_bookmarks" = "yes" -a "$with_redland" = "no" ; then
                   1118:        AC_MSG_WARN(Disabling bookmarks build as redland is disabled !)
1.108     kahan    1119:        with_bookmarks="no"
                   1120:     fi
                   1121:     if test "$with_bookmarks" = "yes" ; then
                   1122:        ANNOTLIB_COMPILE_BM=
                   1123:        AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -DBOOKMARKS"
                   1124:     else
                   1125:        ANNOTLIB_COMPILE_BM=['#']
                   1126:     fi
                   1127: 
1.55      kahan    1128:     if test "$with_plugin" = "yes" ; then
                   1129:         AC_MSG_WARN(The plugin library isn't supported anymore in Amaya !!)
                   1130:        AC_MSG_WARN(Disabling plugin build !)
                   1131:        with_plugin="no"
                   1132:     fi
                   1133: 
1.88      kirschpi 1134: 
                   1135:     if test ! -f $srcdir/davlib/Makefile.in ; then
                   1136:        if test "$with_dav" = "yes" ; then
                   1137:            AC_MSG_WARN(WebDAV makefile not found !!)
                   1138:            AC_MSG_WARN(Disabling WebDAV build !)
                   1139:            with_dav="no"
1.90      kirschpi 1140:             DAVDIR=""
                   1141:             LIBDAV=""
                   1142:             WITHDAV="" 
                   1143:             WWWDAV="" 
1.88      kirschpi 1144:        fi
                   1145:     fi
                   1146:    
                   1147: 
1.1       cvs      1148: fi
                   1149: 
                   1150: dnl
                   1151: dnl The options for each library or binary
                   1152: dnl
                   1153: 
1.134     gully    1154: THOT_OPTIONS="$OS_OPTIONS $GTK_OPTIONS $GL_OPTIONS $WX_OPTIONS $NOGUI_OPTIONS"
                   1155: AMAYA_OPTIONS="$OS_OPTIONS $MATH_OPTIONS $SVG_OPTIONS $GENERIC_XML_OPTIONS $GTK_OPTIONS $GL_OPTIONS $WX_OPTIONS $NOGUI_OPTIONS"
1.58      cvs      1156: #PLUGIN_OPTIONS="-DPLUGIN_TRACE -DXP_UNIX"
1.129     vatton   1157: AMAYA_ANNOT_OPTIONS="$OS_OPTIONS $AMAYA_ANNOT_OPTIONS"
1.101     kahan    1158: 
1.102     kahan    1159: IMGLIBS="-ljpeg -lpng -lz"
1.132     gully    1160: 
1.3       cvs      1161: EXTRA_LIBS=
1.131     gully    1162: EXTRA_INCLUDES=
                   1163: 
                   1164: # check for malloc.h
                   1165: # on macosx, this file is not at the right place
                   1166: for ac_dir in               \
                   1167:   /usr/include/malloc/      \
                   1168:   /sw/include/malloc/       \
                   1169:   ; \
                   1170: do
                   1171:   if test -r "$ac_dir/malloc.h"; then
                   1172:     echo "found malloc.h"
                   1173:     EXTRA_INCLUDES="${EXTRA_INCLUDES} -I$ac_dir"
                   1174:     break
                   1175:   fi
                   1176: done
1.1       cvs      1177: 
                   1178: dnl
                   1179: dnl Set up the PATHs needed
                   1180: dnl
                   1181: 
                   1182: API="\$(THOTDIR)/thotlib/include"
                   1183: VAR="\$(THOTDIR)/thotlib/internals/var"
                   1184: INCL="\$(THOTDIR)/thotlib/internals/h"
                   1185: FUNC="\$(THOTDIR)/thotlib/internals/f"
                   1186: 
                   1187: dnl
                   1188: dnl Set up the include variables.
                   1189: dnl
                   1190: 
1.61      cvs      1191: THOTINCLUDES="-I${API} -I${VAR} -I${INCL} -I${FUNC} ${JPEGINCL} ${PNGINCL}"
1.58      cvs      1192: APIINCLUDES=-I${API}
                   1193:  
                   1194: if test "${VPATHOPT}" = "" ; then
1.1       cvs      1195:        VPATHOPT="VPATH"
                   1196: fi
                   1197: 
                   1198: dnl
                   1199: dnl Exports the current values of the variables.
                   1200: dnl
                   1201: 
                   1202: AC_SUBST(AMAYA_VER)
1.6       cvs      1203: AC_SUBST(CEXTRACT_VER)
                   1204: AC_SUBST(CEXTRACT_FLAGS)
1.1       cvs      1205: 
                   1206: AC_SUBST(THOTINCLUDES)
                   1207: AC_SUBST(APIINCLUDES)
                   1208: AC_SUBST(VPATHOPT)
                   1209: 
1.63      vatton   1210: AC_SUBST(GTK_OPTIONS)
1.1       cvs      1211: AC_SUBST(THOT_OPTIONS)
                   1212: AC_SUBST(AMAYA_OPTIONS)
                   1213: AC_SUBST(PLUGIN_OPTIONS)
1.48      cvs      1214: AC_SUBST(AMAYA_ANNOT_OPTIONS)
1.110     kahan    1215: AC_SUBST(AMAYA_ANNOT_INCLUDES)
1.116     kahan    1216: AC_SUBST(AMAYA_ANNOT_EXTRA_LIBS)
1.1       cvs      1217: AC_SUBST(IMGLIBS)
1.3       cvs      1218: AC_SUBST(EXTRA_LIBS)
1.131     gully    1219: AC_SUBST(EXTRA_INCLUDES)
1.90      kirschpi 1220: 
                   1221: AC_SUBST(DAVDIR)
                   1222: AC_SUBST(LIBDAV)
                   1223: AC_SUBST(WITHDAV)
                   1224: AC_SUBST(WWWDAV)
1.1       cvs      1225: 
1.93      kahan    1226: AC_SUBST(MAKERAPTOR)
1.109     kahan    1227: AC_SUBST(MAKEREDLAND)
1.108     kahan    1228: AC_SUBST(ANNOTLIB_COMPILE_BM)
1.109     kahan    1229: AC_SUBST(AMAYA_RAPTOR_SRC)
1.93      kahan    1230: AC_SUBST(AMAYA_RAPTOR_LIBS)
                   1231: AC_SUBST(AMAYA_RAPTOR_INCLUDES)
                   1232: AC_SUBST(MAKE_LIBWWW_RDF_PARSER)
                   1233: AC_SUBST(LIBWWW_RDF_PARSER)
                   1234: 
                   1235: AC_SUBST(SUBDIRS)
                   1236: 
1.1       cvs      1237: dnl
1.48      cvs      1238: dnl Include the option Makefile.xxx fragment according to the configure options
1.1       cvs      1239: dnl
                   1240: 
                   1241: if test "$with_plugin" = "yes" ; then
1.50      cvs      1242:     AC_SUBST_FILE(plugin_frag)
1.1       cvs      1243:     plugin_frag=$srcdir/pluginlib/Makefile.plugin
                   1244: else
                   1245:     AC_SUBST_FILE(plugin_frag)
                   1246:     plugin_frag=/dev/null
                   1247: fi
                   1248: 
                   1249:     AC_SUBST_FILE(www_frag)
1.49      cvs      1250:     www_frag=$srcdir/amaya/Makefile.libwww
1.1       cvs      1251: 
1.50      cvs      1252: if test "$with_math" = "no" ; then
1.10      cvs      1253:     AC_SUBST_FILE(math_frag)
1.50      cvs      1254:     math_frag=/dev/null
1.8       cvs      1255: else
1.10      cvs      1256:     AC_SUBST_FILE(math_frag)
1.50      cvs      1257:     math_frag=$srcdir/amaya/Makefile.math
1.8       cvs      1258: fi
                   1259: 
1.68      vatton   1260: if test "$with_svg" = "no" ; then
                   1261:     AC_SUBST_FILE(svg_frag)
                   1262:     svg_frag=/dev/null
1.26      cvs      1263: else
1.68      vatton   1264:     AC_SUBST_FILE(svg_frag)
                   1265:     svg_frag=$srcdir/amaya/Makefile.svg
1.26      cvs      1266: fi
                   1267: 
1.47      cvs      1268: if test "$with_annot" = "yes" ; then
                   1269:     AC_SUBST_FILE(annot_frag)
1.48      cvs      1270:     annot_frag=$srcdir/annotlib/Makefile.annot
1.47      cvs      1271: else
                   1272:     AC_SUBST_FILE(annot_frag)
                   1273:     annot_frag=/dev/null
                   1274: fi
                   1275: 
1.88      kirschpi 1276: if test "$with_dav" = "yes" ; then
                   1277:     AC_SUBST_FILE(dav_frag)
                   1278:     dav_frag=$srcdir/davlib/Makefile.dav
                   1279: fi
1.16      cvs      1280: 
1.1       cvs      1281: dnl  ***************************************************************
                   1282: dnl
                   1283: dnl      FINAL STEP : PRODUCE ALL THE MAKEFILES AND CONFIG FILES
                   1284: dnl
                   1285: dnl  ***************************************************************
                   1286: 
                   1287: EXTRA_MAKEFILE_IN=
1.2       cvs      1288: make_output="Makefile Options.orig:Options.in tools/Makefile \
1.1       cvs      1289:        libjpeg/Makefile libpng/Makefile libpng/zlib/Makefile \
1.2       cvs      1290:        tools/mkdep/Makefile \
1.1       cvs      1291:        tools/cextract-1.7/Makefile thotlib/Makefile \
1.127     vatton   1292:        thotlib/include/Makefile batch/Makefile"
1.1       cvs      1293: 
                   1294: if test "$build_amaya" = "yes" ; then
1.2       cvs      1295: 
1.19      cvs      1296:     make_output="$make_output amaya/Makefile pluginlib/Makefile"
1.2       cvs      1297:     EXTRA_MAKEFILE_IN="$srcdir/amaya/Makefile.in \
1.93      kahan    1298:     $srcdir/amaya/Makefile.libwww"
1.27      cvs      1299: 
                   1300:     if test "$$with_plugin" = "yes" ; then
                   1301:        make_output="$make_output pluginlib/Makefile"
                   1302:        EXTRA_MAKEFILE_IN="$srcdir/pluginlib/Makefile.in \
1.93      kahan    1303:        $srcdir/pluginlib/Makefile.plugin"
1.27      cvs      1304:     fi
1.2       cvs      1305: 
1.48      cvs      1306:     if test "$with_annot" = "yes" ; then
                   1307:        make_output="$make_output annotlib/Makefile"
                   1308:        EXTRA_MAKEFILE_IN="$srcdir/annotlib/Makefile.in"
                   1309:     fi
1.88      kirschpi 1310: 
                   1311:     if test "$with_dav" = "yes" ; then
                   1312:        make_output="$make_output davlib/Makefile"
                   1313:        EXTRA_MAKEFILE_IN="$srcdir/davlib/Makefile.in"
                   1314:     fi
                   1315: 
1.1       cvs      1316: fi
                   1317: 
                   1318: AC_SUBST(EXTRA_MAKEFILE_IN)
1.6       cvs      1319: AC_OUTPUT($make_output , [
                   1320: dnl
                   1321: dnl This fragment of shell code is executed after the
                   1322: dnl Makefile(s) dump ...
                   1323: dnl
                   1324: 
                   1325: echo timestamp > stamp-h
                   1326: 
                   1327: dnl
                   1328: dnl Check for an upgrade in the Options numbers
                   1329: dnl
                   1330: 
                   1331: if test -f Options ; then
                   1332:    oldversion=`grep Version Options`
                   1333:    newversion=`grep Version Options.orig`
                   1334:    if test "$oldversion" != "$newversion" ; then
                   1335:        echo WARNING : Options files have changed, old options saved to Options.old
                   1336:        cp Options Options.old
                   1337:        cp Options.orig Options
                   1338:        exit 1
                   1339:    fi
                   1340: fi
                   1341: ])
1.1       cvs      1342: 
                   1343: if test "$build_amaya" = "yes" ; then
1.50      cvs      1344:     echo Amaya configured with libWWW
                   1345:     if test "$with_plugin" = "yes" ; then
                   1346:         echo Amaya configured with Plugins support
1.8       cvs      1347:     fi
1.10      cvs      1348:     if test "$with_math" = "yes" ; then
                   1349:        echo Amaya configured with Math support
1.26      cvs      1350:     fi
1.68      vatton   1351:     if test "$with_svg" = "yes" ; then
                   1352:        echo Amaya configured with SVG support
1.47      cvs      1353:     fi
                   1354:     if test "$with_annot" = "yes" ; then
                   1355:        echo Amaya configured with Annotations support
1.70      kahan    1356:     fi
1.93      kahan    1357:     if test "$with_raptor" = "yes" ; then
1.106     kahan    1358:        echo Amaya configured with the Raptor RDF parser
1.109     kahan    1359:     fi
                   1360:     if test "$with_redland" = "yes" ; then
1.116     kahan    1361:        if test "$with_system_redland" = "no" ; then
                   1362:          echo Amaya configured with the Redland RDF library \(local source\)
                   1363:        else
                   1364:          echo Amaya configured with the Redland RDF library \(system\)
                   1365:        fi
1.108     kahan    1366:     fi
                   1367:     if test "$with_bookmarks" = "yes" ; then
                   1368:        echo Amaya configured with bookmarks support \(experimental\)
1.93      kahan    1369:     fi
1.70      kahan    1370:     if test "$with_generic_xml" = "yes" ; then
                   1371:        echo Amaya configured with generic XML suppport
                   1372:     fi
1.129     vatton   1373:     echo Amaya configured with internationalization suppport
1.75      cheyroul 1374:     if test "$with_gl" = "yes" ; then
1.143     gully    1375:        echo Amaya configured with OpenGL Canvas Rendering \(System library\) \(experimental\)
                   1376:     fi
                   1377:     if test "$with_mesa" = "yes" ; then
                   1378:        echo Amaya configured with OpenGL Canvas Rendering \(MesaLib\) \(experimental\)
1.88      kirschpi 1379:     fi
                   1380:     if test "$with_dav" = "yes" ; then
                   1381:        echo Amaya configured with WebDAV support \(experimental\)
1.1       cvs      1382:     fi
1.5       cvs      1383: fi
                   1384: 
1.107     kahan    1385: if test "$no_graphic" = "yes" ; then
                   1386:     echo "Amaya configured with system graphic libraries (libjpeg, libpng, zlib)"
                   1387: else
                   1388:     echo "Amaya configured with static graphic libraries (libjpeg, libpng, zlib)"
                   1389:     if test "$with_gtk" = "yes" -o "$with_gl" = "yes" ; then
                   1390:       echo "  N.B. This option may not work in your platform. If Amaya crashes"
                   1391:       echo "  when opening a PNG file. Recompile it using the system libraries."
                   1392:     fi
                   1393: fi
                   1394: 
                   1395: if test "$with_gtk" = "yes" ; then
1.67      vatton   1396:     echo "Amaya configured with GTK"
1.120     gully    1397: fi
                   1398: 
1.124     gully    1399: if test "$with_wx" = "yes" ; then
1.136     gully    1400:   if test "$with_wxdebug" = "yes" ; then
                   1401:     echo "Amaya configured with wxWidgets (experimental) [with debug]"
                   1402:   else
                   1403:     echo "Amaya configured with wxWidgets (experimental)"
                   1404:   fi
1.1       cvs      1405: fi
                   1406: 
1.121     gully    1407: if test "$with_nogui" = "yes" ; then
1.128     gully    1408:   echo "Amaya configured without GUI toolkit"
1.121     gully    1409: fi
1.136     gully    1410: 
                   1411: 
1.107     kahan    1412: echo ""
1.78      vatton   1413: echo "Now type \"make\" (GNU make preferably) to build the binaries"
1.107     kahan    1414: echo ""
1.120     gully    1415: 

Webmaster