blob: 8d37ec70efcf92415cfda272b6f35abf4d2c6c6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# $Id$
AC_PREREQ(2.59)
AC_INIT(rpmconstant, 0.1.4, tv@mageia.org)
AC_CONFIG_SRCDIR([rpmconstant.c])
AM_INIT_AUTOMAKE(1.8)
# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
# Checks for libraries.
# FIXME: Replace `main' with a function in `-lpopt':
AC_CHECK_LIB([popt], [poptGetContext])
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([string.h rpm/rpmlib.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
# Checks for library functions.
AC_OUTPUT(Makefile)
|