]> andersk Git - nss_nonlocal.git/blob - configure.ac
f3a05d9a0215fc94496fc703754f1bde29db2429
[nss_nonlocal.git] / configure.ac
1 AC_INIT([nss_nonlocal], [2.0], [andersk@mit.edu])
2 AC_CANONICAL_TARGET
3 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
4 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
5
6 AC_PREFIX_DEFAULT([/])
7 AC_DISABLE_STATIC
8 AC_PROG_CC
9 AC_PROG_LIBTOOL
10
11 AC_HEADER_STDBOOL
12
13 case "$target_cpu" in
14     i386 | i486 | i586 | i686 | i786)
15         AC_DEFINE([USE_REGPARMS], [],
16                   [Define if the regparm attribute shall be used for local functions (gcc on ix86 only).])
17         ;;
18 esac
19
20 AC_CONFIG_HEADERS([config.h])
21 AC_CONFIG_FILES([Makefile])
22 AC_OUTPUT
This page took 0.058124 seconds and 3 git commands to generate.