File: configure.ac

package info (click to toggle)
hashalot 0.3-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 476 kB
  • sloc: ansic: 1,544; sh: 713; makefile: 29
file content (12 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
AC_INIT(hashalot.c)
AM_INIT_AUTOMAKE(hashalot, 0.1.0)

AC_PROG_INSTALL
AC_PROG_CC
AC_PROG_LN_S

AC_HEADER_STDC
AC_CHECK_HEADERS(libgen.h stdio.h stdlib.h string.h unistd.h assert.h sys/types.h sys/mman.h endian.h , , [ AC_MSG_ERROR(required header not found)])
AC_CHECK_FUNCS(getopt snprintf , , [ AC_MSG_ERROR(required function not found)])

AC_OUTPUT(Makefile)