Annotation of Amaya/configure.in, revision 1.215

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: 
1.171     vatton     71: 
1.1       cvs        72: dnl
                     73: dnl Checks for libraries.
                     74: dnl
                     75: 
                     76: AC_CHECK_LIB(socket, socket, )
                     77: AC_CHECK_LIB(inet, connect)
                     78: AC_CHECK_LIB(nsl, t_accept)
                     79: AC_CHECK_LIB(dl, dlopen)
1.141     gully      80: #AC_PATH_X
                     81: #AC_PATH_XTRA
1.1       cvs        82: 
1.41      cvs        83: dnl
1.5       cvs        84: dnl Checks for header files.
                     85: dnl
                     86: 
                     87: AC_HEADER_DIRENT
                     88: AC_HEADER_STDC
                     89: AC_HEADER_SYS_WAIT
                     90: 
                     91: AC_CHECK_HEADERS(stdio.h)
                     92: AC_CHECK_HEADERS(sys/types.h types.h)
                     93: AC_CHECK_HEADERS(sys/unistd.h unistd.h)
                     94: AC_CHECK_HEADERS(sys/fcntl.h fcntl.h)
                     95: AC_CHECK_HEADERS(sys/limits.h limits.h)
                     96: AC_CHECK_HEADERS(sys/stat.h stat.h)
                     97: AC_CHECK_HEADERS(sys/file.h)
                     98: AC_CHECK_HEADERS(sys/ioctl.h)
                     99: AC_CHECK_HEADERS(sys/time.h time.h)
                    100: AC_CHECK_HEADERS(sys/systeminfo.h)
1.46      cvs       101: AC_CHECK_HEADERS(sys/string.h strings.h)
1.34      cvs       102: AC_CHECK_HEADERS(sys/syslog.h syslog.h)
1.5       cvs       103: AC_CHECK_HEADERS(sys/socket.h socket.h)
1.131     gully     104: 
                    105: # SG: not used ? => do not compile on macosx
                    106: # AC_CHECK_HEADERS(appkit/appkit.h appkit.h)
                    107: # AC_CHECK_HEADERS(apppkit/apppkit.h apppkit.h)
                    108: 
1.5       cvs       109: AC_CHECK_HEADERS(netinet/in.h in.h)
                    110: AC_CHECK_HEADERS(dn.h)
                    111: AC_CHECK_HEADERS(sys/ipc.h)
                    112: AC_CHECK_HEADERS(net/errno.h sys/errno.h errno.h)
                    113: AC_CHECK_HEADERS(pwd.h)
                    114: AC_CHECK_HEADERS(grp.h)
                    115: AC_CHECK_HEADERS(arpa/inet.h inet.h)
                    116: AC_CHECK_HEADERS(netdb.h)
                    117: AC_CHECK_HEADERS(manifest.h)
                    118: AC_CHECK_HEADERS(bsdtypes.h)
                    119: AC_CHECK_HEADERS(stdefs.h)
                    120: AC_CHECK_HEADERS(bsdtime.h)
                    121: AC_CHECK_HEADERS(sys/select.h select.h)
                    122: AC_CHECK_HEADERS(dnetdb.h)
                    123: AC_CHECK_HEADERS(libc.h)
                    124: AC_CHECK_HEADERS(stdlib.h)
                    125: AC_CHECK_HEADERS(malloc.h)
                    126: AC_CHECK_HEADERS(memory.h)
                    127: AC_CHECK_HEADERS(unixlib.h)
                    128: AC_CHECK_HEADERS(ctype.h)
                    129: AC_CHECK_HEADERS(cursesX.h curses.h)
                    130: AC_CHECK_HEADERS(sys/resource.h resource.h)
                    131: AC_HEADER_DIRENT
                    132: AC_CHECK_HEADERS(dir.h direct.h) dnl AC_HEADER_DIRENT only checks for some..
                    133: AC_HEADER_STDC
                    134: AC_HEADER_SYS_WAIT
                    135: AC_HEADER_TIME
                    136: AC_HEADER_STAT
1.103     kahan     137: AC_CHECK_HEADERS(stdint.h)
1.5       cvs       138: 
                    139: dnl
                    140: dnl Checks for typedefs, structures, and compiler characteristics.
                    141: dnl
                    142: 
                    143: AC_C_CONST
                    144: AC_C_INLINE
                    145: AC_TYPE_MODE_T
                    146: AC_TYPE_OFF_T
                    147: AC_TYPE_SIZE_T
                    148: AC_HEADER_TIME
                    149: AC_STRUCT_TM
                    150: AC_STRUCT_TIMEZONE
                    151: AC_TYPE_UID_T
                    152: 
                    153: dnl
                    154: dnl Checks for library functions.
                    155: dnl
                    156: 
                    157: AC_FUNC_ALLOCA
                    158: AC_TYPE_GETGROUPS
                    159: AC_PROG_GCC_TRADITIONAL
                    160: AC_FUNC_MEMCMP
                    161: AC_FUNC_MMAP
                    162: AC_TYPE_SIGNAL
                    163: AC_FUNC_VPRINTF
1.58      cvs       164: 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       165: 
1.132     gully     166: #
                    167: # Check for operating system (UNIX / WINDOWS / MACOSX )
                    168: # ---------->
1.178     gully     169: # canonicalize the target OS
                    170: AMAYAOS="LINUX"
1.132     gully     171: case $target_os in
1.178     gully     172:   aix*)       AMAYAOS="LINUX" ;;
                    173:   cygwin*)    AMAYAOS="WINDOWS" ;;
                    174:   darwin*)    AMAYAOS="MACOSX" ;;
                    175:   freebsd2*)  AMAYAOS="LINUX" ;;
                    176:   freebsd*)   AMAYAOS="LINUX" ;;
                    177:   hpux*)      AMAYAOS="LINUX" ;;
                    178:   irix*)      AMAYAOS="LINUX" ;;
                    179:   linuxaout*) AMAYAOS="LINUX" ;;
                    180:   linux*)     AMAYAOS="LINUX" ;;
                    181:   mingw32*)   AMAYAOS="WINDOWS" ;;
                    182:   netbsd*)    AMAYAOS="LINUX" ;;
                    183:   openbsd*)   AMAYAOS="LINUX" ;;
                    184:   osf[12]*)   AMAYAOS="LINUX" ;;
                    185:   osf*)       AMAYAOS="LINUX" ;;
                    186:   solaris2*)  AMAYAOS="LINUX" ;;
                    187:   sunos4*)    AMAYAOS="LINUX" ;;
                    188:   ultrix*)    AMAYAOS="LINUX" ;;
                    189: esac
                    190: AC_SUBST(AMAYAOS)
                    191: 
                    192: if test "$AMAYAOS" = "WINDOWS" ; then
                    193:   AC_MSG_ERROR(Windows port do not use configure - not yet tested.)
                    194: fi
                    195: 
                    196: OS_OPTIONS="-D_UNIX" # default is UNIX
                    197: case $AMAYAOS in
                    198:   LINUX)       OS_OPTIONS="-D_UNIX" ;;
                    199:   WINDOWS)     OS_OPTIONS="-D_WINDOWS" ;; # not tested (cygwin or mingw)
                    200:   MACOSX)      OS_OPTIONS="-D_UNIX -D_MACOS" ;;
1.132     gully     201: esac
                    202: 
1.85      vatton    203: dnl
1.175     gully     204: dnl GL canvas is disabled by default in 8.7.x
                    205: dnl GL canvas is enabled by default in 9.x
                    206: dnl - 8.7.x needs : GL, GLX, GLU, freetype2, gtkgl
                    207: dnl - 9.x needs : GL, GLX, GLU, freetype2, wxGLCanvas
1.85      vatton    208: dnl GL is for opengl
1.175     gully     209: dnl GlX is for XWindow integration
1.85      vatton    210: dnl GLU is for tesselation algortihms (until we extract it from this lib)
                    211: dnl (tesselation is used for polygons with holes in it...)
                    212: dnl gtkgl is for integration of opengl in GTK
1.175     gully     213: dnl freetype2 is for text drawing (fonts ...)
                    214: dnl wxGLCanvas is for integration of opengl in wxWidgets (WX)
1.211     vatton    215: AC_ARG_WITH([gl],
1.210     vatton    216:    AC_HELP_STRING([--with-gl],[enable Opengl canvas (experimental)]),
                    217:    [case "${withval}" in
                    218:          yes) with_gl="yes" ;;
                    219:          no)  with_gl="no" ;;
                    220:          *) AC_MSG_ERROR(bad value ${withval} for --with-gl) ;;
                    221:        esac],
                    222:        [with_gl="no"])
1.85      vatton    223: 
1.120     gully     224: # check if gtk gui should be used
                    225: AC_ARG_WITH(gtk, [  --with-gtk              use GTK GUI toolkit ])
1.208     vatton    226: if test "$with_gtk" = "yes" ; then
1.120     gully     227:   if test "$withval" = "no" ; then
                    228:     with_gtk="no"
1.197     vatton    229:     with_wx="yes"
1.120     gully     230:   else
                    231:     with_gtk="yes"
1.196     cvs       232:     with_wx="no"
1.120     gully     233:   fi
                    234: fi
                    235: 
1.197     vatton    236: # check if wxWidgets gui should be used
                    237: AC_ARG_WITH(wx, [  --with-wx               use wxWidgets GUI toolkit])
1.208     vatton    238: if test "$with_wx" = "yes" ; then
1.197     vatton    239:   if test "$withval" = "no" ; then
                    240:     with_wx="no"
                    241:   else
                    242:     with_wx="yes"
                    243:     with_gtk="no"
                    244:   fi
                    245: fi
1.205     vatton    246: AC_ARG_ENABLE(system-wx,       [  --enable-system-wx try the wxWidgets system library ])
1.197     vatton    247: if test "$with_gtk" = "" -o "$with_wx=" = "" ; then
                    248:   # Nothing is enable so force the default GUI toolkit (WX)
                    249:   with_gtk="no"
                    250:   with_wx="yes"
                    251: fi
                    252: 
