1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
- AC_PREREQ([2.65])
- AC_INIT([ccs], [0.1], [michele.orru@ens.fr])
- AM_INIT_AUTOMAKE
- AC_CONFIG_SRCDIR([src/rms.c])
- AC_CONFIG_HEADERS([src/config.h])
- # Checks for programs.
- AC_PROG_CC([gcc clang cc])
- AC_PROG_CC_C99
- AC_PROG_RANLIB
- # Checks for libraries.
- AC_CHECK_LIB(gmp, __gmpz_init, ,
- [AC_MSG_ERROR([GNU MP not found, see https://gmplib.org/])])
- # have _GNU_SOURCE defined aroud.
- AC_GNU_SOURCE
- # Checks for header files.
- AC_CHECK_HEADERS([limits.h stdint.h stdlib.h string.h unistd.h])
- AC_CHECK_SIZEOF(mp_limb_t, 8, [#include <gmp.h>])
- # Checks for typedefs, structures, and compiler characteristics.
- AC_TYPE_SIZE_T
- # Checks for library functions.
- AC_FUNC_ERROR_AT_LINE
- AC_FUNC_MALLOC
- #AC_CHECK_FUNCS([dup2 setlocale strdup])
- # Add compiler/linker flags
- CFLAGS+=" -O3 --std=c99 -Wall --pedantic -march=native -DNDEBUG"
- # Shut up automake
- #AM_SILENT_RULES([yes])
- AC_SUBST([AM_MAKEFLAGS], [--no-print-directory])
- # Adding package options
- AC_ARG_ENABLE(debug,
- AS_HELP_STRING([--enable-debug], [enable debugging, default: no]),
- CFLAGS+=" -UNDEBUG -O0 -ggdb")
- AC_OUTPUT([Makefile
- src/Makefile
- ])
|