Annotation of Amaya/configure.in, revision 1.206

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

Webmaster