1.143     gully     253: # check for mesa library (OpenGL)
1.205     vatton    254: AC_ARG_WITH(MESA,              [  --with-mesa         enable canvas with software OpenGL implementation (Mesa) ])
1.143     gully     255: if test "$with_mesa" = "" ; then
1.208     vatton    256:   with_mesa="no"
1.143     gully     257: fi
                    258: 
1.124     gully     259: 
1.175     gully     260: # Check if at least one GUI toolkit is enabled
1.197     vatton    261: if test "$with_wx" = "no" ; then
                    262:   if test "$with_gtk" = "no" ; then
                    263:     # Nothing is enable so force the default GUI toolkit (WX)
                    264:     with_wx="yes"
                    265:     with_gtk="no"
1.85      vatton    266:   fi
                    267: fi
                    268: 
1.176     gully     269: # mesa (software) gl implementation is default with wx (hardware gl implem can be choosen with --with-gl option)
1.197     vatton    270: if test "$with_wx" = "yes" -o "$with_wx" = "" ; then
1.183     carcone   271:  if test "$AMAYAOS" = "MACOSX" ; then
                    272:     with_mesa="no"
                    273:     with_gl="yes"
                    274:  else
1.176     gully     275:   if test "$with_gl" = "no" ; then
                    276:     with_mesa="yes"
1.175     gully     277:   fi
1.183     carcone   278:  fi
1.175     gully     279: fi
                    280: 
1.136     gully     281: # check if wxWidgets debug is enable
1.155     carcone   282: AC_ARG_WITH(wxdebug,              [  --with-wxdebug          compiles wxWidgets with debuging options ])
1.136     gully     283: if test "$with_wxdebug" = "yes" ; then
                    284:   with_wxdebug="yes"
                    285: else
                    286:   with_wxdebug="no"
                    287: fi
                    288: 
1.153     gully     289: # it is possible to specify wxWidgets library path,
                    290: # usefull for developpers who want to compile amaya with different wxWidgets version
1.155     carcone   291: AC_ARG_WITH(wxsrcdir, [  --with-wxsrcdir=...     compiles Amaya with a specific wxWidgets sources path ])
1.153     gully     292: if test "$with_wxsrcdir" = "" ; then
                    293:   with_wxsrcdir="../../wxWidgets"
                    294: fi
                    295: 
                    296: 
1.134     gully     297: if test "$with_wx" = "yes" ; then
1.120     gully     298:   if test "$with_gtk" = "yes" ; then
                    299:     echo 
                    300:     echo "****************************************************************"
                    301:     echo " ERROR: "
                    302:     echo " More than one GUI toolkit is enable"
                    303:     echo " Only one GUI toolkit should be enable (turn off one)"
                    304:     echo " exemple ok :  ../configure --with-gtk "
1.134     gully     305:     echo " exemple !ok : ../configure --with-gtk --with-wx"
1.120     gully     306:     echo "****************************************************************"
                    307:     echo 
                    308:     exit 1
                    309:   fi
                    310: fi
1.134     gully     311: 
1.152     gully     312: 
                    313: # setup the AMAYAGUI variable used to identify used GUI when 'make install' is called
                    314: # now several amaya gui can coexist.
                    315: if test "$with_gtk" = "yes" ; then
                    316:   AMAYAGUI="gtk"
                    317: fi
                    318: if test "$with_gl" = "yes" ; then
                    319:   AMAYAGUI="gl"
                    320: fi
                    321: if test "$with_wx" = "yes" ; then
                    322:   AMAYAGUI="wx"
                    323: fi
                    324: AC_SUBST(AMAYAGUI)
                    325: 
                    326: 
1.85      vatton    327: if test "$with_gtk" = "yes" ; then
1.134     gully     328:   gdkimlib_h_found="no"
1.63      vatton    329: 
1.134     gully     330:   # check that gtk-config exists
                    331:   AC_CHECK_PROG(GTKCONFIG_FOUND,gtk-config,yes,no)
                    332:   if test "$GTKCONFIG_FOUND" = no ; then
                    333:     AC_MSG_ERROR(Cannot find gtk-config. Please install gtk development library.)
                    334:   fi
                    335:                    
1.131     gully     336:   GTK_INCLUDES="${GTK_INCLUDES} `gtk-config --cflags`"
1.124     gully     337:   AC_SUBST(GTK_INCLUDES)
                    338:   GTK_LIBRARIES="`gtk-config --libs`"
1.134     gully     339:   # GL doesn't need the imlib
1.124     gully     340:   if test "${with_gl}" != "yes" ; then
1.134     gully     341:     GTK_LIBRARIES="${GTK_LIBRARIES} -lgdk_imlib"
                    342:   else
                    343:     gdkimlib_h_found="yes"
1.124     gully     344:   fi
1.106     kahan     345: 
1.124     gully     346:   AC_SUBST(GTK_LIBRARIES)
                    347:   GTK_OPTIONS="-D_GTK"
1.76      vatton    348:   no_graphic=yes
1.134     gully     349: 
1.150     gully     350:   # SG : lookingfor gtkimlib includes
                    351:   #      because not found with gtk-config on macosx
                    352:   gtk_path_for_gdkimlib_h="`gtk-config --prefix`"
                    353:   for ac_dir in               \
                    354:     /sw/include/              \
                    355:     /sw/local/include         \
                    356:     /usr/include              \
                    357:     /usr/local/include        \
                    358:     "$gtk_path_for_gdkimlib_h/include" \
                    359:     "$gtk_path_for_gdkimlib_h/local/include" \
                    360:     ; \
                    361:   do
                    362:     if test -r "$ac_dir/gdk_imlib.h"; then
                    363:       echo "found gdk_imlib.h"
                    364:       gdkimlib_h_found="yes"
                    365:       GTK_INCLUDES="${GTK_INCLUDES} -I$ac_dir"
                    366:       break
                    367:     fi
                    368:   done 
                    369: 
1.134     gully     370:   if test "$gdkimlib_h_found" = "no" ; then
                    371:     echo
                    372:     echo "****************************************************************"
                    373:     echo " ERROR: gdk_imlib.h not found -"
                    374:     echo " [please install imlib developpement package (libimlib1-devel on mandrake)]"
                    375:     echo "****************************************************************"
                    376:     exit 1
                    377:   fi                                                                                         
1.120     gully     378: fi
                    379: 
