26 lines
628 B
Text
26 lines
628 B
Text
|
# -*- Autoconf -*-
|
||
|
# Process this file with autoconf to produce a configure script.
|
||
|
|
||
|
AC_PREREQ([2.71])
|
||
|
AC_INIT([nest-sanity-checks],[0.0.1-dev],[https://git.h.hackclub.app/9pfs/nest-sanity-checks/issues])
|
||
|
AC_CONFIG_SRCDIR([notify.c])
|
||
|
AC_CONFIG_HEADERS([config.h])
|
||
|
AM_INIT_AUTOMAKE
|
||
|
|
||
|
# Checks for programs.
|
||
|
AC_PROG_CC
|
||
|
PKG_PROG_PKG_CONFIG
|
||
|
|
||
|
# Checks for libraries.
|
||
|
PKG_CHECK_MODULES([LIBCURL], [libcurl])
|
||
|
|
||
|
# Checks for header files.
|
||
|
|
||
|
# Checks for typedefs, structures, and compiler characteristics.
|
||
|
|
||
|
# Checks for library functions.
|
||
|
AC_FUNC_MALLOC
|
||
|
|
||
|
AC_CONFIG_FILES([Makefile])
|
||
|
AC_OUTPUT
|