Annotation of Amaya/configure.in, revision 1.248

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.216     vatton     13: AC_PREREQ(2.54)
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.228     kia        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 - 9.x needs : GL, GLX, GLU, freetype2, wxGLCanvas
1.85      vatton    207: dnl GL is for opengl
1.175     gully     208: dnl GlX is for XWindow integration
1.85      vatton    209: dnl GLU is for tesselation algortihms (until we extract it from this lib)
                    210: dnl (tesselation is used for polygons with holes in it...)
1.175     gully     211: dnl freetype2 is for text drawing (fonts ...)
                    212: dnl wxGLCanvas is for integration of opengl in wxWidgets (WX)
1.231     vatton    213: 
                    214: with_wx="yes"
1.240     kia       215: 
                    216: AC_ARG_ENABLE([system-wx],
                    217:     AC_HELP_STRING([--enable-system-wx],[try the wxWidgets system library]),
                    218:     [case "${enableval}" in
                    219:       yes) with_system_wx="yes";;
                    220:       no)  with_system_wx="no" ;;
                    221:       *) AC_MSG_ERROR(bad value ${enableval} for --enable-system-wx) ;;
                    222:     esac],
                    223:     [with_system_wx="no"])
                    224: 
                    225: 
1.231     vatton    226: 
1.211     vatton    227: AC_ARG_WITH([gl],
1.218     vatton    228:    AC_HELP_STRING([--with-gl],[enable canvas with hardware OpenGL implementation]),
1.210     vatton    229:    [case "${withval}" in
                    230:          yes) with_gl="yes" ;;
                    231:          no)  with_gl="no" ;;
                    232:          *) AC_MSG_ERROR(bad value ${withval} for --with-gl) ;;
                    233:        esac],
                    234:        [with_gl="no"])
1.85      vatton    235: 
1.143     gully     236: # check for mesa library (OpenGL)
1.218     vatton    237: AC_ARG_WITH(MESA,              [  --with-mesa             enable canvas with software OpenGL implementation (default) ])
1.143     gully     238: if test "$with_mesa" = "" ; then
1.208     vatton    239:   with_mesa="no"
1.143     gully     240: fi
                    241: 
1.124     gully     242: 
1.176     gully     243: # mesa (software) gl implementation is default with wx (hardware gl implem can be choosen with --with-gl option)
1.231     vatton    244: if test "$AMAYAOS" = "MACOSX" ; then
                    245:   with_mesa="no"
                    246:   with_gl="yes"
                    247: else
1.176     gully     248:   if test "$with_gl" = "no" ; then
                    249:     with_mesa="yes"
1.175     gully     250:   fi
                    251: fi
                    252: 
1.136     gully     253: # check if wxWidgets debug is enable
1.155     carcone   254: AC_ARG_WITH(wxdebug,              [  --with-wxdebug          compiles wxWidgets with debuging options ])
1.136     gully     255: if test "$with_wxdebug" = "yes" ; then
                    256:   with_wxdebug="yes"
                    257: else
                    258:   with_wxdebug="no"
                    259: fi
                    260: 
1.153     gully     261: # it is possible to specify wxWidgets library path,
                    262: # usefull for developpers who want to compile amaya with different wxWidgets version
1.155     carcone   263: AC_ARG_WITH(wxsrcdir, [  --with-wxsrcdir=...     compiles Amaya with a specific wxWidgets sources path ])
1.153     gully     264: if test "$with_wxsrcdir" = "" ; then
                    265:   with_wxsrcdir="../../wxWidgets"
                    266: fi
                    267: 
                    268: 
1.152     gully     269: # setup the AMAYAGUI variable used to identify used GUI when 'make install' is called
1.231     vatton    270: AMAYAGUI="wx"
1.152     gully     271: AC_SUBST(AMAYAGUI)
                    272: 
                    273: 
1.143     gully     274: if test "$with_mesa" = "yes" ; then
                    275:   # --------- compile Mesa library (opengl) --------------- #
                    276:   # check that sources of Mesa exists
                    277:   if test ! -f ../../Mesa/Makefile ; then
