mirror of https://github.com/Cisco-Talos/clamav
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.
51 lines
1.3 KiB
51 lines
1.3 KiB
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
AC_PREREQ(2.59)
|
|
AC_INIT([libmspack],[0.5alpha],[kyzer@4u.net])
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
AM_MAINTAINER_MODE([enable])
|
|
AC_CONFIG_SRCDIR([mspack/mspack.h])
|
|
AC_CONFIG_HEADER([config.h])
|
|
|
|
dnl Enable silent rules by default (if yet support in automake)
|
|
dnl use 'make V=1' to look at verbose commandline
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
|
|
|
# --enable-debug option
|
|
AC_ARG_ENABLE(debug,
|
|
AS_HELP_STRING(--enable-debug,enable debugging),
|
|
enable_debug=$enableval,
|
|
enable_debug=no)
|
|
if test x$enable_debug = xyes; then
|
|
AC_DEFINE(DEBUG, 1, [Turn debugging mode on?])
|
|
fi
|
|
AM_CONDITIONAL(DEBUG, test x$enable_debug = 'xyes')
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AM_CONDITIONAL(GCC, test x$GCC = 'xyes')
|
|
AC_PROG_INSTALL
|
|
LT_INIT
|
|
AC_EXEEXT
|
|
|
|
# Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS([ctype.h limits.h stdlib.h wctype.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
AC_C_CONST
|
|
AC_C_INLINE
|
|
AC_TYPE_MODE_T
|
|
AC_TYPE_OFF_T
|
|
AC_TYPE_SIZE_T
|
|
AC_CHECK_SIZEOF([off_t])
|
|
AC_CHECK_FUNCS([tolower towlower])
|
|
|
|
# largefile support
|
|
AC_SYS_LARGEFILE
|
|
AC_FUNC_FSEEKO
|
|
|
|
# Checks for library functions.
|
|
AC_CONFIG_FILES([Makefile libclammspack.pc])
|
|
AC_OUTPUT
|
|
|