[xserver-commit] cygwin-x-doc configure.ac,NONE,1.1 configure.in,1.5,NONE

Harold L Hunt II xserver-commit@pdx.freedesktop.org


Committed by: harold

Update of /cvs/xserver/cygwin-x-doc
In directory pdx:/tmp/cvs-serv10458

Added Files:
	configure.ac 
Removed Files:
	configure.in 
Log Message:
Rename configure.in->configure.ac

--- NEW FILE: configure.ac ---
dnl Process this file with autoconf to produce a configure script.
AC_INIT([Makefile.am])
AM_INIT_AUTOMAKE(cygwin-xfree-doc, 0.9.12)
AC_PROG_LN_S

# Checks for programs.

# dsssl processor
AC_CHECK_PROGS([JADE],[jade openjade])
if test -z "$JADE" ; then
    AC_MSG_ERROR([No dsssl tool found.  Cannot build documentation.])
fi

# sgml validator
AC_CHECK_PROGS([NSGMLS],[nsgmls onsgmls])
if test -z "$NSGMLS" ; then
    AC_MSG_WARN([No sgml validator found.  Cannot validate sgml content.])
fi

# Checks for libraries.

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.

AC_OUTPUT([Makefile cg/Makefile faq/Makefile ug/Makefile stylesheets/Makefile \
	ug/figures/Makefile common/Makefile])

--- configure.in DELETED ---