1.231     vatton    278:     GL_BUILDDIR=""
                    279:     GL_INCLUDES="-I/usr/include"
                    280:     GL_LIBRARIES="-Wl,-rpath,usr/lib -L/usr/lib -lGL -lGLU"
                    281:     echo "---> Use system Mesa library"
                    282:   else
                    283:     OLDDIR=`pwd`
                    284:     GL_BUILDDIR="${OLDDIR}/Mesa"
                    285:     if test ! -d "$GL_BUILDDIR" ; then
                    286:       echo "---> Install Mesa library into ${GL_BUILDDIR}"
                    287:       mkdir -p ${GL_BUILDDIR}
                    288:       cp -r ../../Mesa/* ${GL_BUILDDIR}
                    289:       echo "---> Install Mesa library into ${GL_BUILDDIR} - DONE"
                    290:     fi
                    291:     # this is the flags used to build amaya with OpenGL
                    292:     GL_INCLUDES="-I${GL_BUILDDIR}/include"
                    293:     GL_LIBRARIES="-Wl,-rpath,${GL_BUILDDIR}/lib -L${GL_BUILDDIR}/lib -lGL -lGLU"
1.214     vatton    294:   fi
1.143     gully     295:   GL_OPTIONS="-D_GL"
1.152     gully     296:   AC_SUBST(GL_BUILDDIR)
1.143     gully     297:   AC_SUBST(GL_INCLUDES)
                    298:   AC_SUBST(GL_LIBRARIES)
                    299: fi
                    300: 
1.240     kia       301: if test "$with_system_wx" = "yes"; then
1.231     vatton    302:   AC_PATH_PROG(WXCONFIG, wx-config)
                    303:   if test -z "$WXCONFIG"; then
1.240     kia       304:     with_system_wx="no"
1.135     gully     305:   fi
1.231     vatton    306: fi
1.205     vatton    307:   
1.240     kia       308: if test "$with_system_wx" != "yes"; then
1.231     vatton    309:   # WX_SRCDIR is better to understand the code than with_wxsrcdir variable
                    310:   if test ! -f $with_wxsrcdir/Makefile.in ; then
                    311:     $with_wxsrcdir = ../../wxWidgets
                    312:   fi
                    313:   cd $with_wxsrcdir
                    314:   WX_SRCDIR=`pwd`
                    315:   cd -
                    316:   AC_SUBST(WX_SRCDIR)
                    317: 
                    318:   # check that sources of wxWidgets exists
                    319:   if test ! -f $WX_SRCDIR/Makefile.in ; then
                    320:     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 !)
                    321:   fi
1.135     gully     322: 
1.152     gully     323:   # --------- configure wxWidgets library --------------- #
1.135     gully     324:   echo "---> Configuring wxWidgets library."
                    325:   OLDDIR=`pwd`
1.149     gully     326:   # create the build directory (debug or release)
                    327:   if test $with_wxdebug = yes ; then
1.152     gully     328:     WX_BUILDDIR="wxWidgets_DEBUG"
1.149     gully     329:   else
1.152     gully     330:     WX_BUILDDIR="wxWidgets_RELEASE"
1.149     gully     331:   fi
1.205     vatton    332: 
1.152     gully     333:   mkdir -p $WX_BUILDDIR
                    334:   cd $WX_BUILDDIR
                    335:   AC_SUBST(WX_BUILDDIR)
1.136     gully     336: 
1.149     gully     337:   # remove old configure cached options
1.135     gully     338:   rm -f configarg.cache
1.136     gully     339: 
                    340:   # setup configure options
1.158     gully     341:   
                    342:   # disable unused wx features
                    343:   #   --disable-htmlhelp
                    344:   #   --disable-html
                    345:   #   --disable-docview
                    346:   #   --disable-mdi
                    347:   #   --disable-mdidoc
                    348:   #   --disable-sound
1.225     vatton    349:   #   --disable-richtext
1.185     gully     350:   #   --disable-backtrace # to avoid the buggy popup when an assert occurs
1.229     kia       351:   WXCONFIGURE_TUNNING_OPTION="--disable-printarch --disable-htmlhelp --disable-html --disable-richtext --disable-docview --disable-mdidoc --disable-sound --disable-backtrace"
1.158     gully     352:   
1.178     gully     353:   if test "$AMAYAOS" = "LINUX" ; then
1.135     gully     354:     # LINUX
1.145     gully     355:     #   --enable-gtk2           use GTK+ 2.0 if available (EXPERIMENTAL)
1.158     gully     356:     #   --disable-shared        create only static library (.a)
1.145     gully     357:     #   --enable-unicode        compile wxString with Unicode support
                    358:     #   --with-gtk              use GTK+
                    359:     #   --with-opengl           use OpenGL (or Mesa)
1.232     vatton    360:     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  --with-libxpm=builtin $WXCONFIGURE_TUNNING_OPTION"
1.135     gully     361:   fi
1.178     gully     362:   if test "$AMAYAOS" = "MACOSX" ; then
1.135     gully     363:     # MACOSX
1.233     vatton    364:     WXCONFIGURE_OPTION="--with-opengl --disable-shared --disable-tga --enable-unicode --with-libpng=builtin --with-libjpeg=builtin"
1.136     gully     365:   fi
                    366:   if test $with_wxdebug = yes ; then
1.141     gully     367:     WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-debug"
1.143     gully     368:     # SG: I've disabled other debug options because the lib has bugs when using these flags \
                    369:     # (maybe because these flags are not often used by wxWidgets developpers)
1.141     gully     370:     # WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-debug --enable-debug_cntxt --enable-debug_gdb --enable-debug_info --enable-debug_flag --enable-mem_tracing"
1.145     gully     371:   else
                    372:     WXCONFIGURE_OPTION="$WXCONFIGURE_OPTION --enable-optimise"
1.135     gully     373:   fi
1.143     gully     374: 
1.136     gully     375:   # launch the configure
1.143     gully     376:   if test "$with_mesa" = "yes" ; then
                    377:     # use internal OpenGL (mesa) libraries
1.165     gully     378:     $WX_SRCDIR/configure CFLAGS="-I${GL_BUILDDIR}/include" CXXFLAGS="-I${GL_BUILDDIR}/include" CPPFLAGS="-I${GL_BUILDDIR}/include" $WXCONFIGURE_OPTION
1.158     gully     379:     #../$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     380:     if test $? != 0 ; then
                    381:       AC_MSG_ERROR(A problem occurs durring wxWidgets library configuration. Please fix the problem and try again.)
                    382:     fi
1.143     gully     383:   else
                    384:     # use OpenGL system libraries
1.165     gully     385:     $WX_SRCDIR/configure $WXCONFIGURE_OPTION    
1.143     gully     386:   fi
1.152     gully     387:   cd $OLDDIR
1.135     gully     388:   echo "---> Configuring wxWidgets library. - DONE"
1.143     gully     389: 
1.135     gully     390:   # --------- configuring wxWidgets paths --------------- #
1.152     gully     391:   WXCONFIG=$WX_BUILDDIR/wx-config
1.134     gully     392:   # check that wx-config exists
1.135     gully     393:   if test ! -f $WXCONFIG ; then
1.143     gully     394:     AC_MSG_ERROR(Cannot find wx-config. Please download wxWidgets (http://www.wxwidgets.org/))
1.134     gully     395:   fi
1.144     gully     396: 
                    397:   # setup include paths  
1.165     gully     398:   # "-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    399:   WX_INCLUDES="-I$WX_SRCDIR/src/png -I$WX_SRCDIR/src/jpeg -I$WX_SRCDIR/src/tiff"
                    400:   BUILDWXWIDGETS="wxwidgets"
                    401:   AC_SUBST(BUILDWXWIDGETS)
                    402: 
1.240     kia       403: fi #!$with_system_wx
1.205     vatton    404: 
1.231     vatton    405: WX_INCLUDES="$WX_INCLUDES `$WXCONFIG --cxxflags`"
                    406: AC_SUBST(WX_INCLUDES)
1.205     vatton    407: 
1.231     vatton    408: # setup libraries paths
                    409: WX_LIBRARIES=""
                    410: WX_LIBRARIES_EXTRA_PARAM=""
                    411: WXCONFIG_LIBS_PARAM="aui,xrc,adv,core,xml,net"
                    412: # GL is used ?
                    413: if test "$with_gl" = "yes" -o "$with_mesa" = "yes" ; then
                    414:   WXCONFIG_LIBS_PARAM="${WXCONFIG_LIBS_PARAM},gl"
                    415:   # SG: this is a mistery why wx-config doesn't add these needed option on macosx
                    416:   if test "$AMAYAOS" = "MACOSX" ; then
                    417:     WX_LIBRARIES_EXTRA_PARAM="-framework OpenGL -framework AGL"
1.124     gully     418:   fi
1.231     vatton    419: fi
                    420: if test "$AMAYAOS" = "MACOSX" ; then
1.170     carcone   421:    WXCONFIG_LIBS_PARAM="${WXCONFIG_LIBS_PARAM},html"
1.231     vatton    422: fi
1.170     carcone   423: 
1.231     vatton    424: WX_LIBRARIES="`$WXCONFIG --libs $WXCONFIG_LIBS_PARAM` ${WX_LIBRARIES_EXTRA_PARAM}"
                    425: AC_SUBST(WX_LIBRARIES)
                    426: WX_LINKDEPS="`$WXCONFIG --linkdeps`"
                    427: AC_SUBST(WX_LINKDEPS)
                    428: WX_OPTIONS="-D_WX"
                    429: # --------- configuring wxWidgets paths - DONE --------------- #
1.124     gully     430: 
1.63      vatton    431: if test "${GCC}" = "yes"; then
1.231     vatton    432:   CPP="${CPP} -x c"
1.63      vatton    433: fi
                    434: 
1.1       cvs       435: dnl  ***************************************************************
                    436: dnl
1.61      cvs       437: dnl    SPECIFIC STUFF : CONFIGURATION OPTIONS FOR AMAYA
1.1       cvs       438: dnl
                    439: dnl  ***************************************************************
                    440: 
1.158     gully     441: # Do not care with libpng or libjpeg with wx version because we use the wxwidgets one.
1.76      vatton    442: 
1.166     gully     443: # the wx version
1.242     vatton    444: AMAYAWX_MAJVER=11
1.246     vatton    445: AMAYAWX_MINVER=2
1.201     vatton    446: AMAYAWX_SUBVER=0
1.231     vatton    447: APP_MAJVER=$AMAYAWX_MAJVER
                    448: APP_MINVER=$AMAYAWX_MINVER
                    449: APP_SUBVER=$AMAYAWX_SUBVER
1.168     gully     450: 
1.247     vatton    451: if test "$APP_SUBVER" = "0" ; then
1.168     gully     452:   APP_VER=$APP_MAJVER.$APP_MINVER
                    453: else
                    454:   APP_VER=$APP_MAJVER.$APP_MINVER.$APP_SUBVER
                    455: fi
1.166     gully     456: 
                    457: # generate a header file with the right version number, so it can be used on windows AND on unix
                    458: APPVERSION_H=../thotlib/internals/h/appversion.h
                    459: echo "#ifndef __APPVERSION_H__" > $APPVERSION_H
                    460: echo "#define __APPVERSION_H__" >> $APPVERSION_H
                    461: echo "#define APP_MAJVER $AMAYAWX_MAJVER" >> $APPVERSION_H
                    462: echo "#define APP_MINVER $AMAYAWX_MINVER" >> $APPVERSION_H
                    463: echo "#define APP_SUBVER $AMAYAWX_SUBVER" >> $APPVERSION_H
                    464: echo "#endif /* __APPVERSION_H__ */" >> $APPVERSION_H