1.143     gully     380: 
                    381: if test "$with_mesa" = "yes" ; then
                    382:   # --------- compile Mesa library (opengl) --------------- #
                    383:   # check that sources of Mesa exists
                    384:   if test ! -f ../../Mesa/Makefile ; then
                    385:     AC_MSG_ERROR(Mesa library sources not found (opengl). Please download Mesa sources (http://www.mesa3d.org/) or remove --with-gl option !)
                    386: 
1.214     vatton    387:   fi
1.143     gully     388: 
1.215   ! vatton    389:   OLDDIR=`pwd`
        !           390:   GL_BUILDDIR="${OLDDIR}/Mesa"
        !           391:   if test ! -d "$GL_BUILDDIR" ; then
        !           392:     echo "---> Install Mesa library into ${GL_BUILDDIR}"
        !           393:     mkdir -p ${GL_BUILDDIR}
        !           394:     cp -r ../../Mesa/* ${GL_BUILDDIR}
        !           395:     echo "---> Install Mesa library into ${GL_BUILDDIR} - DONE"
        !           396:   fi
1.143     gully     397: 
                    398:   # this is the flags used to build amaya with OpenGL
                    399:   GL_OPTIONS="-D_GL"
1.152     gully     400:   GL_INCLUDES="-I${GL_BUILDDIR}/include"
                    401:   GL_LIBRARIES="-Wl,-rpath,${GL_BUILDDIR}/lib -L${GL_BUILDDIR}/lib -lGL -lGLU"
                    402:   AC_SUBST(GL_BUILDDIR)
1.143     gully     403:   AC_SUBST(GL_INCLUDES)
                    404:   AC_SUBST(GL_LIBRARIES)
                    405: fi
                    406: 
1.124     gully     407: if test "$with_wx" = "yes" ; then
1.205     vatton    408:   if test "$enable_system_wx" = "yes"; then
                    409:     AC_PATH_PROG(WXCONFIG, wx-config)
                    410:     if test -z "$WXCONFIG"; then
                    411:       enable_system_wx="no"
                    412:     fi
1.135     gully     413:   fi
1.205     vatton    414:   
                    415:   if test "$enable_system_wx" != "yes"; then
                    416:     # WX_SRCDIR is better to understand the code than with_wxsrcdir variable
                    417:     if test ! -f $with_wxsrcdir/Makefile.in ; then
                    418:       $with_wxsrcdir = ../../wxWidgets
                    419:     fi
                    420:     cd $with_wxsrcdir
                    421:     WX_SRCDIR=`pwd`
                    422:     cd -
                    423:     AC_SUBST(WX_SRCDIR)
                    424: 
                    425:     # check that sources of wxWidgets exists
                    426:     if test ! -f $WX_SRCDIR/Makefile.in ; then
                    427:       AC_MSG_ERROR(wxWidgets library sources not found. Please download wxWidgets sources (http://www.wxwidgets.org/), or remove --with-wx option, or check --with-wxsrcdir is correct !)
                    428:     fi
1.135     gully     429: 
1.152     gully     430:   # --------- configure wxWidgets library --------------- #
1.135     gully     431:   echo "---> Configuring wxWidgets library."
                    432:   OLDDIR=`pwd`
1.149     gully     433:   # create the build directory (debug or release)
                    434:   if test $with_wxdebug = yes ; then
1.152     gully     435:     WX_BUILDDIR="wxWidgets_DEBUG"
1.149     gully     436:   else
1.152     gully     437:     WX_BUILDDIR="wxWidgets_RELEASE"
1.149     gully     438:   fi
1.205     vatton    439: 
1.152     gully     440:   mkdir -p $WX_BUILDDIR
                    441:   cd $WX_BUILDDIR
                    442:   AC_SUBST(WX_BUILDDIR)
1.136     gully     443: 
1.149     gully     444:   # remove old configure cached options
1.135     gully     445:   rm -f configarg.cache
1.136     gully     446: 
                    447:   # setup configure options
1.158     gully     448:   
                    449:   # disable unused wx features
                    450:   #   --disable-htmlhelp
                    451:   #   --disable-html
                    452:   #   --disable-docview
                    453:   #   --disable-mdi
                    454:   #   --disable-mdidoc
                    455:   #   --disable-protocols
                    456:   #   --disable-ftp
                    457:   #   --disable-http
                    458:   #   --disable-sound
1.185     gully     459:   #   --disable-backtrace # to avoid the buggy popup when an assert occurs
                    460:   WXCONFIGURE_TUNNING_OPTION="--disable-printarch --disable-htmlhelp --disable-html --disable-docview --disable-mdi --disable-mdidoc --disable-sound --disable-backtrace"
1.158     gully     461:   
1.178     gully     462:   if test "$AMAYAOS" = "LINUX" ; then
1.135     gully     463:     # LINUX
1.145     gully     464:     #   --enable-gtk2           use GTK+ 2.0 if available (EXPERIMENTAL)
1.158     gully     465:     #   --disable-shared        create only static library (.a)
1.145     gully     466:     #   --enable-unicode        compile wxString with Unicode support
                    467:     #   --with-gtk              use GTK+
                    468:     #   --with-opengl           use OpenGL (or Mesa)
1.205     vatton    469:     WXCONFIGURE_OPTION="--build=$build_alias --host=$host_alias --target=$target_alias --with-opengl --with-gtk --enable-gtk2 --enable-unicode --enable-ipc --disable-shared  --with-libpng=builtin --with-libjpeg=builtin --with-libtiff=builtin $WXCONFIGURE_TUNNING_OPTION"
1.135     gully     470:   fi
1.178     gully     471:   if test "$AMAYAOS" = "MACOSX" ; then
1.135     gully     472:     # MACOSX
1.170     carcone   473:     WXCONFIGURE_OPTION="--with-opengl --disable-shared --enable-unicode --with-libpng=builtin --with-libjpeg=builtin"
1.136     gully     474:   fi
                    475:   if test $with_wxdebug = yes ; then
1.141     gully     476:     WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-debug"
1.143     gully     477:     # SG: I've disabled other debug options because the lib has bugs when using these flags \
                    478:     # (maybe because these flags are not often used by wxWidgets developpers)
1.141     gully     479:     # WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-debug --enable-debug_cntxt --enable-debug_gdb --enable-debug_info --enable-debug_flag --enable-mem_tracing"
1.145     gully     480:   else
                    481:     WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-optimise"
1.135     gully     482:   fi
1.143     gully     483: 
1.136     gully     484:   # launch the configure
1.143     gully     485:   if test "$with_mesa" = "yes" ; then
                    486:     # use internal OpenGL (mesa) libraries
1.165     gully     487:     $WX_SRCDIR/configure CFLAGS="-I${GL_BUILDDIR}/include" CXXFLAGS="-I${GL_BUILDDIR}/include" CPPFLAGS="-I${GL_BUILDDIR}/include" $WXCONFIGURE_OPTION
1.158     gully     488:     #../$WX_SRCDIR/configure CFLAGS="-I${GL_BUILDDIR}/include" CXXFLAGS="-I${GL_BUILDDIR}/include" CPPFLAGS="-I${GL_BUILDDIR}/include" OPENGL_LIBS="-lGL -lGLU" $WXCONFIGURE_OPTION
1.145     gully     489:     if test $? != 0 ; then
                    490:       AC_MSG_ERROR(A problem occurs durring wxWidgets library configuration. Please fix the problem and try again.)
                    491:     fi
1.143     gully     492:   else
                    493:     # use OpenGL system libraries
1.165     gully     494:     $WX_SRCDIR/configure $WXCONFIGURE_OPTION    
1.143     gully     495:   fi
1.152     gully     496:   cd $OLDDIR
1.135     gully     497:   echo "---> Configuring wxWidgets library. - DONE"
1.143     gully     498: 
1.135     gully     499:   # --------- configuring wxWidgets paths --------------- #
1.152     gully     500:   WXCONFIG=$WX_BUILDDIR/wx-config
1.134     gully     501:   # check that wx-config exists
1.135     gully     502:   if test ! -f $WXCONFIG ; then
1.143     gully     503:     AC_MSG_ERROR(Cannot find wx-config. Please download wxWidgets (http://www.wxwidgets.org/))
1.134     gully     504:   fi
1.144     gully     505: 
                    506:   # setup include paths  
1.165     gully     507:   # "-I$WX_SRCDIR/src/png -I$WX_SRCDIR/src/jpeg -I$WX_SRCDIR/src/tiff" is a temporary patch to fix incorrect generated paths by wx-config --cxxflags (remove it when wxWidgets will be fixed)
1.205     vatton    508:   WX_INCLUDES="-I$WX_SRCDIR/src/png -I$WX_SRCDIR/src/jpeg -I$WX_SRCDIR/src/tiff"
                    509: 
                    510:   BUILDWXWIDGETS="wxwidgets"
                    511:   AC_SUBST(BUILDWXWIDGETS)
                    512: 
                    513:  fi
                    514: 
                    515:   WX_INCLUDES="$WX_INCLUDES `$WXCONFIG --cxxflags`"
                    516: 
1.124     gully     517:   AC_SUBST(WX_INCLUDES)
                    518: 
1.144     gully     519:   # setup libraries paths
                    520:   WX_LIBRARIES=""
                    521:   WX_LIBRARIES_EXTRA_PARAM=""
1.157     gully     522:   WXCONFIG_LIBS_PARAM="xrc,adv,core,xml,net"
1.132     gully     523:   # GL is used ?
1.143     gully     524:   if test "$with_gl" = "yes" -o "$with_mesa" = "yes" ; then
1.144     gully     525:     WXCONFIG_LIBS_PARAM="${WXCONFIG_LIBS_PARAM},gl"
1.132     gully     526:     # SG: this is a mistery why wx-config doesn't add these needed option on macosx
1.178     gully     527:     if test "$AMAYAOS" = "MACOSX" ; then
1.144     gully     528:       WX_LIBRARIES_EXTRA_PARAM="-framework OpenGL -framework AGL"
1.132     gully     529:     fi
1.124     gully     530:   fi
1.187     gully     531:  if test "$AMAYAOS" = "MACOSX" ; then
1.170     carcone   532:    WXCONFIG_LIBS_PARAM="${WXCONFIG_LIBS_PARAM},html"
                    533:  fi
                    534: 
1.152     gully     535:   WX_LIBRARIES="`$WXCONFIG --libs $WXCONFIG_LIBS_PARAM` ${WX_LIBRARIES_EXTRA_PARAM}"
1.144     gully     536:   AC_SUBST(WX_LIBRARIES)
1.161     gully     537:   
                    538:   WX_LINKDEPS="`$WXCONFIG --linkdeps`"
                    539:   AC_SUBST(WX_LINKDEPS)
1.124     gully     540: 
                    541:   WX_OPTIONS="-D_WX"
1.135     gully     542:   # --------- configuring wxWidgets paths - DONE --------------- #
1.132     gully     543: 
                    544:   no_graphic=yes
1.124     gully     545: fi
                    546: 
1.63      vatton    547: if test "${GCC}" = "yes"; then
                    548:    CPP="${CPP} -x c"
                    549: fi
                    550: 
1.1       cvs       551: dnl  ***************************************************************
                    552: dnl
1.61      cvs       553: dnl    SPECIFIC STUFF : CONFIGURATION OPTIONS FOR AMAYA
1.1       cvs       554: dnl
                    555: dnl  ***************************************************************
                    556: 
1.158     gully     557: # Do not care with libpng or libjpeg with wx version because we use the wxwidgets one.
                    558: if test "$with_wx" = "no" ; then
                    559:   # We don't use our graphic libraries for the pure GTK version (without GL)
                    560: 
                    561:   # if configure has option --with-graphiclibs then dont check for system graphic libs
                    562:   # force amaya static graphic libs to be used
                    563:   AC_ARG_WITH(graphiclibs, [  --with-graphiclibs      use static libjpeg, libpng.])
                    564:   if test "$with_graphiclibs" = "yes" -o "$enable_graphiclibs" = "yes" ; then
                    565:     no_graphic="no"
                    566:   else
                    567:     no_graphic="yes"
                    568:   fi
1.132     gully     569:                  
1.158     gully     570:   if test "$no_graphic" = yes; then
                    571:   dnl
                    572:       AC_MSG_CHECKING([for libjpeg version = 6b])
                    573:       AC_EGREP_CPP([x 62 *x],
                    574:           [#include <jpeglib.h>
                    575:            x JPEG_LIB_VERSION x],
                    576:   dnl
                    577:       AC_MSG_RESULT([yes])
                    578:         JPEGINCL=''
1.76      vatton    579:         LIBJPEG='-ljpeg'
                    580:         MAKEJPEG=['#'],
1.158     gully     581:   dnl
1.76      vatton    582:         AC_MSG_RESULT([no])
1.158     gully     583:         JPEGINCL='-I$(THOTDIR)/libjpeg'
1.76      vatton    584:         LIBJPEG='../libjpeg.a'      dnl LIBJPEG goes into amaya/Makefile.in
                    585:         )
1.158     gully     586:   dnl    
                    587:   dnl
1.95      vatton    588:     AC_MSG_CHECKING([for libpng version = 1.0.x or 1.2.x])
                    589:     AC_EGREP_CPP([x \"1.[02]\..*\" *x],
1.76      vatton    590:         [#include <png.h>
                    591:        x PNG_LIBPNG_VER_STRING x],
1.158     gully     592:   dnl
                    593:     AC_MSG_RESULT([yes])
                    594:         PNGINCL=''
1.76      vatton    595:         LIBPNG='-lpng'
                    596:         LIBZ=''
                    597:        MAKEPNG=['#'],
                    598: dnl
1.158     gully     599:     AC_MSG_RESULT([no])
                    600:            PNGINCL='-I$(THOTDIR)/libpng -I$(THOTDIR)/libpng/zlib'
1.76      vatton    601:         LIBPNG='../libpng.a'
                    602:         LIBZ='../libz.a'
                    603:         )
1.158     gully     604:   else
1.105     vatton    605:     JPEGINCL='-I$(THOTDIR)/libjpeg'
1.76      vatton    606:     LIBJPEG='../libjpeg.a'
1.105     vatton    607:     PNGINCL='-I$(THOTDIR)/libpng -I$(THOTDIR)/libpng/zlib'
1.76      vatton    608:     LIBPNG='../libpng.a'
                    609:     LIBZ='../libz.a'
1.158     gully     610:   fi
                    611:   dnl
                    612:   AC_SUBST(LIBJPEG)
                    613:   AC_SUBST(LIBPNG)
                    614:   AC_SUBST(LIBZ)
                    615:   AC_SUBST(MAKEJPEG)
                    616:   AC_SUBST(MAKEPNG)
                    617: fi # with_wx = no
1.76      vatton    618: 
1.166     gully     619: # the wx version
                    620: AMAYAWX_MAJVER=9
1.210     vatton    621: AMAYAWX_MINVER=53
1.201     vatton    622: AMAYAWX_SUBVER=0
1.166     gully     623: 
                    624: #the old version (to remove when switching on wx)
                    625: AMAYA_MAJVER=8
1.210     vatton    626: AMAYA_MINVER=53
1.205     vatton    627: AMAYA_SUBVER=0
1.166     gully     628: 
1.164     gully     629: if test "$with_wx" = "yes" ; then
1.166     gully     630:   APP_MAJVER=$AMAYAWX_MAJVER
                    631:   APP_MINVER=$AMAYAWX_MINVER
                    632:   APP_SUBVER=$AMAYAWX_SUBVER
                    633: else
                    634:   APP_MAJVER=$AMAYA_MAJVER
                    635:   APP_MINVER=$AMAYA_MINVER
                    636:   APP_SUBVER=$AMAYA_SUBVER
                    637: fi
1.168     gully     638: 
                    639: if test $APP_SUBVER = 0 ; then
                    640:   APP_VER=$APP_MAJVER.$APP_MINVER
                    641: else
                    642:   APP_VER=$APP_MAJVER.$APP_MINVER.$APP_SUBVER
                    643: fi
1.166     gully     644: 
                    645: # generate a header file with the right version number, so it can be used on windows AND on unix
                    646: APPVERSION_H=../thotlib/internals/h/appversion.h
                    647: echo "#ifndef __APPVERSION_H__" > $APPVERSION_H
                    648: echo "#define __APPVERSION_H__" >> $APPVERSION_H
                    649: echo "#ifdef _WX" >> $APPVERSION_H
                    650: echo "#define APP_MAJVER $AMAYAWX_MAJVER" >> $APPVERSION_H
                    651: echo "#define APP_MINVER $AMAYAWX_MINVER" >> $APPVERSION_H
                    652: echo "#define APP_SUBVER $AMAYAWX_SUBVER" >> $APPVERSION_H
                    653: echo "#else /* _WX */" >> $APPVERSION_H
                    654: echo "#define APP_MAJVER $AMAYA_MAJVER" >> $APPVERSION_H
                    655: echo "#define APP_MINVER $AMAYA_MINVER" >> $APPVERSION_H
                    656: echo "#define APP_SUBVER $AMAYA_SUBVER" >> $APPVERSION_H
                    657: echo "#endif /* _WX */" >> $APPVERSION_H
                    658: echo "#endif /* __APPVERSION_H__ */" >> $APPVERSION_H
1.1       cvs       659: 
                    660: dnl
1.6       cvs       661: dnl We use a special versoin of cextract patched for alignment
                    662: dnl to build the signatures of the modules functions located in f subdirs
                    663: dnl
                    664: CEXTRACT_VER="1.7"
                    665: CEXTRACT_FLAGS="+O"
                    666: 
1.178     gully     667: # Check if debug is enable
                    668: AC_ARG_WITH(debug,              [  --with-debug          compiles Amaya with debuging options (-g) ])
                    669: if test "$with_debug" = "yes" ; then
                    670:   with_debug="yes"
                    671:   CFLAGS="-g"
                    672:   CXXFLAGS="-g"
                    673: else
                    674:   with_debug="no"
                    675:   CFLAGS="-O2"
                    676:   CXXFLAGS="-O2"
                    677: fi
1.7       cvs       678: 
                    679: if test "${CC}" = "gcc" ; then
1.180     gully     680:  CFLAGS="${CFLAGS} -Wall"
1.7       cvs       681:   case "${host}" in
                    682:       *-*-irix5* | *-*irix6* )
                    683:          CFLAGS="${CFLAGS} -fsigned-char"
                    684:       ;;
                    685:   esac
1.14      cvs       686: fi
                    687: 
                    688: if test "$ac_cv_c_const" = "no" ; then
                    689:   CFLAGS="${CFLAGS} -DCONST= "
1.7       cvs       690: fi
                    691: 
1.122     gully     692: 
                    693: # force C mode (-x c)
1.123     gully     694: CFLAGS="${CFLAGS} -x c"
1.122     gully     695: 
                    696: # C++ options (-x c++)
                    697: CXX_OPTIONS="-D__cplusplus"
1.180     gully     698: CXXFLAGS="${CXXFLAGS} -Wall -x c++ ${CXX_OPTIONS}"
1.122     gully     699: 
1.132     gully     700: # setup LDFLAGS
                    701: # on macosx, specific flags must be set to avoid conflicts with allready installed libwww
                    702: # for exemple it's possible to install libwww with fink (fink install libwww)
                    703: # to avoid conflicts, we just force the linker to search for specified amaya path first
1.178     gully     704: if test "$AMAYAOS" = "MACOSX" ; then
1.132     gully     705:   LDFLAGS="-Wl,-search_paths_first"
                    706: else
                    707:   LDFLAGS=""
                    708: fi
1.128     gully     709: 
                    710: dnl
1.61      cvs       711: dnl Check for availability of amaya sources
1.1       cvs       712: dnl
                    713: 
                    714: build_amaya="yes"
                    715: 
                    716: if test "$with_amaya" = "no" ; then
                    717:     build_amaya="no"
1.45      cvs       718: else
                    719:   if test ! -f $srcdir/amaya/Makefile.in ; then
1.1       cvs       720:     AC_MSG_WARN(Amaya browser/editor sources not found, disabling Amaya build !)
                    721:     build_amaya="no"
1.45      cvs       722:   fi
1.1       cvs       723: fi
                    724: 
                    725: dnl
1.50      cvs       726: dnl Check for additionnal packages
1.1       cvs       727: dnl use AC_CONFIG_SUBDIRS to launch configure in the subdir
                    728: dnl
1.93      kahan     729: 
1.143     gully     730: if test "$with_gl" = "yes" -o "$with_mesa" = "yes" ; then
                    731: 
                    732:   # if with_gl is on then test system opengl library (GL & GLU)
                    733:   if test "$with_gl" = "yes" ; then
1.184     carcone   734:     if test "$AMAYAOS" = "LINUX" ; then
1.139     carcone   735:        # setup a list of standard paths int LDFLAGS
                    736:        # for AC_CHECK_LIB library existance checks
1.140     carcone   737:        LIBS_OLD=$LIBS
1.139     carcone   738:        LDFLAGS_OLD=$LDFLAGS
                    739:        LDFLAGS="-L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib"
1.75      cheyroul  740:        AC_MSG_CHECKING([OpenGL])
                    741:        for ac_dir in                           \
1.183     carcone   742:                /usr/include                    \
1.75      cheyroul  743:                /usr/X11R6/include              \
                    744:                /usr/local/include              \
                    745:                ; \
1.80      cheyroul  746:        do  if test -r "$ac_dir/GL/gl.h" ; then
1.143     gully     747:           gl_inc="yes"
                    748:           GL_INC_I="$ac_dir"
                    749:           if test "$ac_dir" != "/usr/include" ; then
                    750:             GL_INCLUDES="-I$ac_dir"
                    751:          fi
                    752:           AC_CHECK_LIB(GL,glBegin,,AC_MSG_ERROR(Cannot find OpenGL library. Please install OpenGL.))
                    753:           AC_MSG_RESULT([yes])
                    754:                  break 
                    755:         fi
                    756:        done
                    757:        
1.80      cheyroul  758:        AC_MSG_CHECKING([GLU])  
1.75      cheyroul  759:        for ac_dir in                           \
1.183     carcone   760:                /usr/include            \
                    761:                /usr/X11R6/include              \
1.75      cheyroul  762:                /usr/local/include              \
                    763:                ; \
1.138     gully     764:        do  if test -r "$ac_dir/GL/glu.h" ; then
1.143     gully     765:           glu_inc="yes"
                    766:           GL_INC_II="$ac_dir"
                    767:           if test "$ac_dir" != "/usr/include" ; then
                    768:             if test "$ac_dir" != "$GL_INC_I" ; then
                    769:               GL_INCLUDES="$GL_INCLUDES -I$ac_dir"
                    770:             fi
                    771:           fi
                    772:           # now test that glu version is >= 1.2
                    773:           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.)))
                    774:           AC_MSG_RESULT([yes])
                    775:                  break 
                    776:         fi
                    777:         done
