mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
40 lines
976 B
Plaintext
40 lines
976 B
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ(2.61)
|
|
AC_INIT([urbackupserver_httpserver], [0.1], [urpc@gmx.de])
|
|
AC_CONFIG_SRCDIR([dllmain.cpp])
|
|
AC_CONFIG_HEADER([config.h])
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_ARG_ENABLE(enable_fortify,
|
|
AS_HELP_STRING([--disable-fortify], [Disable GCC/runtime fortification]),
|
|
[case "${enableval}" in
|
|
yes | no ) WITH_FORTIFY="${enableval}" ;;
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --disable-fortify) ;;
|
|
esac],
|
|
[WITH_FORTIFY="yes"]
|
|
)
|
|
AM_CONDITIONAL([WITH_FORTIFY], [test "x$WITH_FORTIFY" = "xyes"])
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CXX
|
|
AC_PROG_CC
|
|
AC_PROG_LIBTOOL
|
|
|
|
# Checks for libraries.
|
|
|
|
# Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS([stdlib.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
AC_HEADER_STDBOOL
|
|
AC_C_CONST
|
|
AC_TYPE_SIZE_T
|
|
|
|
# Checks for library functions.
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|