################################################################### # [LibSip - Signal Processing Library] # Copyright (C) 2002 - 2003 BOUILLET Olivier LEMAIRE Kévin ROUGET Paul # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. This # program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. You should have # received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # # SPECIAL NOTE (the beerware clause): # This software is free software. However, it also falls under the beerware # special category. That is, if you find this software useful, or use it # every day, or want to grant us for our modest contribution to the # free software community, feel free to send us a beer from one of # your local brewery. Our preference goes to Belgium abbey beers and # irish stout (Guiness for strength!), but we like to try new stuffs. # # Authors: # # BOUILLET Olivier # Paper mail : # E-mail : # # LEMAIRE Kevin # Paper mail : 34 rue Général Lecler 94270 LE KREMLIN BICETRE, FRANCE # E-mail : hannibal@marvinproject.org # # ROUGET Paul # Paper mail : # E-mail : ## ################################################################### AC_INIT([LipSip], [0], [hannibal@marvinproject.org]) # Look for a C++ compiler. AC_LANG([C++]) AC_PROG_CXX # Look for doxygen AC_CHECK_PROG(DOXYGEN_HERE,doxygen,doxygen,no) if test "DOXYGEN_HERE" = no ; then AC_MSG_WARN([Cannot find doxygen! That's not a big problem: 'make doc' will just generate documentation for which html is not needed. Please install latex for 'make doc' to generate more output formats.]) fi # Look for latex. AC_CHECK_PROG(LATEX_HERE,latex,latex,no) if test "$LATEX_HERE" = no ; then AC_MSG_WARN([Cannot find LaTeX! That's not a big problem: 'make doc' will just generate documentation for which LaTeX is not needed. Please install latex for 'make doc' to generate more output formats.]) fi # Look for dvipdf AC_CHECK_PROG(DVIPDF_HERE,dvipdf,dvipdf,no) if test "$DVIPDF_HERE" = no ; then AC_MSG_WARN([Cannot find dvipdf! That's not a big problem: 'make doc' will just generate documentation for which dvipdf is not needed. Please install dvipdf for 'make doc' to generate a pdf output in $(DOCPATH).]) fi # Look for dvips AC_CHECK_PROG(DVIPS_HERE,dvips,dvips,no) if test "$DVIPS_HERE" = no ; then AC_MSG_WARN([Cannot find dvips! That's not a big problem: 'make doc' will just generate documentation for which dvips is not needed. Please install dvips for 'make doc' to generate a ps output in $(DOCPATH).]) fi # Look for texi2html AC_CHECK_PROG(TEXI2HTML_HERE,texi2html,texi2html,no) if test "$TEXI2HTML_HERE" = no ; then AC_MSG_WARN([Cannot find texi2html! That's not a big problem: 'make doc' will just generate documentation for which texi2html is not needed. Please install dtexi2html for 'make doc' to generate its output in $(DOCPATH).]) fi AC_CONFIG_FILES([Doxyfile]) # Finally create common.Makefile from commom.Makefile.in AC_OUTPUT(common.Makefile) chmod a-w common.Makefile