This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-zoomedit/configure.ac

44 lines
1.1 KiB
Text
Raw Normal View History

2007-06-21 19:52:03 +00:00
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(zoomedit, 0.1, matthias@gamezock.de)
2008-04-06 14:11:00 +00:00
AC_CONFIG_SRCDIR([src/zoomedit.cpp])
AM_CONFIG_HEADER([src/config.h])
2007-06-21 19:52:03 +00:00
AM_INIT_AUTOMAKE(zoomedit, 0.1)
AM_MAINTAINER_MODE
# Checks for programs.
AC_PROG_CXX
2007-06-21 19:52:03 +00:00
AM_PROG_CC_C_O
AC_PROG_LIBTOOL
2007-06-21 19:52:03 +00:00
# Checks for libraries.
#AC_CHECK_LIB(m, [sqrt])
PKG_CHECK_MODULES(glademm, libglademm-2.4, , AC_MSG_ERROR(Test for libglademm-2.4 failed.))
AM_PATH_GTKGLEXT_1_0(1.0.0,,AC_MSG_ERROR(Test for GtkGLExt failed.))
PKG_CHECK_MODULES(libxml, libxml++-2.6, , AC_MSG_ERROR(Test for libxml++-2.6 failed.))
2007-10-31 23:03:04 +00:00
2007-06-21 19:52:03 +00:00
# Checks for header files.
#AC_HEADER_STDC
#AC_CHECK_HEADERS([stddef.h stdlib.h string.h])
2007-06-21 19:52:03 +00:00
# Checks for typedefs, structures, and compiler characteristics.
#AC_HEADER_TIME
# Checks for library functions.
#AC_FUNC_MALLOC
#AC_FUNC_REALLOC
2007-06-21 19:52:03 +00:00
#AC_CHECK_FUNCS([sqrtf], , AC_MSG_ERROR([required function sqrtf not found]))
AC_CONFIG_FILES([
Makefile
src/Makefile
src/Data/Makefile
src/Gui/Makefile
])
2007-06-21 19:52:03 +00:00
AC_OUTPUT