X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=configure.in;h=9b4914b2fd01232e2a32cb6430073209ca322030;hb=c6cda1d5e6c797b4913970ea1e3ad43f4f0c7a7f;hp=925bf5b8be3d344597a97a07f90d090d6e1e6c77;hpb=581517f3fca652bb36ff6f7cdd1e84d395bbc5a4;p=ghc-hetmet.git diff --git a/configure.in b/configure.in index 925bf5b..9b4914b 100644 --- a/configure.in +++ b/configure.in @@ -495,6 +495,18 @@ if test x"$EnableWin32DLLs" = "xYES" ; then AC_DEFINE(HAVE_WIN32_DLL_SUPPORT) fi +dnl ** Enable the building of the ObjectIO? +dnl -------------------------------------------------------------- +AC_ARG_ENABLE(objectio, +[ --enable-objectio + Build ObjectIO, a portable GUI library for Haskell. + (This option is only relevant when libraries are built.) +], +[GhcLibsWithObjectIO=YES], +[GhcLibsWithObjectIO=NO] +) +AC_SUBST(GhcLibsWithObjectIO) + dnl ** Enable the building of the OpenGL/GLUT binding in hslibs? dnl -------------------------------------------------------------- AC_ARG_ENABLE(hopengl, @@ -564,6 +576,9 @@ esac dnl ** does #! path/to/perl work? (sometimes it's too long...) FPTOOLS_SHEBANG_PERL +dnl ** check for Python +AC_PATH_PROG(PythonCmd,python) + dnl ** look for GCC and find out which version dnl Figure out which C compiler to use. Gcc is preferred. dnl If gcc, make sure it's at least 2.1 @@ -621,7 +636,6 @@ AC_PATH_PROG(SedCmd,sed) dnl ** check for time command AC_PATH_PROG(TimeCmd,time) - dnl ** check for tar dnl if GNU tar is named gtar, look for it first. AC_PATH_PROGS(TarCmd,gtar tar,tar)