1.1       cvs       465: 
                    466: dnl
1.6       cvs       467: dnl We use a special versoin of cextract patched for alignment
                    468: dnl to build the signatures of the modules functions located in f subdirs
                    469: dnl
                    470: CEXTRACT_VER="1.7"
                    471: CEXTRACT_FLAGS="+O"
                    472: 
1.178     gully     473: # Check if debug is enable
1.218     vatton    474: AC_ARG_WITH(debug,              [  --with-debug            compiles Amaya with debuging options (-g) ])
1.244     vatton    475: if test "$with_debug" = "yes" ; then
                    476:   with_debug="yes"
                    477:   CFLAGS="-g"
                    478:   CXXFLAGS="-g"
                    479: else
                    480:   with_debug="no"
                    481:   CFLAGS="-O2"
                    482:   CXXFLAGS="-O2"
                    483: fi
1.7       cvs       484: 
                    485: if test "${CC}" = "gcc" ; then
1.243     vatton    486:   CFLAGS="${CFLAGS} -Wall"
1.7       cvs       487:   case "${host}" in
                    488:       *-*-irix5* | *-*irix6* )
                    489:          CFLAGS="${CFLAGS} -fsigned-char"
                    490:       ;;
                    491:   esac
1.14      cvs       492: fi
                    493: 
                    494: if test "$ac_cv_c_const" = "no" ; then
                    495:   CFLAGS="${CFLAGS} -DCONST= "
1.7       cvs       496: fi
                    497: 
1.243     vatton    498: # force C mode (-x c)
                    499: #CFLAGS="${CFLAGS} -Wall"
                    500: CFLAGS="${CFLAGS} -x c"
                    501: 
                    502: # C++ options (-x c++)
                    503: #CXXFLAGS="${CXXFLAGS} -Wall"
                    504: CXX_OPTIONS="-D__cplusplus"
                    505: CXXFLAGS="${CXXFLAGS} -Wall -x c++ ${CXX_OPTIONS}"
1.122     gully     506: 
1.132     gully     507: # setup LDFLAGS
                    508: # on macosx, specific flags must be set to avoid conflicts with allready installed libwww
                    509: # for exemple it's possible to install libwww with fink (fink install libwww)
                    510: # to avoid conflicts, we just force the linker to search for specified amaya path first
1.178     gully     511: if test "$AMAYAOS" = "MACOSX" ; then
1.132     gully     512:   LDFLAGS="-Wl,-search_paths_first"
                    513: else
                    514:   LDFLAGS=""
                    515: fi
1.128     gully     516: 
                    517: dnl
1.61      cvs       518: dnl Check for availability of amaya sources
1.1       cvs       519: dnl
                    520: 
                    521: build_amaya="yes"
                    522: 
                    523: if test "$with_amaya" = "no" ; then
                    524:     build_amaya="no"
1.45      cvs       525: else
                    526:   if test ! -f $srcdir/amaya/Makefile.in ; then
1.1       cvs       527:     AC_MSG_WARN(Amaya browser/editor sources not found, disabling Amaya build !)
                    528:     build_amaya="no"
1.45      cvs       529:   fi
1.1       cvs       530: fi
                    531: 
                    532: dnl
1.50      cvs       533: dnl Check for additionnal packages
1.1       cvs       534: dnl use AC_CONFIG_SUBDIRS to launch configure in the subdir
                    535: dnl
1.93      kahan     536: 
1.143     gully     537: if test "$with_gl" = "yes" -o "$with_mesa" = "yes" ; then
                    538: 
                    539:   # if with_gl is on then test system opengl library (GL & GLU)
                    540:   if test "$with_gl" = "yes" ; then
1.184     carcone   541:     if test "$AMAYAOS" = "LINUX" ; then
1.139     carcone   542:        # setup a list of standard paths int LDFLAGS
                    543:        # for AC_CHECK_LIB library existance checks
1.140     carcone   544:        LIBS_OLD=$LIBS
1.139     carcone   545:        LDFLAGS_OLD=$LDFLAGS
                    546:        LDFLAGS="-L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib"
1.75      cheyroul  547:        AC_MSG_CHECKING([OpenGL])
                    548:        for ac_dir in                           \
1.183     carcone   549:                /usr/include                    \
1.75      cheyroul  550:                /usr/X11R6/include              \
                    551:                /usr/local/include              \
                    552:                ; \
1.80      cheyroul  553:        do  if test -r "$ac_dir/GL/gl.h" ; then
1.143     gully     554:           gl_inc="yes"
                    555:           GL_INC_I="$ac_dir"
                    556:           if test "$ac_dir" != "/usr/include" ; then
                    557:             GL_INCLUDES="-I$ac_dir"
                    558:          fi
                    559:           AC_CHECK_LIB(GL,glBegin,,AC_MSG_ERROR(Cannot find OpenGL library. Please install OpenGL.))
                    560:           AC_MSG_RESULT([yes])
                    561:                  break 
                    562:         fi
                    563:        done
                    564:        
1.80      cheyroul  565:        AC_MSG_CHECKING([GLU])  
1.75      cheyroul  566:        for ac_dir in                           \
1.183     carcone   567:                /usr/include            \
                    568:                /usr/X11R6/include              \
1.75      cheyroul  569:                /usr/local/include              \
                    570:                ; \
1.138     gully     571:        do  if test -r "$ac_dir/GL/glu.h" ; then
1.143     gully     572:           glu_inc="yes"
                    573:           GL_INC_II="$ac_dir"
                    574:           if test "$ac_dir" != "/usr/include" ; then
                    575:             if test "$ac_dir" != "$GL_INC_I" ; then
                    576:               GL_INCLUDES="$GL_INCLUDES -I$ac_dir"
                    577:             fi
                    578:           fi
                    579:           # now test that glu version is >= 1.2
                    580:           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.)))
                    581:           AC_MSG_RESULT([yes])
                    582:                  break 
                    583:         fi
                    584:         done
