Annotation of Amaya/configure.in, revision 1.149

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.131     gully     287:   # SG : lookingfor gtkimlib includes
                    288:   #      because not found with gtk-config on macosx 
1.134     gully     289:   gdkimlib_h_found="no"
1.63      vatton    290:   for ac_dir in               \
1.131     gully     291:     /sw/include/              \
                    292:     /sw/local/include         \
                    293:     /usr/include              \
1.63      vatton    294:     /usr/local/include        \
                    295:     ; \
                    296:   do
1.131     gully     297:     if test -r "$ac_dir/gdk_imlib.h"; then
                    298:       echo "found gdk_imlib.h"
1.134     gully     299:       gdkimlib_h_found="yes"
1.131     gully     300:       GTK_INCLUDES="${GTK_INCLUDES} -I$ac_dir"
1.63      vatton    301:       break
                    302:     fi
                    303:   done
                    304: 
1.134     gully     305:   # check that gtk-config exists
                    306:   AC_CHECK_PROG(GTKCONFIG_FOUND,gtk-config,yes,no)
                    307:   if test "$GTKCONFIG_FOUND" = no ; then
                    308:     AC_MSG_ERROR(Cannot find gtk-config. Please install gtk development library.)
                    309:   fi
                    310:                    
1.131     gully     311:   GTK_INCLUDES="${GTK_INCLUDES} `gtk-config --cflags`"
1.124     gully     312:   AC_SUBST(GTK_INCLUDES)
                    313:   GTK_LIBRARIES="`gtk-config --libs`"
1.134     gully     314:   # GL doesn't need the imlib
1.124     gully     315:   if test "${with_gl}" != "yes" ; then
1.134     gully     316:     GTK_LIBRARIES="${GTK_LIBRARIES} -lgdk_imlib"
                    317:   else
                    318:     gdkimlib_h_found="yes"
1.124     gully     319:   fi
1.106     kahan     320: 
1.124     gully     321:   AC_SUBST(GTK_LIBRARIES)
                    322:   GTK_OPTIONS="-D_GTK"
1.76      vatton    323:   no_graphic=yes
1.134     gully     324: 
                    325:   if test "$gdkimlib_h_found" = "no" ; then
                    326:     echo
                    327:     echo "****************************************************************"
                    328:     echo " ERROR: gdk_imlib.h not found -"
                    329:     echo " [please install imlib developpement package (libimlib1-devel on mandrake)]"
                    330:     echo "****************************************************************"
                    331:     exit 1
                    332:   fi                                                                                         
1.120     gully     333: fi
                    334: 