1.139     carcone   778:        LDFLAGS=$LDFLAGS_OLD
1.140     carcone   779:        LIBS=$LIBS_OLD
1.174     carcone   780: 
1.143     gully     781:     if test "$gl_inc" = "" ; then              
                    782:       AC_MSG_WARN(Opengl headers (gl.h) not found !!)
                    783:       AC_MSG_WARN(Disabling opengl build !)
                    784:       with_gl="no"
                    785:       GL_OPTIONS=      
                    786:       GL_INCLUDES=     
                    787:       GL_LIBRARIES=
                    788:       exit 1;
                    789:     fi
                    790: 
                    791:     if test "$glu_inc" = "" ; then
                    792:       AC_MSG_WARN(Glu headers (glu.h) not found !!)
                    793:       AC_MSG_WARN(Disabling opengl build !)
                    794:   
                    795:       with_gl="no"
                    796:       GL_OPTIONS=      
                    797:       GL_INCLUDES=     
                    798:       GL_LIBRARIES=
                    799:       exit 1;
                    800:     fi
1.184     carcone   801:     fi # AMAYAOS = LINUX
1.174     carcone   802: 
1.187     gully     803:     if test "$AMAYAOS" = "MACOSX" ; then
1.174     carcone   804:       GL_OPTIONS="-D_GL"       
1.183     carcone   805:       GL_INCLUDES="-I/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers/"    
1.174     carcone   806:       GL_LIBRARIES=""
1.183     carcone   807:       GL_BUILDDIR=""
1.174     carcone   808:     else
                    809:       GL_LIBRARIES="-L/usr/lib -L/usr/X11R6/lib -lGL -lGLU"
                    810:       GL_OPTIONS="-D_GL"
