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