1.139     carcone   585:        LDFLAGS=$LDFLAGS_OLD
1.140     carcone   586:        LIBS=$LIBS_OLD
1.174     carcone   587: 
1.143     gully     588:     if test "$gl_inc" = "" ; then              
                    589:       AC_MSG_WARN(Opengl headers (gl.h) not found !!)
                    590:       AC_MSG_WARN(Disabling opengl build !)
                    591:       with_gl="no"
                    592:       GL_OPTIONS=      
                    593:       GL_INCLUDES=     
                    594:       GL_LIBRARIES=
                    595:       exit 1;
                    596:     fi
                    597: 
                    598:     if test "$glu_inc" = "" ; then
                    599:       AC_MSG_WARN(Glu headers (glu.h) not found !!)
                    600:       AC_MSG_WARN(Disabling opengl build !)
                    601:   
                    602:       with_gl="no"
                    603:       GL_OPTIONS=      
                    604:       GL_INCLUDES=     
                    605:       GL_LIBRARIES=
                    606:       exit 1;
                    607:     fi
1.184     carcone   608:     fi # AMAYAOS = LINUX
1.174     carcone   609: 
1.187     gully     610:     if test "$AMAYAOS" = "MACOSX" ; then
1.174     carcone   611:       GL_OPTIONS="-D_GL"       
1.183     carcone   612:       GL_INCLUDES="-I/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers/"    
1.174     carcone   613:       GL_LIBRARIES=""
1.183     carcone   614:       GL_BUILDDIR=""
1.174     carcone   615:     else
                    616:       GL_LIBRARIES="-L/usr/lib -L/usr/X11R6/lib -lGL -lGLU"
                    617:       GL_OPTIONS="-D_GL"
1.173     carcone   618:     fi
1.143     gully     619: 
                    620:     AC_SUBST(GL_INCLUDES)
                    621:     AC_SUBST(GL_LIBRARIES)
                    622:   fi # if with_gl
1.139     carcone   623:        
1.187     gully     624:   # ---------- Checking for freetype lib (fonts library)
                    625:   if test "$AMAYAOS" = "MACOSX" ; then
1.173     carcone   626:      # we use a static version of freetype lib for mac osx
1.187     gully     627:      # ** search for includes (freetype.h)
                    628:      for ac_dir in               \
                    629:          /Developer/SDKs/MacOSX10.1.5.sdk/usr/X11R6/include/  \
                    630:          /Developer/SDKs/MacOSX10.1.5.sdk/usr/X11R6/include/freetype2/  \
                    631:          /Developer/SDKs/MacOSX10.2.8.sdk/usr/X11R6/include/  \
                    632:          /Developer/SDKs/MacOSX10.2.8.sdk/usr/X11R6/include/freetype2/  \
                    633:          /Developer/SDKs/MacOSX10.3.0.sdk/usr/X11R6/include/  \
                    634:          /Developer/SDKs/MacOSX10.3.0.sdk/usr/X11R6/include/freetype2/  \
1.207     vatton    635:          /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include/  \
                    636:          /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include/freetype2/  \
1.187     gully     637:          /Developer/SDKs/MacOSX10.3.9.sdk/usr/X11R6/include/  \
                    638:          /Developer/SDKs/MacOSX10.3.9.sdk/usr/X11R6/include/freetype2/  \
                    639:          /Developer/SDKs/MacOSX10.4.0.sdk/usr/X11R6/include/  \
1.207     vatton    640:          /Developer/SDKs/MacOSX10.4.0.sdk/usr/X11R6/include/freetype2/  \
1.190     carcone   641:          /opt/local/include/  \
                    642:          /opt/local/include/freetype2/  \
                    643:          /usr/X11R6/include/freetype2/freetype/  \
                    644:         ; \
1.187     gully     645:          do
                    646:          if test -r "$ac_dir/ft2build.h"; then
                    647:             FREETYPE_INCLUDES="${FREETYPE_INCLUDES} -I$ac_dir"
1.191     carcone   648:          fi
                    649:          if test -r "$ac_dir/freetype/config/ftheader.h"; then
                    650:             FREETYPE_INCLUDES="${FREETYPE_INCLUDES} -I$ac_dir"
1.187     gully     651:          fi
                    652:      done
                    653:      # ** search for binary (libfreetype.a)
                    654:      for ac_dir in               \
                    655:          /Developer/SDKs/MacOSX10.1.5.sdk/usr/X11R6/lib/  \
                    656:          /Developer/SDKs/MacOSX10.2.8.sdk/usr/X11R6/lib/  \
                    657:          /Developer/SDKs/MacOSX10.3.0.sdk/usr/X11R6/lib/  \
1.207     vatton    658:          /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/lib/  \
1.187     gully     659:          /Developer/SDKs/MacOSX10.3.9.sdk/usr/X11R6/lib/  \
                    660:          /Developer/SDKs/MacOSX10.4.0.sdk/usr/X11R6/lib/  \
1.190     carcone   661:          /opt/local/lib/  \
                    662:          /usr/X11R6/lib/  \
1.187     gully     663:          ; \
                    664:          do
                    665:          if test -r "$ac_dir/libfreetype.a"; then
1.192     carcone   666:             FREETYPE_LIBRARIES="$ac_dir/libfreetype.a"
1.187     gully     667:             break
                    668:          fi
                    669:      done
                    670:   else # "$AMAYAOS" = "MACOSX"
1.173     carcone   671:      if test ! -f $(which freetype-config) ; then
                    672:        AC_MSG_ERROR(Cannot find freetype library (font load/display routines). Please install it.)
                    673:      fi
                    674:      FREETYPE_INCLUDES=`freetype-config --cflags`
                    675:      FREETYPE_LIBRARIES=`freetype-config --libs`
1.187     gully     676:   fi # "$AMAYAOS" = "MACOSX"
                    677:   AC_SUBST(FREETYPE_INCLUDES)
                    678:   AC_SUBST(FREETYPE_LIBRARIES)
                    679: 
                    680: 
1.143     gully     681:   AC_MSG_CHECKING([gcc3])      
                    682:   for ac_dir in                        \
1.96      cheyroul  683:                /usr/lib                        \
                    684:                /usr/X11R6/lib          \
                    685:                /usr/local/lib          \
                    686:                ; \
1.143     gully     687:   do  if test -r "$ac_dir/libstdc++.so.5" ; then
                    688:     stdglu_inc="yes"
                    689:     STDCPP_LIBRARIES="-lstdc++"
                    690:     STDCPP_INCLUDES=""
                    691:     AC_MSG_RESULT([yes])       
                    692:     break
                    693:   fi
                    694:   done
1.159     gully     695: 
1.143     gully     696: fi # if with_gl or with_mesa
1.132     gully     697: 
1.208     vatton    698: AC_ARG_ENABLE([svg],
                    699:        AC_HELP_STRING([--disable-svg],[disable SVG support]),
                    700:        [case "${enableval}" in
                    701:          yes) with_svg="yes" ;;
                    702:          no)  with_svg="no" ;;
                    703:          *) AC_MSG_ERROR(bad value ${enableval} for --disable-svg) ;;
                    704:        esac],
                    705:        [with_svg="yes"])
                    706: 