1.173     carcone   811:     fi
1.143     gully     812: 
                    813:     AC_SUBST(GL_INCLUDES)
                    814:     AC_SUBST(GL_LIBRARIES)
                    815:   fi # if with_gl
1.139     carcone   816:        
1.187     gully     817:   # ---------- Check for gtkglarea.h only if gtk gui is selected
1.143     gully     818:   if test "$with_gtk" = "yes" ; then
                    819:     AC_MSG_CHECKING([GTKGLAREA])
                    820:     for ac_dir in                              \
1.132     gully     821:                /usr/include/GL                 \
1.75      cheyroul  822:                /usr/include                    \
                    823:                /usr/X11R6/include/GL           \
                    824:                /usr/X11R6/include              \
                    825:                /usr/local/include              \
                    826:                /usr/local/include/GL           \
                    827:                ; \
1.143     gully     828:     do  if test -r "$ac_dir/gtkgl/gtkglarea.h" ; then
                    829:       gtkgl_inc="yes"
                    830:         if test "$ac_dir" != "/usr/include" ; then
                    831:           if test "$ac_dir" != "$GL_INC_II" ; then
                    832:             if test "$ac_dir" != "$GL_INC_I" ; then
                    833:               GTK_GL_INCLUDES="-I$ac_dir"
                    834:             fi
                    835:           fi
                    836:         fi
                    837:         AC_MSG_RESULT([yes])
                    838:         break  
                    839:     fi
                    840:     done
                    841:     GTK_GL_LIBRARIES="-lgtkgl"
                    842: 
                    843:     if test "$gtkgl_inc" = "" ; then
                    844:       AC_MSG_WARN(Gtkglarea headers (gktglarea.h) not found !!)
                    845:       AC_MSG_WARN(Disabling opengl build !)
                    846:       with_gl="no"
                    847:       exit 1;
                    848:     fi
                    849:     AC_SUBST(GTK_GL_INCLUDES)
                    850:     AC_SUBST(GTK_GL_LIBRARIES)
1.187     gully     851:   fi # "$with_gtk" = "yes"
1.132     gully     852: 
1.187     gully     853:   # ---------- Checking for freetype lib (fonts library)
                    854:   if test "$AMAYAOS" = "MACOSX" ; then
1.173     carcone   855:      # we use a static version of freetype lib for mac osx
1.187     gully     856:      # ** search for includes (freetype.h)
                    857:      for ac_dir in               \
                    858:          /Developer/SDKs/MacOSX10.1.5.sdk/usr/X11R6/include/  \
                    859:          /Developer/SDKs/MacOSX10.1.5.sdk/usr/X11R6/include/freetype2/  \
                    860:          /Developer/SDKs/MacOSX10.2.8.sdk/usr/X11R6/include/  \
                    861:          /Developer/SDKs/MacOSX10.2.8.sdk/usr/X11R6/include/freetype2/  \
                    862:          /Developer/SDKs/MacOSX10.3.0.sdk/usr/X11R6/include/  \
                    863:          /Developer/SDKs/MacOSX10.3.0.sdk/usr/X11R6/include/freetype2/  \
1.207     vatton    864:          /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include/  \
                    865:          /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include/freetype2/  \
1.187     gully     866:          /Developer/SDKs/MacOSX10.3.9.sdk/usr/X11R6/include/  \
                    867:          /Developer/SDKs/MacOSX10.3.9.sdk/usr/X11R6/include/freetype2/  \
                    868:          /Developer/SDKs/MacOSX10.4.0.sdk/usr/X11R6/include/  \
1.207     vatton    869:          /Developer/SDKs/MacOSX10.4.0.sdk/usr/X11R6/include/freetype2/  \
1.190     carcone   870:          /opt/local/include/  \
                    871:          /opt/local/include/freetype2/  \
                    872:          /usr/X11R6/include/freetype2/freetype/  \
                    873:         ; \
1.187     gully     874:          do
                    875:          if test -r "$ac_dir/ft2build.h"; then
                    876:             FREETYPE_INCLUDES="${FREETYPE_INCLUDES} -I$ac_dir"
1.191     carcone   877:          fi
                    878:          if test -r "$ac_dir/freetype/config/ftheader.h"; then
                    879:             FREETYPE_INCLUDES="${FREETYPE_INCLUDES} -I$ac_dir"
1.187     gully     880:          fi
                    881:      done
                    882:      # ** search for binary (libfreetype.a)
                    883:      for ac_dir in               \
                    884:          /Developer/SDKs/MacOSX10.1.5.sdk/usr/X11R6/lib/  \
                    885:          /Developer/SDKs/MacOSX10.2.8.sdk/usr/X11R6/lib/  \
                    886:          /Developer/SDKs/MacOSX10.3.0.sdk/usr/X11R6/lib/  \
1.207     vatton    887:          /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/lib/  \
1.187     gully     888:          /Developer/SDKs/MacOSX10.3.9.sdk/usr/X11R6/lib/  \
                    889:          /Developer/SDKs/MacOSX10.4.0.sdk/usr/X11R6/lib/  \
1.190     carcone   890:          /opt/local/lib/  \
                    891:          /usr/X11R6/lib/  \
1.187     gully     892:          ; \
                    893:          do
                    894:          if test -r "$ac_dir/libfreetype.a"; then
1.192     carcone   895:             FREETYPE_LIBRARIES="$ac_dir/libfreetype.a"
1.187     gully     896:             break
                    897:          fi
                    898:      done
                    899:   else # "$AMAYAOS" = "MACOSX"
1.173     carcone   900:      if test ! -f $(which freetype-config) ; then
                    901:        AC_MSG_ERROR(Cannot find freetype library (font load/display routines). Please install it.)
                    902:      fi
                    903:      FREETYPE_INCLUDES=`freetype-config --cflags`
                    904:      FREETYPE_LIBRARIES=`freetype-config --libs`
1.187     gully     905:   fi # "$AMAYAOS" = "MACOSX"
                    906:   AC_SUBST(FREETYPE_INCLUDES)
                    907:   AC_SUBST(FREETYPE_LIBRARIES)
                    908: 
                    909: 
1.143     gully     910: 
1.187     gully     911:   # ----------- START CHECKING XFT
                    912:   # checking for Xft which is only used on GTK version (not wxWidgets)
                    913: if test "$with_gtk" = "yes" ; then
1.143     gully     914: 
                    915:   # checking for xft lib
                    916:   # (not used because xft-config doesn't exist on debian stable)
                    917:   #if test ! -f $(which xft-config) ; then
                    918:   #  AC_MSG_ERROR(Cannot find Xft library. Please install it.)
                    919:   #fi
                    920:   #XFT_INCLUDES=`xft-config --cflags`
                    921:   #XFT_LIBRARIES=`xft-config --libs`
                    922:   #AC_SUBST(XFT_INCLUDES)
                    923:   #AC_SUBST(XFT_LIBRARIES)
                    924: 
                    925:   AC_MSG_CHECKING([Xft])
                    926:   for ac_dir in                        \
1.104     cheyroul  927:                /usr/include                    \
                    928:                /usr/X11R6/include              \
                    929:                /usr/local/include              \
                    930:                /usr/include/X11/Xft            \
                    931:                /usr/X11R6/include/X11/Xft      \
                    932:                /usr/local/include/X11/Xft      \
                    933:                /usr/include/X11/Xft1           \
                    934:                /usr/X11R6/include/X11/Xft1     \
1.113     vatton    935:                /usr/include/Xft2/X11/Xft/      \
1.104     cheyroul  936:                /usr/local/include/X11/Xft1     \
                    937:                /usr/include/X11/Xft2           \
                    938:                /usr/X11R6/include/X11/Xft2     \
                    939:                /usr/local/include/X11/Xft2     \
                    940:                ; \
1.143     gully     941:   do  if test -r "$ac_dir/Xft.h" ; then
                    942:     xft_inc="yes"
                    943:     XFT_INCLUDES="-I$ac_dir"
                    944:     AC_MSG_RESULT([yes])       
                    945:     break      
                    946:   fi
                    947:   done 
                    948:   if test "$xft_inc" = "" ; then
                    949:     AC_MSG_WARN(Xft 2 headers (Xft.h) not found !!)
                    950:     AC_MSG_WARN(Disabling opengl build !)
                    951:       with_gl="no"
                    952:       exit 1;
                    953:   fi
                    954: 
                    955:   AC_MSG_CHECKING([Xft-library])
1.155     carcone   956:  
1.143     gully     957:   for ac_dir in                        \
                    958:                /usr/lib                        \
                    959:                /usr/X11R6/lib                  \
                    960:                /usr/local/lib                  \
                    961:                ; \
                    962:   do  if test -r "$ac_dir/libXft.so" ; then
                    963:     xft_lib="yes"
                    964:     XFT_LIBRARIES="-L$ac_dir -lXft"
                    965:     AC_MSG_RESULT([yes])
                    966:     break      
                    967:   fi
                    968:   done 
                    969:   if test "$xft_lib" = "" ; then
                    970:     AC_MSG_WARN(Xft 2 librarie (libXft.so) not found !!)
                    971:     AC_MSG_WARN(Disabling opengl build !)
                    972:       with_gl="no"
                    973:       exit 1;
                    974:   fi
1.155     carcone   975: 
1.143     gully     976:   AC_SUBST(XFT_INCLUDES)
                    977:   AC_SUBST(XFT_LIBRARIES)
                    978:   # END CHECKING XFT #
1.187     gully     979: fi # "$with_gtk" = "yes"
1.143     gully     980: 
                    981: 
                    982:   AC_MSG_CHECKING([gcc3])      
                    983:   for ac_dir in                        \
1.96      cheyroul  984:                /usr/lib                        \
                    985:                /usr/X11R6/lib          \
                    986:                /usr/local/lib          \
                    987:                ; \
