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-zoom/configure.ac

34 lines
760 B
Text
Raw Normal View History

2005-04-18 15:27:00 +00:00
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(zoom, 0.1, matthias@gamezock.de)
AC_CONFIG_SRCDIR([zoom-bin.c])
2007-06-24 02:03:01 +00:00
AM_CONFIG_HEADER([config.h])
2005-04-18 15:27:00 +00:00
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
# Checks for programs.
AC_PROG_CC
2008-06-24 00:47:35 +02:00
AC_PROG_LIBTOOL
AM_PROG_CC_C_O
PKG_PROG_PKG_CONFIG
2005-04-18 15:27:00 +00:00
# Checks for libraries.
PKG_CHECK_MODULES(libzoom, libzoom-0.1, , AC_MSG_ERROR(Test for libzoom failed.))
2005-04-18 15:27:00 +00:00
2008-06-24 00:47:35 +02:00
CFLAGS="$libzoom_CFLAGS $CFLAGS"
LIBS="$libzoom_LIBS $LIBS"
2005-04-18 15:27:00 +00:00
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_TIME
# Checks for library functions.
2008-06-24 00:47:35 +02:00
#AC_CHECK_FUNCS([gettimeofday])
2005-04-18 15:27:00 +00:00
AC_CONFIG_FILES([Makefile])
2007-06-15 20:52:01 +00:00
AC_OUTPUT([zoom])