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

30 lines
477 B
Plaintext

dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/idpc.h)
AM_INIT_AUTOMAKE(idpc, 0.1.0)
AM_CONFIG_HEADER(config.h)
AC_SUBST(VERSION)
ISODATE=`date +%Y-%m-%d`
AC_SUBST(ISODATE)
AC_CANONICAL_HOST
dnl Checks for programs.
AC_PROG_INSTALL
AC_PROG_CC
dnl Checks for libraries.
PKG_CHECK_MODULES(IDPC, glib-2.0 neon lasso)
AC_SUBST(IDPC_CFLAGS)
AC_SUBST(IDPC_LIBS)
dnl Checks for header files.
AC_HEADER_STDC
AC_OUTPUT([
Makefile
src/Makefile
])