1.143     gully     988:   do  if test -r "$ac_dir/libstdc++.so.5" ; then
                    989:     stdglu_inc="yes"
                    990:     STDCPP_LIBRARIES="-lstdc++"
                    991:     STDCPP_INCLUDES=""
                    992:     AC_MSG_RESULT([yes])       
                    993:     break
                    994:   fi
                    995:   done
1.159     gully     996: 
1.143     gully     997: fi # if with_gl or with_mesa
1.132     gully     998: 
1.208     vatton    999: AC_ARG_ENABLE([svg],
                   1000:        AC_HELP_STRING([--disable-svg],[disable SVG support]),
                   1001:        [case "${enableval}" in
                   1002:          yes) with_svg="yes" ;;
                   1003:          no)  with_svg="no" ;;
                   1004:          *) AC_MSG_ERROR(bad value ${enableval} for --disable-svg) ;;
                   1005:        esac],
                   1006:        [with_svg="yes"])
                   1007: 
1.210     vatton   1008: ##########################Annotations and Bookmarks Support####################
1.208     vatton   1009: dnl
                   1010: dnl annotations are enabled by default
                   1011: dnl
                   1012: AC_ARG_ENABLE([annot],
                   1013:        AC_HELP_STRING([--disable-annot],[disable Annotations support]),
                   1014:        [case "${enableval}" in
                   1015:          yes) with_annot="yes" ;;
                   1016:          no)  with_annot="no" ;;
                   1017:          *) AC_MSG_ERROR(bad value ${enableval} for --disable-annot) ;;
                   1018:        esac],
                   1019:        [with_annot="yes"])
1.93      kahan    1020: 
                   1021: dnl
1.116     kahan    1022: dnl The bookmarks support is disabled by default
1.108     kahan    1023: dnl
1.208     vatton   1024: AC_ARG_ENABLE([bookmarks],
                   1025:        AC_HELP_STRING([--enable-bookmarks],[enable experimental bookmark support]),
                   1026:        [case "${enableval}" in
1.210     vatton   1027:          yes) with_bookmarks="yes" ;;
1.208     vatton   1028:          no)  with_bookmarks="no" ;;
                   1029:          *) AC_MSG_ERROR(bad value ${enableval} for --enable-bookmarks) ;;
                   1030:        esac],
                   1031:        [with_bookmarks="no"])
1.108     kahan    1032: 
1.210     vatton   1033: #if the directory containing Annotlib
                   1034: #and Bookmarks is not present,
                   1035: #don't try to build them
                   1036: if test ! -f $srcdir/annotlib/Makefile.in ; then
                   1037:        AC_MSG_WARN(Annotation makefile not found !!)
                   1038:        AC_MSG_WARN(Disabling Annotations build !)
                   1039:        with_annot="no"
                   1040:        with_bookmarks="no"
                   1041: fi
                   1042: 
                   1043: if test "$with_bookmarks" = "yes" -a "$with_annot" = "no" ; then
                   1044:    AC_MSG_WARN(Disabling bookmarks build as annotations are disabled !)
                   1045:    with_bookmarks="no"
                   1046: fi
                   1047: 
                   1048: #annot and bookmarks need Redland
                   1049: if test "$with_annot" = "yes" -o "$with_bookmarks" = "yes" ; then
                   1050:        with_redland="yes"
                   1051: else
                   1052:        with_redland="no"
                   1053: fi
                   1054: 
                   1055: AC_ARG_ENABLE([system-redland],
                   1056:        AC_HELP_STRING([--enable-system-redland],[try the redland RDF system library]),
                   1057:        [case "${enableval}" in
                   1058:          yes) with_system_redland="yes";;
                   1059:          no)  with_system_redland="no" ;;
                   1060:          *) AC_MSG_ERROR(bad value ${enableval} for --enable-system-redland) ;;
                   1061:        esac],
                   1062:        [with_system_redland="no"])
                   1063: 
                   1064: #If Redland is needed and we are asked
                   1065: #to use the system library, check if is present
                   1066: if test "$with_redland" = "yes" -a "$with_system_redland" = "yes" ; then
                   1067:     # check to see if we have a redland library
                   1068:     AC_PATH_PROG([REDLAND_CONFIG],[redland-config])
                   1069: 
                   1070:     if test "$REDLAND_CONFIG" = "" ; then
                   1071:        AC_MSG_WARN(Not using system-provided redland library)
                   1072:        with_system_redland="no"
                   1073:     else
                   1074: 
                   1075:        AC_MSG_CHECKING(system redland version)
                   1076:        redland_min_version=0.9.16
                   1077:        REDLAND_VERSION=`$REDLAND_CONFIG --version`
                   1078:        redland_version_dec=`echo $REDLAND_VERSION | awk -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
                   1079:        redland_min_version_dec=`echo $redland_min_version | awk -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
                   1080:        if test $redland_version_dec -lt $redland_min_version_dec; then
                   1081:                AC_MSG_RESULT(no - found version $REDLAND_VERSION and minimal version is $redland_min_version)
                   1082:                with_system_redland="no"
                   1083:        else
                   1084:                AC_MSG_RESULT(yes - found version $REDLAND_VERSION)
                   1085:                AC_MSG_CHECKING(checking for redland headers)
                   1086:                dnl  We should use awk here and remove the -I from the following line
                   1087:                dnl REDLAND_HEADERS=`$REDLAND_CONFIG --cflags`
                   1088:                REDLAND_HEADERS=""
                   1089:                if test -e "/usr/include/redland.h" ; then
                   1090:                        REDLAND_HEADERS="/usr/include";
                   1091:                elif test -e "/usr/local/include/redland.h" ; then
                   1092:                        REDLAND_HEADERS="/usr/local/include";
                   1093:                fi
                   1094:                if test $REDLAND_HEADERS != ""; then
                   1095:                        AC_MSG_RESULT(yes - have development version)
                   1096:                else
                   1097:                        AC_MSG_RESULT(no - no development version)
                   1098:                        with_system_redland="no"
                   1099:                fi
                   1100:        fi
                   1101:     fi
                   1102: fi
                   1103: 
                   1104: #if we use the builtin library,
                   1105: #check it is present
                   1106: if test "$with_redland" = "yes" -a "$with_system_redland" != "yes" \
                   1107:        -a ! -d "$srcdir/../redland" ; then
                   1108:        AC_MSG_WARN(Redland source dir not found !!)
                   1109:        AC_MSG_WARN(Disabling redland build !)
                   1110:        MAKEREDLAND=['#']
                   1111:        with_redland="no"
                   1112: fi
                   1113: 
                   1114: #At this point, we know everything about Redland,
                   1115: #so either set the variables we will need later,
                   1116: #ot disable Annotations and Bookmarks
                   1117: if test "$with_redland" = "yes" ; then
                   1118:        AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -DAM_REDLAND"
                   1119:        if test "$with_system_redland" != "yes" ; then
                   1120:                AMAYA_RAPTOR_SRC="amaya_comp_redland"
1.215   ! vatton   1121:                AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -I\$(THOTDIR)/../redland/librdf -I\$(THOTDIR)/../redland/raptor "
        !          1122:                AMAYA_RAPTOR_LIBS="../redland/librdf/.libs/librdf.a ../redland/raptor/.libs/libraptor.a"
        !          1123:                AMAYA_RAPTOR_INCLUDES="-I\$(THOTDIR)/../redland/librdf -I\$(THOTDIR)/../redland/raptor"
1.210     vatton   1124:        else
                   1125:                MAKEREDLAND=['#']
                   1126:                AMAYA_RAPTOR_SRC=
                   1127:                redland_includes=`$REDLAND_CONFIG --cflags`
                   1128:          redland_libs=`$REDLAND_CONFIG --libs`
                   1129:                AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS"
                   1130:                AMAYA_ANNOT_INCLUDES="$redland_includes -I\$(THOTDIR)/thotlib/include"
                   1131:                AMAYA_ANNOT_EXTRA_LIBS="$redland_libs"
                   1132:                AMAYA_RAPTOR_INCLUDES="$redland_includes"
                   1133:        fi
                   1134: else
                   1135:        with_annot="no"
                   1136:        with_bookmarks="no"
                   1137: fi
                   1138: 
                   1139: #Bookmarks require some specific flags
                   1140: if test "$with_bookmarks" = "yes" ; then
                   1141:        ANNOTLIB_COMPILE_BM=
                   1142:        AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -DBOOKMARKS"
                   1143: else
                   1144:        ANNOTLIB_COMPILE_BM=['#']
                   1145: fi
                   1146: 
                   1147: ###################End of Annotations and Bookmarks Support####################
                   1148: 
                   1149: 
1.108     kahan    1150: dnl
1.194     vatton   1151: dnl The templates support is enabled by default
1.186     tollenae 1152: dnl
1.208     vatton   1153: AC_ARG_ENABLE([templates],
                   1154:        AC_HELP_STRING([--disable-templates],[disable experimental templates support]),
                   1155:        [case "${enableval}" in
                   1156:          yes) with_templates="yes" ;;
                   1157:          no)  with_templates="no" ;;
                   1158:          *) AC_MSG_ERROR(bad value ${enableval} for --disable-templates) ;;
                   1159:        esac],
                   1160:        [with_templates="yes"])
                   1161: 
                   1162: if test "$with_templates" = yes -a "$with_wx" != "yes"; then
                   1163:     AC_MSG_WARN(Templates are only available in WX version !!)
                   1164:     AC_MSG_WARN(Disabling templates)
                   1165:     with_templates="no"
                   1166: fi
1.197     vatton   1167: 
1.208     vatton   1168: if test "$with_templates" = "yes" ; then
1.194     vatton   1169:     TEMPLATES_OPTIONS="-DTEMPLATES"
1.186     tollenae 1170: else
1.194     vatton   1171:     TEMPLATES_OPTIONS=""
1.186     tollenae 1172: fi
                   1173: 
1.194     vatton   1174: 
1.186     tollenae 1175: dnl
1.70      kahan    1176: dnl Generic XML support enabled by default
                   1177: dnl
