dnl GHC-only part of fptools configuration dnl dnl Copyright (c) 1999 Manuel M. T. Chakravarty dnl dnl This file is subject to the same free software license as GHC. dnl ###################################################################### dnl Process this file with autoconf to produce a configure script. dnl ###################################################################### dnl * Initialise and check sanity. AC_INIT(ghc.spec.in) dnl * Compute the version number. version=`sed -e 's/.*\([[0-9]]\)\.\([[0-9]]*\).*/\1.\2/' VERSION` patchlevel=1 dnl These are needed by the .spec file. AC_SUBST(version) AC_SUBST(patchlevel) dnl Uncomment links to ObjectIO docs if necessary AC_ARG_ENABLE(objectio, [ --enable-objectio Build ObjectIO, a portable GUI library for Haskell. (This option is only relevant when libraries are built.) ], [ ObjectIOHTMLStart="" ObjectIOHTMLEnd="" ], [ ObjectIOHTMLStart="" ] ) AC_SUBST(ObjectIOHTMLStart) AC_SUBST(ObjectIOHTMLEnd) dnl Uncomment links to HOpenGL docs if necessary AC_ARG_ENABLE(hopengl, [ --enable-hopengl Build HOpenGL, a Haskell binding for OpenGL/GLUT, too. (NOTE: Work in progress, currently only GLUT is supported!) ], [ HOpenGLHTMLStart="" HOpenGLHTMLEnd="" ], [ HOpenGLHTMLStart="" ] ) AC_SUBST(HOpenGLHTMLStart) AC_SUBST(HOpenGLHTMLEnd) dnl * Write the results... AC_OUTPUT(ghc.spec docs/index.html docs/libraries.html)