## vim: set noexpandtab tabstop=4 shiftwidth=4: ##---------------------------------------------------------------------------- ## PlaQui ##---------------------------------------------------------------------------- ## This file is part of PlaQui. ## ## PlaQui 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. ## ## PlaQui 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 PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple ## Place, Suite 330, Boston, MA 02111-1307 USA ##---------------------------------------------------------------------------- ## Creado: jue nov 20 14:42:27 ART 2003 ## Autores: Leandro Lucarella ##---------------------------------------------------------------------------- ## ## $Id$ ## AC_INIT(configure.in) AM_INIT_AUTOMAKE(plaqui, 1.0) AM_MAINTAINER_MODE dnl Prevents setting flags. CXXFLAGS="" AC_ISC_POSIX AC_PROG_CXX AM_PROG_CC_STDC AC_PROG_RANLIB AC_HEADER_STDC dnl Debugging turned on AC_MSG_CHECKING(for debugging) AC_ARG_ENABLE(debug,[ --enable-debug compile for debugging]) AC_MSG_RESULT([$enable_debug]) if test "x$enable_debug" = "xyes" ; then CXXFLAGS="${CXXFLAGS} -g -DDEBUG" fi ## pkg_modules="libgnomeui-2.0" PKG_CHECK_MODULES(PACKAGE, libxml-2.0 >= 0.15.0 \ libxml++-1.0 >= 0.15.0 \ gthread-2.0 \ sigc++-1.2 \ gtkmm-2.0 >= 2.0.0 \ libglademm-2.0 >= 2.0.0) AC_SUBST(PACKAGE_CFLAGS) AC_SUBST(PACKAGE_LIBS) AC_OUTPUT([ Makefile Model/Makefile Model/src/Makefile Server/Makefile Server/src/Makefile Client/Makefile Client/pixmaps/Makefile Client/dialogs/Makefile Client/src/Makefile Constructor/Makefile Constructor/pixmaps/Makefile Constructor/dialogs/Makefile Constructor/src/Makefile ]) echo echo "Todo listo. Ahora para compilar solo ejecute make" echo echo "The PlaQui Development Team"