1.143     gully     335: 
                    336: if test "$with_mesa" = "yes" ; then
                    337:   # --------- compile Mesa library (opengl) --------------- #
                    338: 
                    339:   # check that sources of Mesa exists
                    340:   if test ! -f ../../Mesa/Makefile ; then
                    341:     AC_MSG_ERROR(Mesa library sources not found (opengl). Please download Mesa sources (http://www.mesa3d.org/) or remove --with-gl option !)
                    342:   fi
                    343: 
                    344:   OLDDIR=`pwd`
                    345:   cd ../../Mesa
                    346: 
                    347: 
                    348:   echo "---> Compiling Mesa library."
                    349:   if test "$OS_OPTIONS" = "-D_UNIX" ; then
                    350:     # LINUX
1.145     gully     351:     # compile only .a libraries because Amaya is linked staticaly with mesa
                    352:     make linux-static    
                    353:     if test $? != 0 ; then
                    354:       AC_MSG_ERROR(A problem occurs durring Mesa library compilation. Please fix the problem and try again.)
                    355:     fi
1.143     gully     356:   fi
                    357:   echo "---> Compiling Mesa library. - DONE"
                    358: 
                    359: 
1.145     gully     360:   echo "---> Install Mesa library into Amaya/Mesa/"
1.143     gully     361:   mkdir -p $OLDDIR/../Mesa
                    362:   mkdir -p $OLDDIR/../Mesa/include
                    363:   mkdir -p $OLDDIR/../Mesa/lib
1.145     gully     364:   # copy includes
1.143     gully     365:   cp -r include/GL $OLDDIR/../Mesa/include/
1.145     gully     366:   # copy libraries (only .a because we dont want to share)
                    367:   cp lib/*.a $OLDDIR/../Mesa/lib/
                    368:   echo "---> Install Mesa library into Amaya/Mesa/ - DONE"
1.143     gully     369: 
                    370: 
                    371:   cd $OLDDIR
                    372: 
                    373:   # this is the flags used to build amaya with OpenGL
                    374:   GL_OPTIONS="-D_GL"
                    375:   GL_INCLUDES="-I../../Mesa/include"
                    376:   GL_LIBRARIES="-Wl,-rpath,../../Mesa/lib -L../../Mesa/lib -lGL -lGLU"
                    377:   AC_SUBST(GL_INCLUDES)
                    378:   AC_SUBST(GL_LIBRARIES)
                    379: fi
                    380: 
1.124     gully     381: if test "$with_wx" = "yes" ; then
1.135     gully     382:   
                    383:   # check that sources of wxWidgets exists
                    384:   if test ! -f ../../wxWidgets/Makefile.in ; then
                    385:     AC_MSG_ERROR(wxWidgets library sources not found. Please download wxWidgets sources (http://www.wxwidgets.org/) or remove --with-wx option !)
                    386:   fi
                    387: 
                    388:   # --------- compile wxWidgets library --------------- #
                    389:   echo "---> Configuring wxWidgets library."
                    390:   OLDDIR=`pwd`
1.149   ! gully     391:   # create the build directory (debug or release)
1.135     gully     392:   cd ../../wxWidgets/
1.149   ! gully     393:   if test $with_wxdebug = yes ; then
        !           394:     WXBUILD_DIR="AMAYABUILD_DEBUG"
        !           395:   else
        !           396:     WXBUILD_DIR="AMAYABUILD_RELEASE"
        !           397:   fi
        !           398:   mkdir -p $WXBUILD_DIR
        !           399:   cd $WXBUILD_DIR
1.136     gully     400: 
1.149   ! gully     401:   # remove old configure cached options
1.135     gully     402:   rm -f configarg.cache
1.136     gully     403: 
                    404:   # setup configure options
1.135     gully     405:   if test "$OS_OPTIONS" = "-D_UNIX" ; then
                    406:     # LINUX
1.145     gully     407:     #   --enable-gtk2           use GTK+ 2.0 if available (EXPERIMENTAL)
                    408:     #   --enable-shared         create shared library code
                    409:     #   --enable-unicode        compile wxString with Unicode support
                    410:     #   --with-gtk              use GTK+
                    411:     #   --with-opengl           use OpenGL (or Mesa)
                    412:     WXCONFIGURE_OPTION="--with-opengl --with-gtk --enable-gtk2 --enable-unicode --enable-shared=no"
1.135     gully     413:   fi
                    414:   if test "$OS_OPTIONS" = "-D_UNIX -D_MACOS" ; then
                    415:     # MACOSX
                    416:     AC_MSG_ERROR(TODO: configurer wxWidgets pour MACOSX)
1.145     gully     417:     # --with-mac              use Mac OS X
                    418:     # --with-cocoa            use Cocoa
1.136     gully     419:     # WXCONFIGURE_OPTION="--with-opengl --with-gtk --enable-gtk2 --enable-unicode"
                    420:   fi
                    421:   if test $with_wxdebug = yes ; then
1.141     gully     422:     WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-debug"
1.143     gully     423:     # SG: I've disabled other debug options because the lib has bugs when using these flags \
                    424:     # (maybe because these flags are not often used by wxWidgets developpers)
1.141     gully     425:     # WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-debug --enable-debug_cntxt --enable-debug_gdb --enable-debug_info --enable-debug_flag --enable-mem_tracing"
1.145     gully     426:   else
                    427:     WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-optimise"
1.135     gully     428:   fi
1.143     gully     429: 
1.136     gully     430:   # launch the configure
1.143     gully     431:   if test "$with_mesa" = "yes" ; then
                    432:     # use internal OpenGL (mesa) libraries
                    433:     ../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     434:     if test $? != 0 ; then
                    435:       AC_MSG_ERROR(A problem occurs durring wxWidgets library configuration. Please fix the problem and try again.)
                    436:     fi
1.143     gully     437:   else
                    438:     # use OpenGL system libraries
                    439:     ../configure $WXCONFIGURE_OPTION    
                    440:   fi
1.136     gully     441: 
1.135     gully     442:   echo "---> Configuring wxWidgets library. - DONE"
                    443:   echo "---> Compiling wxWidgets library."
                    444:   # compile the lib
                    445:   make
1.145     gully     446:   if test $? != 0 ; then
                    447:     AC_MSG_ERROR(A problem occurs durring wxWidgets library compilation. Please fix the problem and try again.)
                    448:   fi
1.135     gully     449:   echo "---> Compiling wxWidgets contrib xrc library."
                    450:   cd contrib/src/xrc
                    451:   # compile xrc lib (xml resource lib)
                    452:   make
                    453:   cd $OLDDIR
                    454:   echo "---> Compiling wxWidgets library. - DONE"
                    455:   # --------- compile wxWidgets library - DONE --------------- #
                    456: 
1.143     gully     457: 
                    458:   # --------- install wxWidgets library  --------------- #
                    459:   echo "---> Install wxWidgets library into Amaya."
                    460:   OLDDIR=$(pwd)
                    461:   cd ../../wxWidgets
1.149   ! gully     462:   # create destination directories
        !           463:   if test $with_wxdebug = yes ; then
        !           464:     WXAMAYA_DIR="wxWidgets_debug"
        !           465:   else
        !           466:     WXAMAYA_DIR="wxWidgets_release"
        !           467:   fi
        !           468:   mkdir -p $OLDDIR/../$WXAMAYA_DIR
        !           469:   mkdir -p $OLDDIR/../$WXAMAYA_DIR/include
        !           470:   mkdir -p $OLDDIR/../$WXAMAYA_DIR/contrib
        !           471:   mkdir -p $OLDDIR/../$WXAMAYA_DIR/contrib/include
        !           472:   mkdir -p $OLDDIR/../$WXAMAYA_DIR/lib
        !           473:   # remove old lib
        !           474:   rm -rf $OLDDIR/../$WXAMAYA_DIR/lib/*
1.145     gully     475:   # copy includes
1.149   ! gully     476:   cp -r include/* $OLDDIR/../$WXAMAYA_DIR/include/
        !           477:   cp -r contrib/include/* $OLDDIR/../$WXAMAYA_DIR/contrib/include/
        !           478:   cp -r $WXBUILD_DIR/lib/wx $OLDDIR/../$WXAMAYA_DIR/lib/
1.145     gully     479:   # copy libraries (only .a because we dont want to share)
1.149   ! gully     480:   cp -pd $WXBUILD_DIR/lib/*.a $OLDDIR/../$WXAMAYA_DIR/lib/
1.145     gully     481:   # copy autoconfig script (needed to setup 'Option' file)
1.149   ! gully     482:   cp -pd $WXBUILD_DIR/*-config $OLDDIR/../$WXAMAYA_DIR/
1.143     gully     483:   cd $OLDDIR
                    484:   echo "---> Install wxWidgets library into Amaya. - DONE"
                    485:   # --------- install wxWidgets library - DONE --------------- #
                    486: 
                    487: 
1.135     gully     488:   # --------- configuring wxWidgets paths --------------- #
1.149   ! gully     489:   WXCONFIG=../$WXAMAYA_DIR/wx-config
1.143     gully     490:   # look for relative wxWidgets path : necessary to install into different paths amaya
1.149   ! gully     491:   WXCONFIG_ARGS="--prefix=../../$WXAMAYA_DIR --exec-prefix=../../$WXAMAYA_DIR"
1.134     gully     492:   # check that wx-config exists
1.135     gully     493:   if test ! -f $WXCONFIG ; then
1.143     gully     494:     AC_MSG_ERROR(Cannot find wx-config. Please download wxWidgets (http://www.wxwidgets.org/))
1.134     gully     495:   fi
1.144     gully     496: 
                    497:   # setup include paths  
1.135     gully     498:   WX_INCLUDES="`$WXCONFIG $WXCONFIG_ARGS --cxxflags`"
1.149   ! gully     499:   WX_INCLUDES="-I../../$WXAMAYA_DIR/contrib/include/ ${WX_INCLUDES}"
1.124     gully     500:   AC_SUBST(WX_INCLUDES)
                    501: 
1.144     gully     502:   # setup libraries paths
                    503:   WX_LIBRARIES=""
                    504:   WX_LIBRARIES_EXTRA_PARAM=""
                    505:   WXCONFIG_LIBS_PARAM="xrc,html,adv,core,xml"
1.132     gully     506:   # GL is used ?
1.143     gully     507:   if test "$with_gl" = "yes" -o "$with_mesa" = "yes" ; then
1.144     gully     508:     WXCONFIG_LIBS_PARAM="${WXCONFIG_LIBS_PARAM},gl"
1.132     gully     509:     # SG: this is a mistery why wx-config doesn't add these needed option on macosx
                    510:     if test "$OS_OPTIONS" = "-D_UNIX -D_MACOS" ; then
1.144     gully     511:       WX_LIBRARIES_EXTRA_PARAM="-framework OpenGL -framework AGL"
1.132     gully     512:     fi
1.124     gully     513:   fi
1.149   ! gully     514:   WX_LIBRARIES="-Wl,-rpath,../../$WXAMAYA_DIR/lib `$WXCONFIG $WXCONFIG_ARGS --libs=${WXCONFIG_LIBS_PARAM}` ${WX_LIBRARIES_EXTRA_PARAM}"
1.144     gully     515:   AC_SUBST(WX_LIBRARIES)
1.124     gully     516: 
                    517:   WX_OPTIONS="-D_WX"
1.135     gully     518:   # --------- configuring wxWidgets paths - DONE --------------- #
1.132     gully     519: 
                    520:   no_graphic=yes
1.124     gully     521: fi
                    522: 
1.63      vatton    523: if test "${GCC}" = "yes"; then
                    524:    CPP="${CPP} -x c"
                    525: fi
                    526: 
1.1       cvs       527: dnl  ***************************************************************
                    528: dnl
1.61      cvs       529: dnl    SPECIFIC STUFF : CONFIGURATION OPTIONS FOR AMAYA
1.1       cvs       530: dnl
                    531: dnl  ***************************************************************
                    532: 
1.101     kahan     533: # We don't use our graphic libraries for the pure GTK version (without GL)
                    534: 
1.132     gully     535: # if configure has option --with-graphiclibs then dont check for system graphic libs
                    536: # force amaya static graphic libs to be used
                    537: AC_ARG_WITH(graphiclibs, [  --with-graphiclibs     use static libjpeg, libpng.])
1.143     gully     538: if test "$with_graphiclibs" = "yes" -o "$enable_graphiclibs" = "yes" ; then
1.132     gully     539:   no_graphic="no"
                    540: else
                    541:   no_graphic="yes"
1.76      vatton    542: fi
1.132     gully     543:                  
1.76      vatton    544: if test "$no_graphic" = yes; then
                    545: dnl
                    546:     AC_MSG_CHECKING([for libjpeg version = 6b])
                    547:     AC_EGREP_CPP([x 62 *x],
                    548:         [#include <jpeglib.h>
                    549:          x JPEG_LIB_VERSION x],
                    550: dnl
                    551:         AC_MSG_RESULT([yes])
1.105     vatton    552:        JPEGINCL=''
1.76      vatton    553:         LIBJPEG='-ljpeg'
                    554:         MAKEJPEG=['#'],
                    555: dnl
                    556:         AC_MSG_RESULT([no])
1.105     vatton    557:        JPEGINCL='-I$(THOTDIR)/libjpeg'
1.76      vatton    558:         LIBJPEG='../libjpeg.a'      dnl LIBJPEG goes into amaya/Makefile.in
                    559:         )
                    560: dnl    
                    561: dnl
1.95      vatton    562:     AC_MSG_CHECKING([for libpng version = 1.0.x or 1.2.x])
                    563:     AC_EGREP_CPP([x \"1.[02]\..*\" *x],
1.76      vatton    564:         [#include <png.h>
                    565:        x PNG_LIBPNG_VER_STRING x],
                    566: dnl
                    567:         AC_MSG_RESULT([yes])
1.105     vatton    568:        PNGINCL=''
1.76      vatton    569:         LIBPNG='-lpng'
                    570:         LIBZ=''
                    571:        MAKEPNG=['#'],
                    572: dnl
                    573:         AC_MSG_RESULT([no])
1.105     vatton    574:        PNGINCL='-I$(THOTDIR)/libpng -I$(THOTDIR)/libpng/zlib'
1.76      vatton    575:         LIBPNG='../libpng.a'
                    576:         LIBZ='../libz.a'
                    577:         )
                    578: else
1.105     vatton    579:     JPEGINCL='-I$(THOTDIR)/libjpeg'
1.76      vatton    580:     LIBJPEG='../libjpeg.a'
1.105     vatton    581:     PNGINCL='-I$(THOTDIR)/libpng -I$(THOTDIR)/libpng/zlib'
1.76      vatton    582:     LIBPNG='../libpng.a'
                    583:     LIBZ='../libz.a'
                    584: fi
                    585: dnl
                    586: AC_SUBST(LIBJPEG)
                    587: AC_SUBST(LIBPNG)
                    588: AC_SUBST(LIBZ)
                    589: AC_SUBST(MAKEJPEG)
                    590: AC_SUBST(MAKEPNG)
                    591: 
1.119     vatton    592: AMAYA_VER="8.2"
1.1       cvs       593: 
                    594: dnl
1.6       cvs       595: dnl We use a special versoin of cextract patched for alignment
                    596: dnl to build the signatures of the modules functions located in f subdirs
                    597: dnl
                    598: CEXTRACT_VER="1.7"
                    599: CEXTRACT_FLAGS="+O"
                    600: 
1.3       cvs       601: 
                    602: dnl
1.9       cvs       603: dnl Adjust the some variables depending on the host and compiler
1.61      cvs       604: dnl Thotlib NEED signed chars !!!
1.7       cvs       605: dnl
                    606: 
                    607: if test "${CC}" = "gcc" ; then
1.44      cvs       608:   CFLAGS="${CFLAGS} -W "
1.7       cvs       609:   case "${host}" in
                    610:       *-*-irix5* | *-*irix6* )
                    611:          CFLAGS="${CFLAGS} -fsigned-char"
                    612:       ;;
                    613:   esac
1.14      cvs       614: fi
                    615: 
                    616: if test "$ac_cv_c_const" = "no" ; then
                    617:   CFLAGS="${CFLAGS} -DCONST= "
1.7       cvs       618: fi
                    619: 
1.122     gully     620: 
                    621: # force C mode (-x c)
1.123     gully     622: CFLAGS="${CFLAGS} -x c"
1.122     gully     623: 
                    624: # C++ options (-x c++)
                    625: CXX_OPTIONS="-D__cplusplus"
1.123     gully     626: CXXFLAGS="${CXXFLAGS} -W -x c++ ${CXX_OPTIONS}"
1.122     gully     627: 
1.132     gully     628: # setup LDFLAGS
                    629: # on macosx, specific flags must be set to avoid conflicts with allready installed libwww
                    630: # for exemple it's possible to install libwww with fink (fink install libwww)
                    631: # to avoid conflicts, we just force the linker to search for specified amaya path first
1.133     gully     632: if test "$OS_OPTIONS" = "-D_UNIX -D_MACOS" ; then
1.132     gully     633:   LDFLAGS="-Wl,-search_paths_first"
                    634: else
                    635:   LDFLAGS=""
                    636: fi
1.128     gully     637: 
                    638: dnl
1.61      cvs       639: dnl Check for availability of amaya sources
1.1       cvs       640: dnl
                    641: 
                    642: build_amaya="yes"
                    643: 
                    644: if test "$with_amaya" = "no" ; then
                    645:     build_amaya="no"
1.45      cvs       646: else
                    647:   if test ! -f $srcdir/amaya/Makefile.in ; then
1.1       cvs       648:     AC_MSG_WARN(Amaya browser/editor sources not found, disabling Amaya build !)
                    649:     build_amaya="no"
1.45      cvs       650:   fi
1.1       cvs       651: fi
                    652: 
                    653: dnl
1.50      cvs       654: dnl Check for additionnal packages
1.1       cvs       655: dnl use AC_CONFIG_SUBDIRS to launch configure in the subdir
                    656: dnl
1.93      kahan     657: 
1.143     gully     658: if test "$with_gl" = "yes" -o "$with_mesa" = "yes" ; then
                    659: 
                    660:   # if with_gl is on then test system opengl library (GL & GLU)
                    661:   if test "$with_gl" = "yes" ; then
1.139     carcone   662:        # setup a list of standard paths int LDFLAGS
                    663:        # for AC_CHECK_LIB library existance checks
1.140     carcone   664:        LIBS_OLD=$LIBS
1.139     carcone   665:        LDFLAGS_OLD=$LDFLAGS
                    666:        LDFLAGS="-L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib"
1.75      cheyroul  667:        AC_MSG_CHECKING([OpenGL])
                    668:        for ac_dir in                           \
                    669:                /usr/include                    \
                    670:                /usr/X11R6/include              \
                    671:                /usr/local/include              \
                    672:                ; \
1.80      cheyroul  673:        do  if test -r "$ac_dir/GL/gl.h" ; then
1.143     gully     674:           gl_inc="yes"
                    675:           GL_INC_I="$ac_dir"
                    676:           if test "$ac_dir" != "/usr/include" ; then
                    677:             GL_INCLUDES="-I$ac_dir"
                    678:          fi
                    679:           AC_CHECK_LIB(GL,glBegin,,AC_MSG_ERROR(Cannot find OpenGL library. Please install OpenGL.))
                    680:           AC_MSG_RESULT([yes])
                    681:                  break 
                    682:         fi
                    683:        done
                    684:        
1.80      cheyroul  685:        AC_MSG_CHECKING([GLU])  
1.75      cheyroul  686:        for ac_dir in                           \
                    687:                /usr/include                    \
                    688:                /usr/X11R6/include              \
                    689:                /usr/local/include              \
                    690:                ; \
1.138     gully     691:        do  if test -r "$ac_dir/GL/glu.h" ; then
1.143     gully     692:           glu_inc="yes"
                    693:           GL_INC_II="$ac_dir"
                    694:           if test "$ac_dir" != "/usr/include" ; then
                    695:             if test "$ac_dir" != "$GL_INC_I" ; then
                    696:               GL_INCLUDES="$GL_INCLUDES -I$ac_dir"
                    697:             fi
                    698:           fi
                    699:           # now test that glu version is >= 1.2
                    700:           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.)))
                    701:           AC_MSG_RESULT([yes])
                    702:                  break 
                    703:         fi
                    704:         done
1.139     carcone   705:        LDFLAGS=$LDFLAGS_OLD
1.140     carcone   706:        LIBS=$LIBS_OLD
1.143     gully     707:     if test "$gl_inc" = "" ; then              
                    708:       AC_MSG_WARN(Opengl headers (gl.h) not found !!)
                    709:       AC_MSG_WARN(Disabling opengl build !)
                    710:       with_gl="no"
                    711:       GL_OPTIONS=      
                    712:       GL_INCLUDES=     
                    713:       GL_LIBRARIES=
                    714:       exit 1;
                    715:     fi
                    716: 
                    717:     if test "$glu_inc" = "" ; then
                    718:       AC_MSG_WARN(Glu headers (glu.h) not found !!)
                    719:       AC_MSG_WARN(Disabling opengl build !)
                    720:   
                    721:       with_gl="no"
                    722:       GL_OPTIONS=      
                    723:       GL_INCLUDES=     
                    724:       GL_LIBRARIES=
                    725:       exit 1;
                    726:     fi
                    727:     
                    728:     GL_LIBRARIES="-L/usr/lib -L/usr/X11R6/lib -lGL -lGLU"
                    729:     GL_OPTIONS="-D_GL"
                    730: 
                    731:     AC_SUBST(GL_INCLUDES)
                    732:     AC_SUBST(GL_LIBRARIES)
                    733:   fi # if with_gl
1.139     carcone   734:        
1.143     gully     735:   # check for gtkglarea.h only if gtk gui is selected
                    736:   if test "$with_gtk" = "yes" ; then
                    737:     AC_MSG_CHECKING([GTKGLAREA])
                    738:     for ac_dir in                              \
1.132     gully     739:                /usr/include/GL                 \
1.75      cheyroul  740:                /usr/include                    \
                    741:                /usr/X11R6/include/GL           \
                    742:                /usr/X11R6/include              \
                    743:                /usr/local/include              \
                    744:                /usr/local/include/GL           \
                    745:                ; \
1.143     gully     746:     do  if test -r "$ac_dir/gtkgl/gtkglarea.h" ; then
                    747:       gtkgl_inc="yes"
                    748:         if test "$ac_dir" != "/usr/include" ; then
                    749:           if test "$ac_dir" != "$GL_INC_II" ; then
                    750:             if test "$ac_dir" != "$GL_INC_I" ; then
                    751:               GTK_GL_INCLUDES="-I$ac_dir"
                    752:             fi
                    753:           fi
                    754:         fi
                    755:         AC_MSG_RESULT([yes])
                    756:         break  
                    757:     fi
                    758:     done
                    759:     GTK_GL_LIBRARIES="-lgtkgl"
                    760: 
                    761:     if test "$gtkgl_inc" = "" ; then
                    762:       AC_MSG_WARN(Gtkglarea headers (gktglarea.h) not found !!)
                    763:       AC_MSG_WARN(Disabling opengl build !)
                    764:       with_gl="no"
                    765:       exit 1;
                    766:     fi
                    767:     AC_SUBST(GTK_GL_INCLUDES)
                    768:     AC_SUBST(GTK_GL_LIBRARIES)
                    769:   fi
1.132     gully     770: 
1.143     gully     771:   # checking for freetype lib (fonts library)
                    772:   if test ! -f $(which freetype-config) ; then
                    773:     AC_MSG_ERROR(Cannot find freetype library (font load/display routines). Please install it.)
                    774:   fi
                    775:   FREETYPE_INCLUDES=`freetype-config --cflags`
                    776:   FREETYPE_LIBRARIES=`freetype-config --libs`
                    777:   AC_SUBST(FREETYPE_INCLUDES)
                    778:   AC_SUBST(FREETYPE_LIBRARIES)
                    779: 
                    780: 
                    781:   # checking for xft lib
                    782:   # (not used because xft-config doesn't exist on debian stable)
                    783:   #if test ! -f $(which xft-config) ; then
                    784:   #  AC_MSG_ERROR(Cannot find Xft library. Please install it.)
                    785:   #fi
                    786:   #XFT_INCLUDES=`xft-config --cflags`
                    787:   #XFT_LIBRARIES=`xft-config --libs`
                    788:   #AC_SUBST(XFT_INCLUDES)
                    789:   #AC_SUBST(XFT_LIBRARIES)
                    790: 
                    791:   # START CHECKING XFT #
                    792:   # checking for Xft (old way)
                    793:   AC_MSG_CHECKING([Xft])
                    794:   for ac_dir in                        \
1.104     cheyroul  795:                /usr/include                    \
                    796:                /usr/X11R6/include              \
                    797:                /usr/local/include              \
                    798:                /usr/include/X11/Xft            \
                    799:                /usr/X11R6/include/X11/Xft      \
                    800:                /usr/local/include/X11/Xft      \
                    801:                /usr/include/X11/Xft1           \
                    802:                /usr/X11R6/include/X11/Xft1     \
1.113     vatton    803:                /usr/include/Xft2/X11/Xft/      \
1.104     cheyroul  804:                /usr/local/include/X11/Xft1     \
                    805:                /usr/include/X11/Xft2           \
                    806:                /usr/X11R6/include/X11/Xft2     \
                    807:                /usr/local/include/X11/Xft2     \
                    808:                ; \
1.143     gully     809:   do  if test -r "$ac_dir/Xft.h" ; then
                    810:     xft_inc="yes"
                    811:     XFT_INCLUDES="-I$ac_dir"
                    812:     AC_MSG_RESULT([yes])       
                    813:     break      
                    814:   fi
                    815:   done 
                    816:   if test "$xft_inc" = "" ; then
                    817:     AC_MSG_WARN(Xft 2 headers (Xft.h) not found !!)
                    818:     AC_MSG_WARN(Disabling opengl build !)
                    819:       with_gl="no"
                    820:       exit 1;
                    821:   fi
                    822: 
                    823:   AC_MSG_CHECKING([Xft-library])
                    824:   for ac_dir in                        \
                    825:                /usr/lib                        \
                    826:                /usr/X11R6/lib                  \
                    827:                /usr/local/lib                  \
                    828:                ; \
                    829:   do  if test -r "$ac_dir/libXft.so" ; then
                    830:     xft_lib="yes"
                    831:     XFT_LIBRARIES="-L$ac_dir -lXft"
                    832:     AC_MSG_RESULT([yes])
                    833:     break      
                    834:   fi
                    835:   done 
                    836:   if test "$xft_lib" = "" ; then
                    837:     AC_MSG_WARN(Xft 2 librarie (libXft.so) not found !!)
                    838:     AC_MSG_WARN(Disabling opengl build !)
                    839:       with_gl="no"
                    840:       exit 1;
                    841:   fi
                    842:   AC_SUBST(XFT_INCLUDES)
                    843:   AC_SUBST(XFT_LIBRARIES)
                    844:   # END CHECKING XFT #
                    845: 
                    846: 
                    847:   AC_MSG_CHECKING([gcc3])      
                    848:   for ac_dir in                        \
1.96      cheyroul  849:                /usr/lib                        \
                    850:                /usr/X11R6/lib          \
                    851:                /usr/local/lib          \
                    852:                ; \
1.143     gully     853:   do  if test -r "$ac_dir/libstdc++.so.5" ; then
                    854:     stdglu_inc="yes"
                    855:     STDCPP_LIBRARIES="-lstdc++"
                    856:     STDCPP_INCLUDES=""
                    857:     AC_MSG_RESULT([yes])       
                    858:     break
                    859:   fi
                    860:   done
                    861:   AC_SUBST(STDCPP_INCLUDES)
                    862:   AC_SUBST(STDCPP_LIBRARIES)
                    863: 
                    864:   NOPRINT=""
                    865:   PRINTIFNOTGL=" print_prog"
                    866: 
                    867: else # if with_gl or with_mesa
                    868: 
                    869:   NOPRINT=""
                    870:   PRINTIFNOTGL=" print_prog"
1.132     gully     871: 
1.143     gully     872: fi # if with_gl or with_mesa
1.132     gully     873: 
1.97      cheyroul  874: AC_SUBST(PRINTIFNOTGL)
1.112     cheyroul  875: AC_SUBST(NOPRINT)
                    876: 
1.76      vatton    877: 
                    878: AC_ARG_ENABLE(svg,           [  --disable-svg           remove SVG support ])
                    879: AC_ARG_ENABLE(annot,         [  --disable-annot         remove Annotations support ])
1.146     kahan     880: AC_ARG_ENABLE(redland,       [  --disable-redland       disable the redland RDF library ])
1.116     kahan     881: AC_ARG_ENABLE(system-redland,       [  --enable-system-redland try the redland RDF system library ])
1.108     kahan     882: AC_ARG_ENABLE(bookmarks,     [  --enable-bookmarks      enables experimental bookmark support ])
1.76      vatton    883: AC_ARG_ENABLE(generic-xml,   [  --disable-generic-xml   remove Generic XML support ])
                    884: 
1.75      cheyroul  885: dnl
1.21      cvs       886: dnl plugins support is disabled by default
1.8       cvs       887: dnl
1.13      cvs       888: 
                    889: if test "$with_plugin" = "" ; then
1.21      cvs       890:   if test "$enable_plugin" = "yes" ; then
1.55      kahan     891:     with_plugin="yes"
1.21      cvs       892:   else
1.17      cvs       893:     with_plugin="no"
                    894:   fi
1.10      cvs       895: fi  
1.1       cvs       896: 
1.8       cvs       897: dnl
1.68      vatton    898: dnl svg is enabled by default
1.26      cvs       899: dnl
1.68      vatton    900: if test "$with_svg" = "" ; then
                    901:     if test "$enable_svg" = "no" ; then
                    902:        with_svg="no"
1.49      cvs       903:     else
1.68      vatton    904:        with_svg="yes"
1.26      cvs       905:     fi
                    906: fi
                    907: 
                    908: dnl
1.56      kahan     909: dnl annotations is enabled by default
1.47      cvs       910: dnl
                    911: if test "$with_annot" = "" ; then
1.56      kahan     912:     if test "$enable_annot" = "no" ; then
                    913:        with_annot="no"
                    914:     else
1.54      cvs       915:        with_annot="yes"
1.47      cvs       916:     fi
1.99      kahan     917: else
                    918:     with_annot="yes"
1.47      cvs       919: fi
                    920: 
1.93      kahan     921: 
                    922: dnl
1.146     kahan     923: dnl The redland library is enabled by default
1.93      kahan     924: dnl
1.146     kahan     925: if test "$with_redland" = "" ; then
                    926:     if test "$enable_redland" = "no" ; then
                    927:        with_redland="no"
1.93      kahan     928:     else
1.109     kahan     929:        with_redland="yes"
                    930:     fi
                    931: else
1.146     kahan     932:     with_redland="yes"
1.109     kahan     933: fi
                    934: 
                    935: dnl
1.116     kahan     936: dnl The redland library is disabled by default
                    937: dnl
                    938: if test "$with_system_redland" = "" ; then
                    939:     if test "$enable_system_redland" = "yes" ; then
                    940:        with_redland="yes"
                    941:        with_system_redland="yes"
                    942:     else
                    943:        with_system_redland="no"
                    944:     fi
                    945: else
                    946:     with_system_redland="no"
                    947: fi
                    948: 
                    949: dnl
                    950: dnl The bookmarks support is disabled by default
1.108     kahan     951: dnl
                    952: if test "$with_bookmarks" = "" ; then
                    953:     if test "$enable_bookmarks" = "yes" ; then
                    954:        with_bookmarks="yes"
1.125     vatton    955:        with_redland="yes"
1.108     kahan     956:     else
                    957:        with_bookmarks="no"
                    958:     fi
                    959: else
                    960:     with_bookmarks="no"
                    961: fi
                    962: 
                    963: dnl
1.70      kahan     964: dnl Generic XML support enabled by default
                    965: dnl
                    966: if test "$with_generic_xml" = "" ; then
                    967:     if test "$enable_generic_xml" = "no" ; then
                    968:        with_generic_xml="no"
                    969:        GENERIC_XML_OPTIONS=
                    970:     else
                    971:        with_generic_xml="yes"
                    972:        GENERIC_XML_OPTIONS=-DXML_GENERIC
                    973:     fi
                    974: fi
                    975: 
1.120     gully     976: AC_ARG_WITH(dav,            [  --with-dav              enable WebDAV support (experimental) ])
1.88      kirschpi  977: dnl
                    978: dnl DAV support disabled by default
                    979: dnl
                    980: if test "$with_dav" = "" ; then
                    981:   if test "$enable_dav" = "yes" ; then
                    982:     with_dav="yes"
                    983:   else
                    984:     with_dav="no"
                    985:   fi
                    986: fi  
                    987: 
                    988: if test "$with_dav" = "yes" ; then
                    989:    DAV_OPTIONS=-DDAV
1.90      kirschpi  990:    DAVDIR="davlib"
                    991:    LIBDAV="libwwwdav"
                    992:    WITHDAV="--with-dav" 
                    993:    WWWDAV="-lwwwdav" 
1.88      kirschpi  994: else
                    995:    with_dav="no"
                    996:    DAV_OPTIONS=""
1.90      kirschpi  997:    DAVDIR=""
                    998:    LIBDAV=""
                    999:    WITHDAV="" 
                   1000:    WWWDAV="" 
1.88      kirschpi 1001: fi
                   1002: 
1.70      kahan    1003: 
1.19      cvs      1004: if test "$build_amaya" = "yes" ; then
1.43      cvs      1005:     if test ! -f $srcdir/../libwww/Makefile.in ; then
1.50      cvs      1006:        AC_MSG_WARN(libwww sources not found !!)
                   1007:        AC_MSG_WARN(Disabling Amaya build !)
                   1008:        build_amaya="no"
1.1       cvs      1009:     fi
1.8       cvs      1010: 
                   1011:     if test ! -f $srcdir/amaya/MathML.S ; then
1.10      cvs      1012:        if test "$with_math" = "yes" ; then
1.8       cvs      1013:            AC_MSG_WARN(MathML sources not found !!)
1.26      cvs      1014:            AC_MSG_WARN(Disabling Math build !)
1.10      cvs      1015:            with_math="no"
                   1016:            MATH_OPTIONS=
1.8       cvs      1017:        fi
                   1018:     fi
1.26      cvs      1019: 
1.68      vatton   1020:     if test ! -f $srcdir/amaya/SVG.S ; then
                   1021:        if test "$with_svg" = "yes" ; then
                   1022:            AC_MSG_WARN(SVG sources not found !!)
                   1023:            AC_MSG_WARN(Disabling SVG build !)
                   1024:            with_svg="no"
                   1025:            SVG_OPTIONS=
1.26      cvs      1026:        fi
                   1027:     fi
                   1028: 
1.48      cvs      1029:     if test ! -f $srcdir/annotlib/Makefile.in ; then
1.47      cvs      1030:        if test "$with_annot" = "yes" ; then
                   1031:            AC_MSG_WARN(Annotation makefile not found !!)
                   1032:            AC_MSG_WARN(Disabling Annotations build !)
                   1033:            with_annot="no"
                   1034:        fi
                   1035:     fi
1.55      kahan    1036: 
1.146     kahan    1037:     if test "$with_redland" = "yes" -a "$with_annot" = "no" -a "$with_bookmarks" = "no"; then
                   1038:        AC_MSG_WARN(Disabling redland as neither annotations nor bookmarks are enabled !)
1.93      kahan    1039:        MAKERAPTOR=['#']
                   1040:        with_raptor="no"
                   1041:     fi
                   1042: 
1.116     kahan    1043:     redland_compile_source=yes
                   1044:     if test "$with_redland" = "yes" -a "$with_system_redland" = "yes" ; then
                   1045:        # check to see if we have a redland library
                   1046:        AC_MSG_CHECKING(system redland library)
1.142     kahan    1047:        redland_min_version=0.9.16
1.116     kahan    1048:        REDLAND_CONFIG="redland-config"
                   1049:        REDLAND_VERSION=`$REDLAND_CONFIG --version`
                   1050:        redland_version_dec=`echo $REDLAND_VERSION | awk -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
                   1051:        redland_min_version_dec=`echo $redland_min_version | awk -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
                   1052:        if test $redland_version_dec -lt $redland_min_version_dec; then
                   1053:          AC_MSG_RESULT(no - found version $REDLAND_VERSION and minimal version is $redland_min_version)
                   1054:        else
                   1055:          AC_MSG_RESULT(yes - found version $REDLAND_VERSION)
                   1056:         AC_MSG_CHECKING(checking for redland headers)
1.117     kahan    1057:         dnl  We should use awk here and remove the -I from the following line
                   1058:          dnl REDLAND_HEADERS=`$REDLAND_CONFIG --cflags`
                   1059:         REDLAND_HEADERS=""
                   1060:         if test -e "/usr/include/redland.h" ; then
                   1061:           REDLAND_HEADERS="/usr/include";
                   1062:         else 
                   1063:            if test -e "/usr/local/include/redland.h" ; then
                   1064:             REDLAND_HEADERS="/usr/local/include";
                   1065:            fi
                   1066:          fi        
                   1067:         if test $REDLAND_HEADERS != ""; then
1.116     kahan    1068:            AC_MSG_RESULT(yes - have development version)
                   1069:            redland_compile_source=no
                   1070:         else
                   1071:            AC_MSG_RESULT(no - no development version)
                   1072:          fi
                   1073:        fi
                   1074:     fi
                   1075: 
                   1076:     if test "$with_redland" = "yes" -a "$redland_compile_source" = "yes" \
                   1077:        -a ! -d "$srcdir/../redland" ; then
1.109     kahan    1078:        AC_MSG_WARN(Redland source dir not found !!)
                   1079:        AC_MSG_WARN(Disabling redland build !)
                   1080:        MAKEREDLAND=['#']
                   1081:        with_redland="no"
                   1082:     fi
                   1083: 
                   1084:     if test "$with_redland" = "yes" ; then
1.116     kahan    1085:        AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -DLIBRDF_INTERNAL=1 -DAM_REDLAND -DRAPTOR_RDF_PARSER"
                   1086:        if test "$redland_compile_source" = "yes" ; then
                   1087:          AMAYA_RAPTOR_SRC="amaya_comp_redland"
                   1088:          AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -I\$(THOTDIR)/../redland/librdf -I\$(THOTDIR)/../redland/raptor"
                   1089:          AMAYA_RAPTOR_LIBS="../redland/librdf/.libs/librdf.a ../redland/raptor/.libs/libraptor.a"
                   1090:          AMAYA_RAPTOR_INCLUDES="-I\$(THOTDIR)/../redland/librdf -I\$(THOTDIR)/../redland/raptor"
                   1091:        else
                   1092:          MAKEREDLAND=['#']
                   1093:         AMAYA_RAPTOR_SRC=
                   1094:         redland_includes=`$REDLAND_CONFIG --cflags`
                   1095:         redland_libs=`$REDLAND_CONFIG --libs`
                   1096:          AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS"
                   1097:          AMAYA_ANNOT_INCLUDES="$redland_includes -I\$(THOTDIR)/thotlib/include"
                   1098:          AMAYA_ANNOT_EXTRA_LIBS="$redland_libs"
                   1099:          AMAYA_RAPTOR_INCLUDES="$redland_includes"
                   1100:        fi
1.109     kahan    1101:     fi
                   1102: 
1.116     kahan    1103: 
1.108     kahan    1104:     dnl control whether we should build the bookmarks support
1.146     kahan    1105:     if test "$with_annot" = "yes" -a "$with_redland" = "no" ; then
                   1106:        AC_MSG_WARN(Disabling annotations build as redland is disabled !)
1.148     kahan    1107:        with_annot="no"
1.146     kahan    1108:     fi
1.108     kahan    1109:     if test "$with_bookmarks" = "yes" -a "$with_annot" = "no" ; then
                   1110:        AC_MSG_WARN(Disabling bookmarks build as annotations are disabled !)
                   1111:        with_bookmarks="no"
                   1112:     fi
1.109     kahan    1113:     if test "$with_bookmarks" = "yes" -a "$with_redland" = "no" ; then
                   1114:        AC_MSG_WARN(Disabling bookmarks build as redland is disabled !)
1.108     kahan    1115:        with_bookmarks="no"
                   1116:     fi
                   1117:     if test "$with_bookmarks" = "yes" ; then
                   1118:        ANNOTLIB_COMPILE_BM=
                   1119:        AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -DBOOKMARKS"
                   1120:     else
                   1121:        ANNOTLIB_COMPILE_BM=['#']
                   1122:     fi
                   1123: 
1.55      kahan    1124:     if test "$with_plugin" = "yes" ; then
                   1125:         AC_MSG_WARN(The plugin library isn't supported anymore in Amaya !!)
                   1126:        AC_MSG_WARN(Disabling plugin build !)
                   1127:        with_plugin="no"
                   1128:     fi
                   1129: 
1.88      kirschpi 1130: 
                   1131:     if test ! -f $srcdir/davlib/Makefile.in ; then
                   1132:        if test "$with_dav" = "yes" ; then
                   1133:            AC_MSG_WARN(WebDAV makefile not found !!)
                   1134:            AC_MSG_WARN(Disabling WebDAV build !)
                   1135:            with_dav="no"
1.90      kirschpi 1136:             DAVDIR=""
                   1137:             LIBDAV=""
                   1138:             WITHDAV="" 
                   1139:             WWWDAV="" 
1.88      kirschpi 1140:        fi
                   1141:     fi
                   1142:    
                   1143: 
1.1       cvs      1144: fi
                   1145: 
                   1146: dnl
                   1147: dnl The options for each library or binary
                   1148: dnl
                   1149: 
1.134     gully    1150: THOT_OPTIONS="$OS_OPTIONS $GTK_OPTIONS $GL_OPTIONS $WX_OPTIONS $NOGUI_OPTIONS"
                   1151: AMAYA_OPTIONS="$OS_OPTIONS $MATH_OPTIONS $SVG_OPTIONS $GENERIC_XML_OPTIONS $GTK_OPTIONS $GL_OPTIONS $WX_OPTIONS $NOGUI_OPTIONS"
1.58      cvs      1152: #PLUGIN_OPTIONS="-DPLUGIN_TRACE -DXP_UNIX"
1.129     vatton   1153: AMAYA_ANNOT_OPTIONS="$OS_OPTIONS $AMAYA_ANNOT_OPTIONS"
1.101     kahan    1154: 
1.102     kahan    1155: IMGLIBS="-ljpeg -lpng -lz"
1.132     gully    1156: 
1.3       cvs      1157: EXTRA_LIBS=
1.131     gully    1158: EXTRA_INCLUDES=
                   1159: 
                   1160: # check for malloc.h
                   1161: # on macosx, this file is not at the right place
                   1162: for ac_dir in               \
                   1163:   /usr/include/malloc/      \
                   1164:   /sw/include/malloc/       \
                   1165:   ; \
                   1166: do
                   1167:   if test -r "$ac_dir/malloc.h"; then
                   1168:     echo "found malloc.h"
                   1169:     EXTRA_INCLUDES="${EXTRA_INCLUDES} -I$ac_dir"
                   1170:     break
                   1171:   fi
                   1172: done
1.1       cvs      1173: 
                   1174: dnl
                   1175: dnl Set up the PATHs needed
                   1176: dnl
                   1177: 
                   1178: API="\$(THOTDIR)/thotlib/include"
                   1179: VAR="\$(THOTDIR)/thotlib/internals/var"
                   1180: INCL="\$(THOTDIR)/thotlib/internals/h"
                   1181: FUNC="\$(THOTDIR)/thotlib/internals/f"
                   1182: 
                   1183: dnl
                   1184: dnl Set up the include variables.
                   1185: dnl
                   1186: 
1.61      cvs      1187: THOTINCLUDES="-I${API} -I${VAR} -I${INCL} -I${FUNC} ${JPEGINCL} ${PNGINCL}"
1.58      cvs      1188: APIINCLUDES=-I${API}
                   1189:  
                   1190: if test "${VPATHOPT}" = "" ; then
1.1       cvs      1191:        VPATHOPT="VPATH"
                   1192: fi
                   1193: 
                   1194: dnl
                   1195: dnl Exports the current values of the variables.
                   1196: dnl
                   1197: 
                   1198: AC_SUBST(AMAYA_VER)
1.6       cvs      1199: AC_SUBST(CEXTRACT_VER)
                   1200: AC_SUBST(CEXTRACT_FLAGS)
1.1       cvs      1201: 
                   1202: AC_SUBST(THOTINCLUDES)
                   1203: AC_SUBST(APIINCLUDES)
                   1204: AC_SUBST(VPATHOPT)
                   1205: 
1.63      vatton   1206: AC_SUBST(GTK_OPTIONS)
1.1       cvs      1207: AC_SUBST(THOT_OPTIONS)
                   1208: AC_SUBST(AMAYA_OPTIONS)
                   1209: AC_SUBST(PLUGIN_OPTIONS)
1.48      cvs      1210: AC_SUBST(AMAYA_ANNOT_OPTIONS)
1.110     kahan    1211: AC_SUBST(AMAYA_ANNOT_INCLUDES)
1.116     kahan    1212: AC_SUBST(AMAYA_ANNOT_EXTRA_LIBS)
1.1       cvs      1213: AC_SUBST(IMGLIBS)
1.3       cvs      1214: AC_SUBST(EXTRA_LIBS)
1.131     gully    1215: AC_SUBST(EXTRA_INCLUDES)
1.90      kirschpi 1216: 
                   1217: AC_SUBST(DAVDIR)
                   1218: AC_SUBST(LIBDAV)
                   1219: AC_SUBST(WITHDAV)
                   1220: AC_SUBST(WWWDAV)
1.1       cvs      1221: 
1.93      kahan    1222: AC_SUBST(MAKERAPTOR)
1.109     kahan    1223: AC_SUBST(MAKEREDLAND)
1.108     kahan    1224: AC_SUBST(ANNOTLIB_COMPILE_BM)
1.109     kahan    1225: AC_SUBST(AMAYA_RAPTOR_SRC)
1.93      kahan    1226: AC_SUBST(AMAYA_RAPTOR_LIBS)
                   1227: AC_SUBST(AMAYA_RAPTOR_INCLUDES)
                   1228: AC_SUBST(MAKE_LIBWWW_RDF_PARSER)
                   1229: AC_SUBST(LIBWWW_RDF_PARSER)
                   1230: 
                   1231: AC_SUBST(SUBDIRS)
                   1232: 
1.1       cvs      1233: dnl
1.48      cvs      1234: dnl Include the option Makefile.xxx fragment according to the configure options
1.1       cvs      1235: dnl
                   1236: 
                   1237: if test "$with_plugin" = "yes" ; then
1.50      cvs      1238:     AC_SUBST_FILE(plugin_frag)
1.1       cvs      1239:     plugin_frag=$srcdir/pluginlib/Makefile.plugin
                   1240: else
                   1241:     AC_SUBST_FILE(plugin_frag)
                   1242:     plugin_frag=/dev/null
                   1243: fi
                   1244: 
                   1245:     AC_SUBST_FILE(www_frag)
1.49      cvs      1246:     www_frag=$srcdir/amaya/Makefile.libwww
1.1       cvs      1247: 
1.50      cvs      1248: if test "$with_math" = "no" ; then
1.10      cvs      1249:     AC_SUBST_FILE(math_frag)
1.50      cvs      1250:     math_frag=/dev/null
1.8       cvs      1251: else
1.10      cvs      1252:     AC_SUBST_FILE(math_frag)
1.50      cvs      1253:     math_frag=$srcdir/amaya/Makefile.math
1.8       cvs      1254: fi
                   1255: 
1.68      vatton   1256: if test "$with_svg" = "no" ; then
                   1257:     AC_SUBST_FILE(svg_frag)
                   1258:     svg_frag=/dev/null
1.26      cvs      1259: else
1.68      vatton   1260:     AC_SUBST_FILE(svg_frag)
                   1261:     svg_frag=$srcdir/amaya/Makefile.svg
1.26      cvs      1262: fi
                   1263: 
1.47      cvs      1264: if test "$with_annot" = "yes" ; then
                   1265:     AC_SUBST_FILE(annot_frag)
1.48      cvs      1266:     annot_frag=$srcdir/annotlib/Makefile.annot
1.47      cvs      1267: else
                   1268:     AC_SUBST_FILE(annot_frag)
                   1269:     annot_frag=/dev/null
                   1270: fi
                   1271: 
1.88      kirschpi 1272: if test "$with_dav" = "yes" ; then
                   1273:     AC_SUBST_FILE(dav_frag)
                   1274:     dav_frag=$srcdir/davlib/Makefile.dav
                   1275: fi
1.16      cvs      1276: 
1.1       cvs      1277: dnl  ***************************************************************
                   1278: dnl
                   1279: dnl      FINAL STEP : PRODUCE ALL THE MAKEFILES AND CONFIG FILES
                   1280: dnl
                   1281: dnl  ***************************************************************
                   1282: 
                   1283: EXTRA_MAKEFILE_IN=
1.2       cvs      1284: make_output="Makefile Options.orig:Options.in tools/Makefile \
1.1       cvs      1285:        libjpeg/Makefile libpng/Makefile libpng/zlib/Makefile \
1.2       cvs      1286:        tools/mkdep/Makefile \
1.1       cvs      1287:        tools/cextract-1.7/Makefile thotlib/Makefile \
1.127     vatton   1288:        thotlib/include/Makefile batch/Makefile"
1.1       cvs      1289: 
                   1290: if test "$build_amaya" = "yes" ; then
1.2       cvs      1291: 
1.19      cvs      1292:     make_output="$make_output amaya/Makefile pluginlib/Makefile"
1.2       cvs      1293:     EXTRA_MAKEFILE_IN="$srcdir/amaya/Makefile.in \
1.93      kahan    1294:     $srcdir/amaya/Makefile.libwww"
1.27      cvs      1295: 
                   1296:     if test "$$with_plugin" = "yes" ; then
                   1297:        make_output="$make_output pluginlib/Makefile"
                   1298:        EXTRA_MAKEFILE_IN="$srcdir/pluginlib/Makefile.in \
1.93      kahan    1299:        $srcdir/pluginlib/Makefile.plugin"
1.27      cvs      1300:     fi
1.2       cvs      1301: 
1.48      cvs      1302:     if test "$with_annot" = "yes" ; then
                   1303:        make_output="$make_output annotlib/Makefile"
                   1304:        EXTRA_MAKEFILE_IN="$srcdir/annotlib/Makefile.in"
                   1305:     fi
1.88      kirschpi 1306: 
                   1307:     if test "$with_dav" = "yes" ; then
                   1308:        make_output="$make_output davlib/Makefile"
                   1309:        EXTRA_MAKEFILE_IN="$srcdir/davlib/Makefile.in"
                   1310:     fi
                   1311: 
1.1       cvs      1312: fi
                   1313: 
                   1314: AC_SUBST(EXTRA_MAKEFILE_IN)
1.6       cvs      1315: AC_OUTPUT($make_output , [
                   1316: dnl
                   1317: dnl This fragment of shell code is executed after the
                   1318: dnl Makefile(s) dump ...
                   1319: dnl
                   1320: 
                   1321: echo timestamp > stamp-h
                   1322: 
                   1323: dnl
                   1324: dnl Check for an upgrade in the Options numbers
                   1325: dnl
                   1326: 
                   1327: if test -f Options ; then
                   1328:    oldversion=`grep Version Options`
                   1329:    newversion=`grep Version Options.orig`
                   1330:    if test "$oldversion" != "$newversion" ; then
                   1331:        echo WARNING : Options files have changed, old options saved to Options.old
                   1332:        cp Options Options.old
                   1333:        cp Options.orig Options
                   1334:        exit 1
                   1335:    fi
                   1336: fi
                   1337: ])
1.1       cvs      1338: 
                   1339: if test "$build_amaya" = "yes" ; then
1.50      cvs      1340:     echo Amaya configured with libWWW
                   1341:     if test "$with_plugin" = "yes" ; then
                   1342:         echo Amaya configured with Plugins support
1.8       cvs      1343:     fi
1.10      cvs      1344:     if test "$with_math" = "yes" ; then
                   1345:        echo Amaya configured with Math support
1.26      cvs      1346:     fi
1.68      vatton   1347:     if test "$with_svg" = "yes" ; then
                   1348:        echo Amaya configured with SVG support
1.47      cvs      1349:     fi
                   1350:     if test "$with_annot" = "yes" ; then
                   1351:        echo Amaya configured with Annotations support
1.70      kahan    1352:     fi
1.93      kahan    1353:     if test "$with_raptor" = "yes" ; then
1.106     kahan    1354:        echo Amaya configured with the Raptor RDF parser
1.109     kahan    1355:     fi
                   1356:     if test "$with_redland" = "yes" ; then
1.116     kahan    1357:        if test "$with_system_redland" = "no" ; then
                   1358:          echo Amaya configured with the Redland RDF library \(local source\)
                   1359:        else
                   1360:          echo Amaya configured with the Redland RDF library \(system\)
                   1361:        fi
1.108     kahan    1362:     fi
                   1363:     if test "$with_bookmarks" = "yes" ; then
                   1364:        echo Amaya configured with bookmarks support \(experimental\)
1.93      kahan    1365:     fi
1.70      kahan    1366:     if test "$with_generic_xml" = "yes" ; then
                   1367:        echo Amaya configured with generic XML suppport
                   1368:     fi
1.129     vatton   1369:     echo Amaya configured with internationalization suppport
1.75      cheyroul 1370:     if test "$with_gl" = "yes" ; then
1.143     gully    1371:        echo Amaya configured with OpenGL Canvas Rendering \(System library\) \(experimental\)
                   1372:     fi
                   1373:     if test "$with_mesa" = "yes" ; then
                   1374:        echo Amaya configured with OpenGL Canvas Rendering \(MesaLib\) \(experimental\)
1.88      kirschpi 1375:     fi
                   1376:     if test "$with_dav" = "yes" ; then
                   1377:        echo Amaya configured with WebDAV support \(experimental\)
1.1       cvs      1378:     fi
1.5       cvs      1379: fi
                   1380: 
1.107     kahan    1381: if test "$no_graphic" = "yes" ; then
                   1382:     echo "Amaya configured with system graphic libraries (libjpeg, libpng, zlib)"
                   1383: else
                   1384:     echo "Amaya configured with static graphic libraries (libjpeg, libpng, zlib)"
                   1385:     if test "$with_gtk" = "yes" -o "$with_gl" = "yes" ; then
                   1386:       echo "  N.B. This option may not work in your platform. If Amaya crashes"
                   1387:       echo "  when opening a PNG file. Recompile it using the system libraries."
                   1388:     fi
                   1389: fi
                   1390: 
                   1391: if test "$with_gtk" = "yes" ; then
1.67      vatton   1392:     echo "Amaya configured with GTK"
1.120     gully    1393: fi
                   1394: 
1.124     gully    1395: if test "$with_wx" = "yes" ; then
1.136     gully    1396:   if test "$with_wxdebug" = "yes" ; then
                   1397:     echo "Amaya configured with wxWidgets (experimental) [with debug]"
                   1398:   else
                   1399:     echo "Amaya configured with wxWidgets (experimental)"
                   1400:   fi
1.1       cvs      1401: fi
                   1402: 
1.121     gully    1403: if test "$with_nogui" = "yes" ; then
1.128     gully    1404:   echo "Amaya configured without GUI toolkit"
1.121     gully    1405: fi
1.136     gully    1406: 
                   1407: 
1.107     kahan    1408: echo ""
1.78      vatton   1409: echo "Now type \"make\" (GNU make preferably) to build the binaries"
1.107     kahan    1410: echo ""
1.120     gully    1411: 

Webmaster