Code Search for Developers
 
 
  

configure.in from Astrum Futura at Krugle


Show configure.in syntax highlighted

AC_INIT(Makefile.in)

XINC=xinc
XEP=xep
FOP=fop
XSLTPROC=xsltproc

AC_ARG_WITH(xep, [  --with-xep   Where to find RenderX XEP],
	[
		if test "x$withval" != "xno"; then
			XEP="$withval"
		fi
	]
)
AC_PATH_PROG(XEP,  $XEP)

AC_ARG_WITH(xinc, [  --with-xinc  Where to find lunasil XINC],
	[
		if test "x$withval" != "xno"; then
			XINC="$withval"
		fi
	]
)
AC_PATH_PROG(XINC, $XINC)

AC_ARG_WITH(fop, [  --with-fop  Where to find Apache FOP],
	[
		if test "x$withval" != "xno"; then
			FOP="$withval"
		fi
	]
)
AC_PATH_PROG(FOP,  $FOP)

AC_ARG_WITH(xsltproc, [  --with-xsltproc  Where to find xsltproc],
	[
		if test "x$withval" != "xno"; then
			XSLTPROC="$withval"
		fi
	]
)
AC_PATH_PROG(XSLTPROC,  $XSLTPROC)

ECSRC=../trunk
AC_ARG_WITH(ecsrc, [  --with-ecsrc  Where to find the ecelerity source],
	[
		if test "x$withval" != "xno"; then
			ECSRC="$withval"
		fi
	]
)

AC_SUBST(XINC)
AC_SUBST(XEP)
AC_SUBST(FOP)
AC_SUBST(XSLTPROC)
AC_SUBST(ECSRC)
HERE=`pwd`
AC_SUBST(HERE)
AC_OUTPUT(Makefile)

cat > config.nice <<EOT
#!/bin/sh
./configure \
    --with-ecsrc='$ECSRC' \
    --with-xsltproc='$XSLTPROC' \
    --with-fop='$FOP' \
    --with-xinc='$XINC' \
    --with-xep='$XEP'

EOT
chmod +x config.nice





See more files for this project here

Astrum Futura

Multiplayer space strategy game written in PHP5 with the Zend Framework. User interface uses Javascript/AJAX for dynamic interaction. Players compete across a hexagonal map of 10,000 sectors, planets, stars and other locations through trade and combat.

Project homepage: http://sourceforge.net/projects/astrumfutura
Programming language(s): PHP,XML
License: other

  build/
    docbook-xsl-1.69.1.tgz
    html.xsl
    mkentities.sh
  html/
    dbstyle.css
  module_specs/
    Astrum-Introduction.xml
  ref/
    copyrights.xml
  Makefile.in
  README.txt
  configure.in
  manual.xml