DEVEL15-autoconf-262-support-20081020

LICENSE IPL10
FIXES 118058

fix the quoting and remove the tests we shouldn't need anymore


(cherry picked from commit bc9c0a14154639d8e45554a3abeb867af9a8d0b2)
This commit is contained in:
Marc Dionne 2008-10-20 13:35:13 +00:00 committed by Derrick Brashear
parent a456c980d0
commit 6d113df4d9
2 changed files with 27 additions and 27 deletions

View File

@ -300,9 +300,9 @@ AC_ARG_ENABLE([optimize-pam],
enable_login="no"
dnl weird ass systems
AC_AIX
dnl AC_AIX
AC_ISC_POSIX
AC_MINIX
dnl AC_MINIX
dnl Various compiler setup.
AC_TYPE_PID_T

View File

@ -3,14 +3,14 @@ AC_DEFUN([OPENAFS_GCC_SUPPORTS_MARCH], [
AC_MSG_CHECKING(if $CC accepts -march=pentium)
save_CFLAGS="$CFLAGS"
CFLAGS="-MARCH=pentium"
AC_CACHE_VAL(openafs_gcc_supports_march,[
AC_CACHE_VAL(openafs_cv_gcc_supports_march,[
AC_TRY_COMPILE(
[],
[int x;],
openafs_gcc_supports_march=yes,
openafs_gcc_supports_march=no)])
AC_MSG_RESULT($openafs_gcc_supports_march)
if test x$openafs_gcc_supports_march = xyes; then
openafs_cv_gcc_supports_march=yes,
openafs_cv_gcc_supports_march=no)])
AC_MSG_RESULT($openafs_cv_gcc_supports_march)
if test x$openafs_cv_gcc_supports_march = xyes; then
P5PLUS_KOPTS="-march=pentium"
else
P5PLUS_KOPTS="-m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2"
@ -22,14 +22,14 @@ AC_DEFUN([OPENAFS_GCC_NEEDS_NO_STRICT_ALIASING], [
AC_MSG_CHECKING(if $CC needs -fno-strict-aliasing)
save_CFLAGS="$CFLAGS"
CFLAGS="-fno-strict-aliasing"
AC_CACHE_VAL(openafs_gcc_needs_no_strict_aliasing,[
AC_CACHE_VAL(openafs_cv_gcc_needs_no_strict_aliasing,[
AC_TRY_COMPILE(
[],
[int x;],
openafs_gcc_needs_no_strict_aliasing=yes,
openafs_gcc_needs_no_strict_aliasing=no)])
AC_MSG_RESULT($openafs_gcc_needs_no_strict_aliasing)
if test x$openafs_gcc_needs_no_strict_aliasing = xyes; then
openafs_cv_gcc_needs_no_strict_aliasing=yes,
openafs_cv_gcc_needs_no_strict_aliasing=no)])
AC_MSG_RESULT($openafs_cv_gcc_needs_no_strict_aliasing)
if test x$openafs_cv_gcc_needs_no_strict_aliasing = xyes; then
LINUX_GCC_KOPTS="$LINUX_GCC_KOPTS -fno-strict-aliasing"
fi
CFLAGS="$save_CFLAGS"
@ -39,14 +39,14 @@ AC_DEFUN([OPENAFS_GCC_NEEDS_NO_STRENGTH_REDUCE], [
AC_MSG_CHECKING(if $CC needs -fno-strength-reduce)
save_CFLAGS="$CFLAGS"
CFLAGS="-fno-strength-reduce"
AC_CACHE_VAL(openafs_gcc_needs_no_strength_reduce,[
AC_CACHE_VAL(openafs_cv_gcc_needs_no_strength_reduce,[
AC_TRY_COMPILE(
[],
[int x;],
openafs_gcc_needs_no_strength_reduce=yes,
openafs_gcc_needs_no_strength_reduce=no)])
AC_MSG_RESULT($openafs_gcc_needs_no_strength_reduce)
if test x$openafs_gcc_needs_no_strength_reduce = xyes; then
openafs_cv_gcc_needs_no_strength_reduce=yes,
openafs_cv_gcc_needs_no_strength_reduce=no)])
AC_MSG_RESULT($openafs_cv_gcc_needs_no_strength_reduce)
if test x$openafs_cv_gcc_needs_no_strength_reduce = xyes; then
LINUX_GCC_KOPTS="$LINUX_GCC_KOPTS -fno-strength-reduce"
fi
CFLAGS="$save_CFLAGS"
@ -56,14 +56,14 @@ AC_DEFUN([OPENAFS_GCC_SUPPORTS_NO_COMMON], [
AC_MSG_CHECKING(if $CC supports -fno-common)
save_CFLAGS="$CFLAGS"
CFLAGS="-fno-common"
AC_CACHE_VAL(openafs_gcc_supports_no_common,[
AC_CACHE_VAL(openafs_cv_gcc_supports_no_common,[
AC_TRY_COMPILE(
[],
[int x;],
openafs_gcc_supports_no_common=yes,
openafs_gcc_supports_no_common=no)])
AC_MSG_RESULT($openafs_gcc_supports_no_common)
if test x$openafs_gcc_supports_no_common = xyes; then
openafs_cv_gcc_supports_no_common=yes,
openafs_cv_gcc_supports_no_common=no)])
AC_MSG_RESULT($openafs_cv_gcc_supports_no_common)
if test x$openafs_cv_gcc_supports_no_common = xyes; then
LINUX_GCC_KOPTS="$LINUX_GCC_KOPTS -fno-common"
fi
CFLAGS="$save_CFLAGS"
@ -73,14 +73,14 @@ AC_DEFUN([OPENAFS_GCC_SUPPORTS_PIPE], [
AC_MSG_CHECKING(if $CC supports -pipe)
save_CFLAGS="$CFLAGS"
CFLAGS="-pipe"
AC_CACHE_VAL(openafs_gcc_supports_pipe,[
AC_CACHE_VAL(openafs_cv_gcc_supports_pipe,[
AC_TRY_COMPILE(
[],
[int x;],
openafs_gcc_supports_pipe=yes,
openafs_gcc_supports_pipe=no)])
AC_MSG_RESULT($openafs_gcc_supports_pipe)
if test x$openafs_gcc_supports_pipe = xyes; then
openafs_cv_gcc_supports_pipe=yes,
openafs_cv_gcc_supports_pipe=no)])
AC_MSG_RESULT($openafs_cv_gcc_supports_pipe)
if test x$openafs_cv_gcc_supports_pipe = xyes; then
LINUX_GCC_KOPTS="$LINUX_GCC_KOPTS -pipe"
fi
CFLAGS="$save_CFLAGS"