1.241     vatton    707: #################### LibWWW and WebDAV Support ################################
                    708: 
                    709: AC_ARG_ENABLE([system-libwww],
                    710:        AC_HELP_STRING([--enable-system-libwww],[try the libWWW system library]),
                    711:        [case "${enableval}" in
                    712:          yes) with_system_libwww="yes" ;;
                    713:          no)  with_system_libwww="no" ;;
                    714:          *) AC_MSG_ERROR([bad value ${enableval} for --enable-system-libwww]) ;;
                    715:        esac],
                    716:        [with_system_libwww="no"])
                    717: 
                    718: if test "$with_system_libwww" = "yes" ; then
                    719:     # check to see if we have a libWWW library
                    720:     AC_PATH_PROG([LIBWWW_CONFIG],[libwww-config])
                    721: 
                    722:     if test "$LIBWWW_CONFIG" = "" ; then
                    723:                AC_MSG_WARN(Not using system-provided libWWW, falling back to the builtin version.)
                    724:                with_system_libwww="no"
                    725:     fi
                    726: fi
                    727: 
                    728: dnl
                    729: dnl WebDAV support enabled by default
                    730: dnl
                    731: AC_ARG_WITH(dav,
                    732:   AC_HELP_STRING([--with-dav],[enable WebDAV support (default)]),
                    733:   [case "${withval}" in
                    734:          yes) with_dav="yes" ;;
                    735:          no)  with_dav="no" ;;
                    736:          *) AC_MSG_ERROR(bad value ${withval} for --with-dav) ;;
                    737:        esac],
                    738:        [with_dav="yes"])
                    739: 
                    740: # If DAV is enabled, check if the source code is present
                    741: if test ! -f $srcdir/davlib/Makefile.in ; then
                    742:        if test "$with_dav" = "yes" ; then
                    743:            AC_MSG_WARN(WebDAV makefile not found, disabling WebDAV build)
                    744:            with_dav="no"
                    745:        fi
                    746: fi
                    747: 
                    748: if test "$with_dav" = "yes" ; then
                    749:    WITHDAV="--with-dav"
                    750: else
                    751:    WITHDAV="--without-dav"
                    752: fi
                    753: 
                    754: if test "$enable_system_libwww" != "yes" ; then
                    755:   # configure libwww
                    756:   CURRENT_PATH="`pwd`"
                    757:   mkdir libwww
                    758:   cd libwww && \
                    759:     $CURRENT_PATH/../../libwww/configure \
                    760:     --build=$build_alias --host=$host_alias --target=$target_alias \
                    761:     --disable-shared \
                    762:     $WITHDAV \
                    763:     --with-zlib && \
                    764:     echo "libwww is configured" ; \
                    765:     echo "patching wwwconf.h because appkit.h do not compile on macos, and it seems that appkit.h is not used in amaya" ; \
                    766:     cp wwwconf.h wwwconf.h.orig ; \
                    767:     sed -e "s/\(\#define HAVE_APPKIT_APPKIT_H 1\)/\/* \1 *\//" \
                    768:                        wwwconf.h.orig > wwwconf.h ; \
                    769:     echo "wwwconf.h patched !" ; \
                    770:   cd ..
                    771:   chmod +x libwww/libwww-config
                    772:   BUILDLIBWWW="libwww"
                    773:   LIBWWW_CONFIG="libwww/libwww-config"
1.248   ! vatton    774:   LIBWWW_LDFLAGS="-L$CURRENT_PATH/libwww/Library/src/.libs -L$CURRENT_PATH/libwww/modules/md5/.libs $CURRENT_PATH/libwww/modules/expat/.libs/libexpat.a `$LIBWWW_CONFIG --libs`"
1.241     vatton    775:   LIBWWW_CFLAGS="-I$CURRENT_PATH/../../libwww/Library/src -I$CURRENT_PATH/libwww"
                    776: else
                    777:   LIBWWW_CFLAGS="`$LIBWWW_CONFIG --cflags`"
                    778:   LIBWWW_LDFLAGS="`$LIBWWW_CONFIG --libs`"
                    779: 
                    780:   if test "$with_dav" = "yes" ; then
                    781:     AC_CHECK_LIB([wwwdav],
                    782:                                 [toto],
                    783:                                 [LIBWWW_LDFLAGS="$LIBWWW_LDFLAGS -lwwwdav"],
                    784:                                 [AC_MSG_WARN([libwwwdav is not available, disabling WebDAV]); with_dav="no"])
                    785:   fi
                    786: fi
                    787: 
                    788: if test "$with_dav" = "yes" ; then
                    789:    DAV_OPTIONS=-DDAV
                    790:    DAVDIR="davlib"
                    791:    LIBWWW_LDFLAGS="$LIBWWW_LDFLAGS -lwwwdav"
                    792: else
                    793:    with_dav="no"
                    794:    DAV_OPTIONS=""
                    795:    DAVDIR=""
                    796: fi
                    797: 
                    798: AC_SUBST(BUILDLIBWWW)
                    799: 
                    800: AC_SUBST(LIBWWW_CFLAGS)
                    801: AC_SUBST(LIBWWW_LDFLAGS)
                    802: 
                    803: AC_SUBST(DAVDIR)
                    804: AC_SUBST(LIBDAV)
                    805: AC_SUBST(WWWDAV)
                    806: 
                    807: ############# end of LibWWW and WebDAV Support ################################
                    808: 
1.218     vatton    809: ##########################Annotations Support####################
1.208     vatton    810: dnl
                    811: dnl annotations are enabled by default
                    812: dnl
                    813: AC_ARG_ENABLE([annot],
                    814:        AC_HELP_STRING([--disable-annot],[disable Annotations support]),
                    815:        [case "${enableval}" in
                    816:          yes) with_annot="yes" ;;
                    817:          no)  with_annot="no" ;;
                    818:          *) AC_MSG_ERROR(bad value ${enableval} for --disable-annot) ;;
                    819:        esac],
                    820:        [with_annot="yes"])
1.93      kahan     821: 
1.108     kahan     822: 
1.237     vatton    823: #annot need Raptor
1.218     vatton    824: if test "$with_annot" = "yes" ; then
1.237     vatton    825:        with_raptor="yes"
1.210     vatton    826: else
1.237     vatton    827:        with_raptor="no"
1.210     vatton    828: fi
                    829: 
1.237     vatton    830: AC_ARG_ENABLE([system-raptor],
                    831:        AC_HELP_STRING([--enable-system-raptor],[try the raptor RDF system library]),
1.210     vatton    832:        [case "${enableval}" in
1.237     vatton    833:          yes) with_system_raptor="yes";;
                    834:          no)  with_system_raptor="no" ;;
                    835:          *) AC_MSG_ERROR(bad value ${enableval} for --enable-system-raptor) ;;
1.210     vatton    836:        esac],
1.237     vatton    837:        [with_system_raptor="no"])
1.210     vatton    838: 
1.237     vatton    839: #If Raptor is needed and we are asked
1.210     vatton    840: #to use the system library, check if is present
1.237     vatton    841: if test "$with_raptor" = "yes" -a "$with_system_raptor" = "yes" ; then
                    842:     # check to see if we have a raptor library
                    843:     AC_PATH_PROG([RAPTOR_CONFIG],[raptor-config])
                    844: 
                    845:     if test "$RAPTOR_CONFIG" = "" ; then
1.239     vatton    846:       AC_MSG_WARN(Not using system-provided Raptor library)
                    847:       with_system_raptor="no"
1.210     vatton    848:     fi
                    849: fi
                    850: 
                    851: #if we use the builtin library,
                    852: #check it is present
1.237     vatton    853: if test "$with_raptor" = "yes" -a "$with_system_raptor" != "yes" \
                    854:        -a ! -d "$srcdir/../redland/raptor" ; then
                    855:        AC_MSG_WARN(Raptor source dir not found !!)
                    856:        AC_MSG_WARN(Disabling raptor build !)
                    857:        with_raptor="no"
