Annotation of Amaya/configure.in, revision 1.144

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

Webmaster