1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
- #
- # 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 3 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, see <http://www.gnu.org/licenses/>.
- AC_PREREQ(2.59)
- AC_INIT(gcc-gml4gtk-plugin, 2.8, mooigraph@gmail.com)
- AC_CONFIG_HEADERS(config.h)
- # m4
- AC_CONFIG_MACRO_DIR([m4])
- #ACLOCAL_FLAGS="-I m4"
- # automake
- AM_INIT_AUTOMAKE
- # add the m4 dir
- # AC_CONFIG_MACRO_DIR([m4])
- # Checks for programs.
- AC_PROG_CC
- AC_PROG_CXX
- AC_ARG_WITH(gmp, [AS_HELP_STRING([--with-gmp=PATH],
- [specify prefix directory for installed gmp package. Equivalent to
- --with-gmp-include=PATH/include plus --with-gmp-lib=PATH/lib])])
- AC_ARG_WITH(gmp_include, [AS_HELP_STRING([--with-gmp-include=PATH],
- [specify directory for installed gmp include files])])
- AC_ARG_WITH(gmp_lib, [AS_HELP_STRING([--with-gmp-lib=PATH],
- [specify directory for installed gmp library])])
- if test "x$with_gmp" != x; then
- gmp_inc="-I$with_gmp/include"
- gmp_lib="-L$with_gmp/lib"
- fi
- if test "x$with_gmp_include" != x; then
- gmp_inc="-I$with_gmp_include"
- fi
- if test "x$with_gmp_lib" != x; then
- gmp_lib="-L$with_gmp_lib"
- fi
- AC_SUBST(gmp_inc)
- AC_SUBST(gmp_lib)
- # libtool
- LT_INIT
- AC_PROG_LIBTOOL
- # Checks for header files.
- # Checks for typedefs, structures, and compiler characteristics.
- AC_C_CONST
- AC_FUNC_OBSTACK
- # Checks for library functions.
- AC_FUNC_ERROR_AT_LINE
- AC_CONFIG_FILES([Makefile gml4gtk-plugin/Makefile])
- AC_OUTPUT
|