1.210     vatton    858: fi
                    859: 
1.237     vatton    860: #At this point, we know everything about Raptor,
1.210     vatton    861: #so either set the variables we will need later,
1.218     vatton    862: #or disable Annotations
1.237     vatton    863: if test "$with_raptor" = "yes" ; then
                    864:        if test "$with_system_raptor" != "yes" ; then
                    865:                AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS -I\$(THOTDIR)/../redland/raptor "
1.238     vatton    866:                AMAYA_RAPTOR_LIBS="../raptor/.libs/libraptor.a"
1.237     vatton    867:                AMAYA_RAPTOR_INCLUDES="-I\$(THOTDIR)/../redland/raptor"
                    868:                BUILDRAPTOR="raptor"
                    869:                CURRENTPATH="`pwd`"
                    870:                mkdir $BUILDRAPTOR
                    871:                cd $BUILDRAPTOR &&
                    872:                        CC="$CC" CXX="$CXX" \
                    873:                        CPPFLAGS="-I$CURRENTPATH/../../libwww/modules/expat/lib" \
                    874:                        LDFLAGS="-L$CURRENTPATH/libwww/modules/expat -L$CURRENTPATH/libwww/modules/expat/.libs" \
                    875:                        ../../../redland/raptor/configure \
                    876:                        --build=$build_alias --host=$host_alias --target=$target_alias \
                    877:                        --disable-shared \
                    878:                        --with-xml-parser=expat \
                    879:                        --with-www=none
                    880:                        $ECHO "Raptor is configured"
                    881:                        $ECHO "Patching the raptor_config.h file to avoid including glib2-0"
                    882:                        $CP raptor_config.h raptor_config.h.orig
                    883:                        $SED "s/\(\#define HAVE_G_UTF8_NORMALIZE 1\)/\/* \1 *\//" \
                    884:                                raptor_config.h.orig > raptor_config.h
                    885:                        $RM raptor_config.h.orig
                    886:                        $ECHO "Raptor is patched"
                    887:                cd ..
1.210     vatton    888:        else
1.237     vatton    889:                raptor_includes=`$RAPTOR_CONFIG --cflags`
1.239     vatton    890:                raptor_libs="-lraptor"
                    891:                BUILDRAPTOR=""
1.210     vatton    892:                AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS"
1.237     vatton    893:                AMAYA_ANNOT_INCLUDES="$raptor_includes -I\$(THOTDIR)/thotlib/include"
                    894:                AMAYA_ANNOT_EXTRA_LIBS="$raptor_libs"
                    895:                AMAYA_RAPTOR_INCLUDES="$raptor_includes"
1.210     vatton    896:        fi
                    897: else
                    898:        with_annot="no"
                    899: fi
                    900: 
1.218     vatton    901: ANNOTLIB_COMPILE_BM=['#']
1.210     vatton    902: 
1.237     vatton    903: AC_SUBST(BUILDRAPTOR)
                    904: 
                    905: AC_SUBST(AMAYA_ANNOT_OPTIONS)
                    906: AC_SUBST(AMAYA_ANNOT_INCLUDES)
                    907: AC_SUBST(AMAYA_ANNOT_EXTRA_LIBS)
                    908: 
                    909: AC_SUBST(ANNOTLIB_COMPILE_BM)
                    910: AC_SUBST(AMAYA_RAPTOR_LIBS)
                    911: AC_SUBST(AMAYA_RAPTOR_INCLUDES)
                    912: 
1.218     vatton    913: ###################End of Annotations Support####################
1.210     vatton    914: 
                    915: 
1.108     kahan     916: dnl
1.194     vatton    917: dnl The templates support is enabled by default
1.186     tollenae  918: dnl
1.208     vatton    919: AC_ARG_ENABLE([templates],
                    920:        AC_HELP_STRING([--disable-templates],[disable experimental templates support]),
                    921:        [case "${enableval}" in
                    922:          yes) with_templates="yes" ;;
                    923:          no)  with_templates="no" ;;
                    924:          *) AC_MSG_ERROR(bad value ${enableval} for --disable-templates) ;;
                    925:        esac],
                    926:        [with_templates="yes"])
                    927: 
                    928: if test "$with_templates" = yes -a "$with_wx" != "yes"; then
                    929:     AC_MSG_WARN(Templates are only available in WX version !!)
                    930:     AC_MSG_WARN(Disabling templates)
                    931:     with_templates="no"
                    932: fi
1.197     vatton    933: 
1.208     vatton    934: if test "$with_templates" = "yes" ; then
1.194     vatton    935:     TEMPLATES_OPTIONS="-DTEMPLATES"
1.186     tollenae  936: else
1.194     vatton    937:     TEMPLATES_OPTIONS=""
1.186     tollenae  938: fi
                    939: 
1.194     vatton    940: 
1.186     tollenae  941: dnl
1.70      kahan     942: dnl Generic XML support enabled by default
                    943: dnl
1.208     vatton    944: AC_ARG_ENABLE([generic-xml],
                    945:        AC_HELP_STRING([--disable-generic-xml],[disable Generic XML support]),
                    946:        [case "${enableval}" in
                    947:          yes) with_generic_xml="yes" ;;
                    948:          no)  with_generic_xml="no" ;;
                    949:          *) AC_MSG_ERROR(bad value ${enableval} for --disable-generic-xml) ;;
                    950:        esac],
                    951:        [with_generic_xml="yes"])
                    952: 
1.209     vatton    953: if test "$with_generic_xml" = "yes" ; then
                    954:  GENERIC_XML_OPTIONS="-DXML_GENERIC"
                    955: else
                    956:  GENERIC_XML_OPTIONS=""
                    957: fi
                    958: 
1.70      kahan     959: 
1.19      cvs       960: if test "$build_amaya" = "yes" ; then
1.8       cvs       961:     if test ! -f $srcdir/amaya/MathML.S ; then
1.10      cvs       962:        if test "$with_math" = "yes" ; then
1.8       cvs       963:            AC_MSG_WARN(MathML sources not found !!)
1.26      cvs       964:            AC_MSG_WARN(Disabling Math build !)
1.10      cvs       965:            with_math="no"
                    966:            MATH_OPTIONS=
1.8       cvs       967:        fi
                    968:     fi
1.26      cvs       969: 
1.68      vatton    970:     if test ! -f $srcdir/amaya/SVG.S ; then
                    971:        if test "$with_svg" = "yes" ; then
                    972:            AC_MSG_WARN(SVG sources not found !!)
                    973:            AC_MSG_WARN(Disabling SVG build !)
                    974:            with_svg="no"
                    975:            SVG_OPTIONS=
1.26      cvs       976:        fi
                    977:     fi
                    978: 
1.1       cvs       979: fi
                    980: 
                    981: dnl
                    982: dnl The options for each library or binary
                    983: dnl
