You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
671 B
34 lines
671 B
AC_INIT(ckpool, 0.1, kernel@kolivas.org) |
|
|
|
AC_CANONICAL_SYSTEM |
|
AC_CONFIG_MACRO_DIR([m4]) |
|
AC_CONFIG_SRCDIR([src/ckpool.c]) |
|
AC_CONFIG_HEADERS([config.h]) |
|
|
|
AM_INIT_AUTOMAKE([foreign subdir-objects]) |
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
|
AC_USE_SYSTEM_EXTENSIONS |
|
|
|
AC_CANONICAL_BUILD |
|
AC_CANONICAL_HOST |
|
|
|
dnl Make sure anyone changing configure.ac/Makefile.am has a clue |
|
AM_MAINTAINER_MODE |
|
|
|
dnl Checks for programs |
|
AC_PROG_CC |
|
# gl_EARLY - maybe later |
|
AC_PROG_GCC_TRADITIONAL |
|
AM_PROG_CC_C_O |
|
LT_INIT([disable-shared]) |
|
|
|
# gl_INIT - maybe later |
|
|
|
dnl Checks for header files. |
|
AC_HEADER_STDC |
|
|
|
AC_FUNC_ALLOCA |
|
|
|
PKG_PROG_PKG_CONFIG() |
|
|
|
AC_OUTPUT([Makefile] [src/Makefile])
|
|
|