1.208     vatton   1178: AC_ARG_ENABLE([generic-xml],
                   1179:        AC_HELP_STRING([--disable-generic-xml],[disable Generic XML support]),
                   1180:        [case "${enableval}" in
                   1181:          yes) with_generic_xml="yes" ;;
                   1182:          no)  with_generic_xml="no" ;;
                   1183:          *) AC_MSG_ERROR(bad value ${enableval} for --disable-generic-xml) ;;
                   1184:        esac],
                   1185:        [with_generic_xml="yes"])
                   1186: 
1.209     vatton   1187: if test "$with_generic_xml" = "yes" ; then
                   1188:  GENERIC_XML_OPTIONS="-DXML_GENERIC"
                   1189: else
                   1190:  GENERIC_XML_OPTIONS=""
                   1191: fi
                   1192: 
1.88      kirschpi 1193: dnl
1.181     gully    1194: dnl WebDAV support enabled by default
1.88      kirschpi 1195: dnl
1.181     gully    1196: AC_ARG_WITH(dav,            [  --with-dav              enable WebDAV support (experimental) ])
1.88      kirschpi 1197: if test "$with_dav" = "" ; then
1.181     gully    1198:   with_dav="yes"
                   1199: fi
1.88      kirschpi 1200: if test "$with_dav" = "yes" ; then
                   1201:    DAV_OPTIONS=-DDAV
1.90      kirschpi 1202:    DAVDIR="davlib"
                   1203:    LIBDAV="libwwwdav"
                   1204:    WITHDAV="--with-dav" 
                   1205:    WWWDAV="-lwwwdav" 
1.88      kirschpi 1206: else
                   1207:    with_dav="no"
                   1208:    DAV_OPTIONS=""
1.90      kirschpi 1209:    DAVDIR=""
                   1210:    LIBDAV=""
                   1211:    WITHDAV="" 
                   1212:    WWWDAV="" 
1.88      kirschpi 1213: fi
                   1214: 
1.70      kahan    1215: 
1.19      cvs      1216: if test "$build_amaya" = "yes" ; then
1.43      cvs      1217:     if test ! -f $srcdir/../libwww/Makefile.in ; then
1.50      cvs      1218:        AC_MSG_WARN(libwww sources not found !!)
                   1219:        AC_MSG_WARN(Disabling Amaya build !)
                   1220:        build_amaya="no"
1.1       cvs      1221:     fi
1.8       cvs      1222: 
                   1223:     if test ! -f $srcdir/amaya/MathML.S ; then
1.10      cvs      1224:        if test "$with_math" = "yes" ; then
1.8       cvs      1225:            AC_MSG_WARN(MathML sources not found !!)
1.26      cvs      1226:            AC_MSG_WARN(Disabling Math build !)
1.10      cvs      1227:            with_math="no"
                   1228:            MATH_OPTIONS=
1.8       cvs      1229:        fi
                   1230:     fi
1.26      cvs      1231: 
1.68      vatton   1232:     if test ! -f $srcdir/amaya/SVG.S ; then
                   1233:        if test "$with_svg" = "yes" ; then
                   1234:            AC_MSG_WARN(SVG sources not found !!)
                   1235:            AC_MSG_WARN(Disabling SVG build !)
                   1236:            with_svg="no"
                   1237:            SVG_OPTIONS=
1.26      cvs      1238:        fi
                   1239:     fi
                   1240: 
1.88      kirschpi 1241:     if test ! -f $srcdir/davlib/Makefile.in ; then
                   1242:        if test "$with_dav" = "yes" ; then
                   1243:            AC_MSG_WARN(WebDAV makefile not found !!)
                   1244:            AC_MSG_WARN(Disabling WebDAV build !)
                   1245:            with_dav="no"
1.90      kirschpi 1246:             DAVDIR=""
                   1247:             LIBDAV=""
                   1248:             WITHDAV="" 
                   1249:             WWWDAV="" 
1.88      kirschpi 1250:        fi
                   1251:     fi
                   1252:    
                   1253: 
1.1       cvs      1254: fi
                   1255: 
                   1256: dnl
                   1257: dnl The options for each library or binary
                   1258: dnl
                   1259: 
1.211     vatton   1260: THOT_OPTIONS="$OS_OPTIONS $GTK_OPTIONS $GL_OPTIONS $WX_OPTIONS"
                   1261: 
                   1262: AMAYA_OPTIONS="$OS_OPTIONS $MATH_OPTIONS $SVG_OPTIONS $GENERIC_XML_OPTIONS $GTK_OPTIONS $GL_OPTIONS $WX_OPTIONS $TEMPLATES_OPTIONS"
                   1263: 
1.179     gully    1264: if test "$with_debug" = "yes" ; then
1.211     vatton   1265:   AMAYA_OPTIONS="$AMAYA_OPTIONS -DAMAYA_DEBUG"
1.179     gully    1266: fi
1.101     kahan    1267: 
1.158     gully    1268: if test "$with_wx" = "yes" ; then
                   1269:   IMGLIBS=""
                   1270: else
                   1271:   IMGLIBS="-ljpeg -lpng -lz"
                   1272: fi
1.132     gully    1273: 
1.131     gully    1274: EXTRA_INCLUDES=
                   1275: 
                   1276: # check for malloc.h
                   1277: # on macosx, this file is not at the right place
1.187     gully    1278: if test "$AMAYAOS" = "MACOSX" ; then
1.173     carcone  1279: for ac_dir in               \
                   1280:   /Developer/SDKs/MacOSX10.1.5.sdk/usr/include/objc/   \
                   1281:   /Developer/SDKs/MacOSX10.1.5.sdk/usr/include/sys/    \
                   1282:   /Developer/SDKs/MacOSX10.2.8.sdk/usr/include/objc/   \
                   1283:   /Developer/SDKs/MacOSX10.2.8.sdk/usr/include/sys/    \
                   1284:   /Developer/SDKs/MacOSX10.3.0.sdk/usr/include/objc/   \
                   1285:   /Developer/SDKs/MacOSX10.3.0.sdk/usr/include/sys/    \
                   1286:   ; \
                   1287: do
                   1288:   if test -r "$ac_dir/malloc.h"; then
                   1289:     echo "found malloc.h"
                   1290:     EXTRA_INCLUDES="${EXTRA_INCLUDES} -I$ac_dir"
                   1291:     break
                   1292:   fi
                   1293: done
1.187     gully    1294: else # "$AMAYAOS" = "MACOSX"
1.131     gully    1295: for ac_dir in               \
                   1296:   /usr/include/malloc/      \
                   1297:   /sw/include/malloc/       \
                   1298:   ; \
                   1299: do
                   1300:   if test -r "$ac_dir/malloc.h"; then
                   1301:     echo "found malloc.h"
                   1302:     EXTRA_INCLUDES="${EXTRA_INCLUDES} -I$ac_dir"
                   1303:     break
                   1304:   fi
                   1305: done
1.187     gully    1306: fi # "$AMAYAOS" = "MACOSX"
1.1       cvs      1307: 
                   1308: dnl
                   1309: dnl Set up the PATHs needed
                   1310: dnl
                   1311: 
                   1312: API="\$(THOTDIR)/thotlib/include"
                   1313: VAR="\$(THOTDIR)/thotlib/internals/var"
                   1314: INCL="\$(THOTDIR)/thotlib/internals/h"
                   1315: FUNC="\$(THOTDIR)/thotlib/internals/f"
                   1316: 
                   1317: dnl
                   1318: dnl Set up the include variables.
                   1319: dnl
                   1320: 
1.61      cvs      1321: THOTINCLUDES="-I${API} -I${VAR} -I${INCL} -I${FUNC} ${JPEGINCL} ${PNGINCL}"
1.58      cvs      1322: APIINCLUDES=-I${API}
                   1323:  
                   1324: if test "${VPATHOPT}" = "" ; then
1.1       cvs      1325:        VPATHOPT="VPATH"
                   1326: fi
                   1327: 
1.206     vatton   1328: AMAYA_INSTALLDIR="Amaya-${APP_VER}"
                   1329: 
1.1       cvs      1330: dnl
                   1331: dnl Exports the current values of the variables.
                   1332: dnl
                   1333: 
1.206     vatton   1334: AC_SUBST(AMAYA_INSTALLDIR)
                   1335: 
1.166     gully    1336: AC_SUBST(APP_MAJVER)
                   1337: AC_SUBST(APP_MINVER)
                   1338: AC_SUBST(APP_SUBVER)
                   1339: AC_SUBST(APP_VER)
1.6       cvs      1340: AC_SUBST(CEXTRACT_VER)
                   1341: AC_SUBST(CEXTRACT_FLAGS)
1.1       cvs      1342: 
                   1343: AC_SUBST(THOTINCLUDES)
                   1344: AC_SUBST(APIINCLUDES)
                   1345: AC_SUBST(VPATHOPT)
                   1346: 
1.63      vatton   1347: AC_SUBST(GTK_OPTIONS)
1.1       cvs      1348: AC_SUBST(THOT_OPTIONS)
                   1349: AC_SUBST(AMAYA_OPTIONS)
1.48      cvs      1350: AC_SUBST(AMAYA_ANNOT_OPTIONS)
1.110     kahan    1351: AC_SUBST(AMAYA_ANNOT_INCLUDES)
1.116     kahan    1352: AC_SUBST(AMAYA_ANNOT_EXTRA_LIBS)
1.1       cvs      1353: AC_SUBST(IMGLIBS)
1.131     gully    1354: AC_SUBST(EXTRA_INCLUDES)
1.90      kirschpi 1355: 
                   1356: AC_SUBST(DAVDIR)
                   1357: AC_SUBST(LIBDAV)
                   1358: AC_SUBST(WITHDAV)
                   1359: AC_SUBST(WWWDAV)
1.1       cvs      1360: 
1.109     kahan    1361: AC_SUBST(MAKEREDLAND)
1.108     kahan    1362: AC_SUBST(ANNOTLIB_COMPILE_BM)
1.109     kahan    1363: AC_SUBST(AMAYA_RAPTOR_SRC)
1.93      kahan    1364: AC_SUBST(AMAYA_RAPTOR_LIBS)
                   1365: AC_SUBST(AMAYA_RAPTOR_INCLUDES)
                   1366: AC_SUBST(MAKE_LIBWWW_RDF_PARSER)
                   1367: AC_SUBST(LIBWWW_RDF_PARSER)
                   1368: 
                   1369: AC_SUBST(SUBDIRS)
                   1370: 