1.231     vatton    984: THOT_OPTIONS="$OS_OPTIONS $GL_OPTIONS $WX_OPTIONS"
1.1       cvs       985: 
1.231     vatton    986: AMAYA_OPTIONS="$OS_OPTIONS $MATH_OPTIONS $SVG_OPTIONS $GENERIC_XML_OPTIONS $GL_OPTIONS $WX_OPTIONS $TEMPLATES_OPTIONS"
1.211     vatton    987: 
1.179     gully     988: if test "$with_debug" = "yes" ; then
1.211     vatton    989:   AMAYA_OPTIONS="$AMAYA_OPTIONS -DAMAYA_DEBUG"
1.179     gully     990: fi
1.101     kahan     991: 
1.158     gully     992: if test "$with_wx" = "yes" ; then
                    993:   IMGLIBS=""
                    994: else
                    995:   IMGLIBS="-ljpeg -lpng -lz"
                    996: fi
1.132     gully     997: 
1.131     gully     998: EXTRA_INCLUDES=
                    999: 
                   1000: # check for malloc.h
                   1001: # on macosx, this file is not at the right place
1.187     gully    1002: if test "$AMAYAOS" = "MACOSX" ; then
1.173     carcone  1003: for ac_dir in               \
                   1004:   /Developer/SDKs/MacOSX10.1.5.sdk/usr/include/objc/   \
                   1005:   /Developer/SDKs/MacOSX10.1.5.sdk/usr/include/sys/    \
                   1006:   /Developer/SDKs/MacOSX10.2.8.sdk/usr/include/objc/   \
                   1007:   /Developer/SDKs/MacOSX10.2.8.sdk/usr/include/sys/    \
                   1008:   /Developer/SDKs/MacOSX10.3.0.sdk/usr/include/objc/   \
                   1009:   /Developer/SDKs/MacOSX10.3.0.sdk/usr/include/sys/    \
1.233     vatton   1010:   /Developer/SDKs/MacOSX10.4u.sdk/usr/include/objc/   \
                   1011:   /Developer/SDKs/MacOSX10.4u.sdk/usr/include/sys/    \
                   1012:   /Developer/SDKs/MacOSX10.3.9.sdk/usr/include/objc/   \
                   1013:   /Developer/SDKs/MacOSX10.3.9.sdk/usr/include/sys/    \
1.173     carcone  1014:   ; \
                   1015: do
                   1016:   if test -r "$ac_dir/malloc.h"; then
                   1017:     echo "found malloc.h"
                   1018:     EXTRA_INCLUDES="${EXTRA_INCLUDES} -I$ac_dir"
                   1019:     break
                   1020:   fi
                   1021: done
1.187     gully    1022: else # "$AMAYAOS" = "MACOSX"
1.131     gully    1023: for ac_dir in               \
                   1024:   /usr/include/malloc/      \
                   1025:   /sw/include/malloc/       \
                   1026:   ; \
                   1027: do
                   1028:   if test -r "$ac_dir/malloc.h"; then
                   1029:     echo "found malloc.h"
                   1030:     EXTRA_INCLUDES="${EXTRA_INCLUDES} -I$ac_dir"
                   1031:     break
                   1032:   fi
                   1033: done
1.187     gully    1034: fi # "$AMAYAOS" = "MACOSX"
1.1       cvs      1035: 
                   1036: dnl
                   1037: dnl Set up the PATHs needed
                   1038: dnl
                   1039: 
                   1040: API="\$(THOTDIR)/thotlib/include"
                   1041: VAR="\$(THOTDIR)/thotlib/internals/var"
                   1042: INCL="\$(THOTDIR)/thotlib/internals/h"
                   1043: FUNC="\$(THOTDIR)/thotlib/internals/f"
                   1044: 
                   1045: dnl
                   1046: dnl Set up the include variables.
                   1047: dnl
                   1048: 
1.61      cvs      1049: THOTINCLUDES="-I${API} -I${VAR} -I${INCL} -I${FUNC} ${JPEGINCL} ${PNGINCL}"
1.58      cvs      1050: APIINCLUDES=-I${API}
                   1051:  
                   1052: if test "${VPATHOPT}" = "" ; then
1.1       cvs      1053:        VPATHOPT="VPATH"
                   1054: fi
                   1055: 
1.217     vatton   1056: AMAYA_INSTALLDIR="Amaya"
1.206     vatton   1057: 
1.1       cvs      1058: dnl
                   1059: dnl Exports the current values of the variables.
                   1060: dnl
                   1061: 
1.206     vatton   1062: AC_SUBST(AMAYA_INSTALLDIR)
                   1063: 
1.166     gully    1064: AC_SUBST(APP_MAJVER)
                   1065: AC_SUBST(APP_MINVER)
                   1066: AC_SUBST(APP_SUBVER)
                   1067: AC_SUBST(APP_VER)
1.6       cvs      1068: AC_SUBST(CEXTRACT_VER)
                   1069: AC_SUBST(CEXTRACT_FLAGS)
1.1       cvs      1070: 
                   1071: AC_SUBST(THOTINCLUDES)
                   1072: AC_SUBST(APIINCLUDES)
                   1073: AC_SUBST(VPATHOPT)
                   1074: 
                   1075: AC_SUBST(THOT_OPTIONS)
                   1076: AC_SUBST(AMAYA_OPTIONS)
                   1077: AC_SUBST(IMGLIBS)
1.131     gully    1078: AC_SUBST(EXTRA_INCLUDES)
1.90      kirschpi 1079: 
1.224     vatton   1080: AC_SUBST(MAKE_LIBWWW_RDF_PARSER)
                   1081: AC_SUBST(LIBWWW_RDF_PARSER)
                   1082: #AC_SUBST(ANNOTLIB_COMPILE_BM)
1.93      kahan    1083: AC_SUBST(AMAYA_RAPTOR_LIBS)
                   1084: AC_SUBST(AMAYA_RAPTOR_INCLUDES)
                   1085: 
                   1086: AC_SUBST(SUBDIRS)
                   1087: 
1.1       cvs      1088: dnl
1.48      cvs      1089: dnl Include the option Makefile.xxx fragment according to the configure options
1.1       cvs      1090: dnl
                   1091: 
1.211     vatton   1092: www_frag=$srcdir/amaya/Makefile.libwww
                   1093: AC_SUBST_FILE(www_frag)
1.1       cvs      1094: 
1.50      cvs      1095: if test "$with_math" = "no" ; then
                   1096:     math_frag=/dev/null
1.8       cvs      1097: else
1.50      cvs      1098:     math_frag=$srcdir/amaya/Makefile.math
1.8       cvs      1099: fi
1.211     vatton   1100: AC_SUBST_FILE(math_frag)
1.8       cvs      1101: 
1.68      vatton   1102: if test "$with_svg" = "no" ; then
                   1103:     svg_frag=/dev/null
1.26      cvs      1104: else
1.68      vatton   1105:     svg_frag=$srcdir/amaya/Makefile.svg
1.26      cvs      1106: fi
1.211     vatton   1107: AC_SUBST_FILE(svg_frag)
1.26      cvs      1108: 
1.47      cvs      1109: if test "$with_annot" = "yes" ; then
1.48      cvs      1110:     annot_frag=$srcdir/annotlib/Makefile.annot
1.47      cvs      1111: else
                   1112:     annot_frag=/dev/null
                   1113: fi
1.211     vatton   1114: AC_SUBST_FILE(annot_frag)
1.47      cvs      1115: 
1.88      kirschpi 1116: if test "$with_dav" = "yes" ; then
                   1117:     dav_frag=$srcdir/davlib/Makefile.dav
1.188     vatton   1118: else
                   1119:     dav_frag=/dev/null
