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