1.1       cvs      1371: dnl
1.48      cvs      1372: dnl Include the option Makefile.xxx fragment according to the configure options
1.1       cvs      1373: dnl
                   1374: 
1.211     vatton   1375: www_frag=$srcdir/amaya/Makefile.libwww
                   1376: AC_SUBST_FILE(www_frag)
1.1       cvs      1377: 
1.50      cvs      1378: if test "$with_math" = "no" ; then
                   1379:     math_frag=/dev/null
1.8       cvs      1380: else
1.50      cvs      1381:     math_frag=$srcdir/amaya/Makefile.math
1.8       cvs      1382: fi
1.211     vatton   1383: AC_SUBST_FILE(math_frag)
1.8       cvs      1384: 
1.68      vatton   1385: if test "$with_svg" = "no" ; then
                   1386:     svg_frag=/dev/null
1.26      cvs      1387: else
1.68      vatton   1388:     svg_frag=$srcdir/amaya/Makefile.svg
1.26      cvs      1389: fi
1.211     vatton   1390: AC_SUBST_FILE(svg_frag)
1.26      cvs      1391: 
1.47      cvs      1392: if test "$with_annot" = "yes" ; then
1.48      cvs      1393:     annot_frag=$srcdir/annotlib/Makefile.annot
1.47      cvs      1394: else
                   1395:     annot_frag=/dev/null
                   1396: fi
1.211     vatton   1397: AC_SUBST_FILE(annot_frag)
1.47      cvs      1398: 
1.88      kirschpi 1399: if test "$with_dav" = "yes" ; then
                   1400:     dav_frag=$srcdir/davlib/Makefile.dav
1.188     vatton   1401: else
                   1402:     dav_frag=/dev/null
1.88      kirschpi 1403: fi
1.211     vatton   1404: AC_SUBST_FILE(dav_frag)
1.16      cvs      1405: 
1.186     tollenae 1406: if test "$with_templates" = "yes" ; then
                   1407:     templates_frag=$srcdir/amaya/Makefile.templates
1.188     vatton   1408: else
                   1409:     templates_frag=/dev/null
1.186     tollenae 1410: fi
1.211     vatton   1411: AC_SUBST_FILE(templates_frag)
1.186     tollenae 1412: 
1.1       cvs      1413: dnl  ***************************************************************
                   1414: dnl
                   1415: dnl      FINAL STEP : PRODUCE ALL THE MAKEFILES AND CONFIG FILES
                   1416: dnl
                   1417: dnl  ***************************************************************
                   1418: 
                   1419: EXTRA_MAKEFILE_IN=
1.2       cvs      1420: make_output="Makefile Options.orig:Options.in tools/Makefile \
1.1       cvs      1421:        libjpeg/Makefile libpng/Makefile libpng/zlib/Makefile \
1.2       cvs      1422:        tools/mkdep/Makefile \
1.1       cvs      1423:        tools/cextract-1.7/Makefile thotlib/Makefile \
1.193     gully    1424:        thotlib/include/Makefile batch/Makefile \
                   1425:        script_install:../batch/script_install.in \
                   1426:        script_install_gnomekde:../batch/script_install_gnomekde.in \
                   1427:        script_install_macosxbundle:../batch/script_install_macosxbundle.in \
                   1428:        script_uninstall:../batch/script_uninstall.in"
1.1       cvs      1429: 
                   1430: if test "$build_amaya" = "yes" ; then
1.2       cvs      1431: 
1.208     vatton   1432:     make_output="$make_output amaya/Makefile"
1.2       cvs      1433:     EXTRA_MAKEFILE_IN="$srcdir/amaya/Makefile.in \
1.93      kahan    1434:     $srcdir/amaya/Makefile.libwww"
1.27      cvs      1435: 
1.48      cvs      1436:     if test "$with_annot" = "yes" ; then
                   1437:        make_output="$make_output annotlib/Makefile"
                   1438:        EXTRA_MAKEFILE_IN="$srcdir/annotlib/Makefile.in"
                   1439:     fi
1.88      kirschpi 1440: 
                   1441:     if test "$with_dav" = "yes" ; then
                   1442:        make_output="$make_output davlib/Makefile"
                   1443:        EXTRA_MAKEFILE_IN="$srcdir/davlib/Makefile.in"
                   1444:     fi
                   1445: 
1.205     vatton   1446:     if test "$with_wx" = "yes" -a "enable_system_wx" = "yes" ; then
1.162     gully    1447:        EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN $WX_SRCDIR/Makefile.in $WX_SRCDIR/configure.in"
                   1448:     fi
                   1449: 
1.1       cvs      1450: fi
                   1451: 
                   1452: AC_SUBST(EXTRA_MAKEFILE_IN)
1.6       cvs      1453: AC_OUTPUT($make_output , [
                   1454: dnl
                   1455: dnl This fragment of shell code is executed after the
                   1456: dnl Makefile(s) dump ...
                   1457: dnl
                   1458: 
                   1459: echo timestamp > stamp-h
                   1460: 
                   1461: dnl
                   1462: dnl Check for an upgrade in the Options numbers
                   1463: dnl
                   1464: 
                   1465: if test -f Options ; then
                   1466:    oldversion=`grep Version Options`
                   1467:    newversion=`grep Version Options.orig`
                   1468:    if test "$oldversion" != "$newversion" ; then
                   1469:        echo WARNING : Options files have changed, old options saved to Options.old
                   1470:        cp Options Options.old
                   1471:        cp Options.orig Options
                   1472:        exit 1
                   1473:    fi
                   1474: fi
1.193     gully    1475: if test -f script_install ; then
                   1476:    chmod a+x script_install
                   1477: fi
                   1478: if test -f script_install_gnomekde ; then
                   1479:    chmod a+x script_install_gnomekde
                   1480: fi
                   1481: if test -f script_install_macosxbundle ; then
                   1482:    chmod a+x script_install_macosxbundle
                   1483: fi
                   1484: if test -f script_uninstall ; then
                   1485:    chmod a+x script_uninstall
                   1486: fi
1.6       cvs      1487: ])
1.1       cvs      1488: 
                   1489: if test "$build_amaya" = "yes" ; then
1.164     gully    1490:     echo Amaya $AMAYA_VER configured
1.50      cvs      1491:     echo Amaya configured with libWWW
1.10      cvs      1492:     if test "$with_math" = "yes" ; then
                   1493:        echo Amaya configured with Math support
1.26      cvs      1494:     fi
1.68      vatton   1495:     if test "$with_svg" = "yes" ; then
                   1496:        echo Amaya configured with SVG support
1.47      cvs      1497:     fi
                   1498:     if test "$with_annot" = "yes" ; then
                   1499:        echo Amaya configured with Annotations support
1.70      kahan    1500:     fi
1.109     kahan    1501:     if test "$with_redland" = "yes" ; then
1.116     kahan    1502:        if test "$with_system_redland" = "no" ; then
                   1503:          echo Amaya configured with the Redland RDF library \(local source\)
                   1504:        else
                   1505:          echo Amaya configured with the Redland RDF library \(system\)
                   1506:        fi
1.108     kahan    1507:     fi
                   1508:     if test "$with_bookmarks" = "yes" ; then
                   1509:        echo Amaya configured with bookmarks support \(experimental\)
1.93      kahan    1510:     fi
1.186     tollenae 1511:     if test "$with_templates" = "yes" ; then
                   1512:        echo Amaya configured with templates support \(experimental\)
                   1513:     fi
1.70      kahan    1514:     if test "$with_generic_xml" = "yes" ; then
1.195     vatton   1515:        echo Amaya configured with generic XML support
1.70      kahan    1516:     fi
1.195     vatton   1517:     echo Amaya configured with internationalization support
1.75      cheyroul 1518:     if test "$with_gl" = "yes" ; then
1.143     gully    1519:        echo Amaya configured with OpenGL Canvas Rendering \(System library\) \(experimental\)
                   1520:     fi
                   1521:     if test "$with_mesa" = "yes" ; then
1.181     gully    1522:        echo Amaya configured with OpenGL Canvas Rendering \(MesaLib\)
1.88      kirschpi 1523:     fi
                   1524:     if test "$with_dav" = "yes" ; then
1.181     gully    1525:        echo Amaya configured with WebDAV support
1.1       cvs      1526:     fi
1.5       cvs      1527: fi
                   1528: 
1.158     gully    1529: if test "$with_wx" = "no" ; then
                   1530:   if test "$no_graphic" = "yes" ; then
                   1531:       echo "Amaya configured with system graphic libraries (libjpeg, libpng, zlib)"
                   1532:   else
                   1533:       echo "Amaya configured with static graphic libraries (libjpeg, libpng, zlib)"
                   1534:       if test "$with_gtk" = "yes" -o "$with_gl" = "yes" ; then
                   1535:         echo "  N.B. This option may not work in your platform. If Amaya crashes"
                   1536:         echo "  when opening a PNG file. Recompile it using the system libraries."
                   1537:       fi
                   1538:   fi
1.107     kahan    1539: fi
                   1540: 
                   1541: if test "$with_gtk" = "yes" ; then
1.67      vatton   1542:     echo "Amaya configured with GTK"
1.120     gully    1543: fi
                   1544: 
1.124     gully    1545: if test "$with_wx" = "yes" ; then
1.136     gully    1546:   if test "$with_wxdebug" = "yes" ; then
1.181     gully    1547:     echo "Amaya configured with wxWidgets {srcdir=$WX_SRCDIR} (debug)"
1.136     gully    1548:   else
1.181     gully    1549:     echo "Amaya configured with wxWidgets {srcdir=$WX_SRCDIR}"
1.136     gully    1550:   fi
1.1       cvs      1551: fi
                   1552: 
1.136     gully    1553: 
1.107     kahan    1554: echo ""
1.78      vatton   1555: echo "Now type \"make\" (GNU make preferably) to build the binaries"
1.107     kahan    1556: echo ""
1.120     gully    1557: 

Webmaster