1.88      kirschpi 1120: fi
1.211     vatton   1121: AC_SUBST_FILE(dav_frag)
1.16      cvs      1122: 
1.186     tollenae 1123: if test "$with_templates" = "yes" ; then
                   1124:     templates_frag=$srcdir/amaya/Makefile.templates
1.188     vatton   1125: else
                   1126:     templates_frag=/dev/null
1.186     tollenae 1127: fi
1.211     vatton   1128: AC_SUBST_FILE(templates_frag)
1.186     tollenae 1129: 
1.1       cvs      1130: dnl  ***************************************************************
                   1131: dnl
                   1132: dnl      FINAL STEP : PRODUCE ALL THE MAKEFILES AND CONFIG FILES
                   1133: dnl
                   1134: dnl  ***************************************************************
                   1135: 
                   1136: EXTRA_MAKEFILE_IN=
1.2       cvs      1137: make_output="Makefile Options.orig:Options.in tools/Makefile \
                   1138:        tools/mkdep/Makefile \
1.1       cvs      1139:        tools/cextract-1.7/Makefile thotlib/Makefile \
1.193     gully    1140:        thotlib/include/Makefile batch/Makefile \
                   1141:        script_install:../batch/script_install.in \
                   1142:        script_install_gnomekde:../batch/script_install_gnomekde.in \
                   1143:        script_install_macosxbundle:../batch/script_install_macosxbundle.in \
                   1144:        script_uninstall:../batch/script_uninstall.in"
1.1       cvs      1145: 
                   1146: if test "$build_amaya" = "yes" ; then
1.208     vatton   1147:     make_output="$make_output amaya/Makefile"
1.2       cvs      1148:     EXTRA_MAKEFILE_IN="$srcdir/amaya/Makefile.in \
1.93      kahan    1149:     $srcdir/amaya/Makefile.libwww"
1.27      cvs      1150: 
1.48      cvs      1151:     if test "$with_annot" = "yes" ; then
                   1152:        make_output="$make_output annotlib/Makefile"
                   1153:        EXTRA_MAKEFILE_IN="$srcdir/annotlib/Makefile.in"
                   1154:     fi
1.88      kirschpi 1155: 
                   1156:     if test "$with_dav" = "yes" ; then
                   1157:        make_output="$make_output davlib/Makefile"
                   1158:        EXTRA_MAKEFILE_IN="$srcdir/davlib/Makefile.in"
                   1159:     fi
                   1160: 
1.1       cvs      1161: fi
                   1162: 
1.221     vatton   1163: dnl
                   1164: dnl Generate the script
                   1165: dnl
                   1166: if test "$AMAYAOS" != "MACOSX" ; then
                   1167:     if test ! -d bin ; then
                   1168:       mkdir -p bin
                   1169:     fi
                   1170:     make_output="$make_output bin/amaya:../batch/amaya.in"
                   1171: fi
                   1172: 
1.1       cvs      1173: AC_SUBST(EXTRA_MAKEFILE_IN)
1.6       cvs      1174: AC_OUTPUT($make_output , [
                   1175: dnl
                   1176: dnl This fragment of shell code is executed after the
                   1177: dnl Makefile(s) dump ...
                   1178: dnl
                   1179: 
                   1180: echo timestamp > stamp-h
                   1181: 
                   1182: dnl
                   1183: dnl Check for an upgrade in the Options numbers
                   1184: dnl
                   1185: if test -f Options ; then
                   1186:    oldversion=`grep Version Options`
                   1187:    newversion=`grep Version Options.orig`
                   1188:    if test "$oldversion" != "$newversion" ; then
                   1189:        echo WARNING : Options files have changed, old options saved to Options.old
                   1190:        cp Options Options.old
                   1191:        cp Options.orig Options
                   1192:        exit 1
                   1193:    fi
                   1194: fi
1.193     gully    1195: if test -f script_install ; then
                   1196:    chmod a+x script_install
                   1197: fi
                   1198: if test -f script_install_gnomekde ; then
                   1199:    chmod a+x script_install_gnomekde
                   1200: fi
                   1201: if test -f script_install_macosxbundle ; then
                   1202:    chmod a+x script_install_macosxbundle
                   1203: fi
                   1204: if test -f script_uninstall ; then
                   1205:    chmod a+x script_uninstall
                   1206: fi
1.227     vatton   1207: if test -f bin/amaya ; then
                   1208:    chmod 755 bin/amaya
                   1209:     echo WARNING : `ls -l bin/amaya`
                   1210: fi
1.6       cvs      1211: ])
1.1       cvs      1212: 
1.222     cvs      1213: dnl
1.1       cvs      1214: if test "$build_amaya" = "yes" ; then
1.164     gully    1215:     echo Amaya $AMAYA_VER configured
1.230     vatton   1216:     echo Amaya configured with libWWW \(local source\)
1.10      cvs      1217:     if test "$with_math" = "yes" ; then
                   1218:        echo Amaya configured with Math support
1.26      cvs      1219:     fi
1.68      vatton   1220:     if test "$with_svg" = "yes" ; then
                   1221:        echo Amaya configured with SVG support
1.47      cvs      1222:     fi
                   1223:     if test "$with_annot" = "yes" ; then
                   1224:        echo Amaya configured with Annotations support
1.239     vatton   1225:       if test "$with_system_raptor" = "yes" ; then
                   1226:        echo Amaya configured with the RaptorF library \(system\)
                   1227:       else
                   1228:        echo Amaya configured with the Raptor library \(system\)
                   1229:       fi
1.108     kahan    1230:     fi
1.186     tollenae 1231:     if test "$with_templates" = "yes" ; then
1.230     vatton   1232:        echo Amaya configured with templates support
1.186     tollenae 1233:     fi
1.70      kahan    1234:     if test "$with_generic_xml" = "yes" ; then
1.195     vatton   1235:        echo Amaya configured with generic XML support
1.70      kahan    1236:     fi
1.195     vatton   1237:     echo Amaya configured with internationalization support
1.75      cheyroul 1238:     if test "$with_gl" = "yes" ; then
1.143     gully    1239:        echo Amaya configured with OpenGL Canvas Rendering \(System library\) \(experimental\)
                   1240:     fi
                   1241:     if test "$with_mesa" = "yes" ; then
1.181     gully    1242:        echo Amaya configured with OpenGL Canvas Rendering \(MesaLib\)
1.88      kirschpi 1243:     fi
                   1244:     if test "$with_dav" = "yes" ; then
1.181     gully    1245:        echo Amaya configured with WebDAV support
1.1       cvs      1246:     fi
1.5       cvs      1247: fi
                   1248: 
1.124     gully    1249: if test "$with_wx" = "yes" ; then
1.136     gully    1250:   if test "$with_wxdebug" = "yes" ; then
1.181     gully    1251:     echo "Amaya configured with wxWidgets {srcdir=$WX_SRCDIR} (debug)"
1.136     gully    1252:   else
1.181     gully    1253:     echo "Amaya configured with wxWidgets {srcdir=$WX_SRCDIR}"
1.136     gully    1254:   fi
1.1       cvs      1255: fi
                   1256: 
1.136     gully    1257: 
1.107     kahan    1258: echo ""
1.78      vatton   1259: echo "Now type \"make\" (GNU make preferably) to build the binaries"
1.107     kahan    1260: echo ""
1.120     gully    1261: 

Webmaster