Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/tools/compat Remove commas in AC_CHECK_FUNCS that shouldn't ...
details: https://anonhg.NetBSD.org/src/rev/83512186a548
branches: trunk
changeset: 574507:83512186a548
user: wiz <wiz%NetBSD.org@localhost>
date: Wed Mar 02 18:08:43 2005 +0000
description:
Remove commas in AC_CHECK_FUNCS that shouldn't be there.
Closes PR 29577 by Valeriy E. Ushakov.
diffstat:
tools/compat/configure | 4 ++--
tools/compat/configure.ac | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diffs (44 lines):
diff -r 1f4595ca634c -r 83512186a548 tools/compat/configure
--- a/tools/compat/configure Wed Mar 02 15:31:44 2005 +0000
+++ b/tools/compat/configure Wed Mar 02 18:08:43 2005 +0000
@@ -7654,7 +7654,7 @@
-for ac_func in htobe16, htobe32, htobe64, htole16, htole32, htole64, be16toh, be32toh, be64toh, le16toh, le32toh, le64toh
+for ac_func in htobe16 htobe32 htobe64 htole16 htole32 htole64 be16toh be32toh be64toh le16toh le32toh le64toh
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -7759,7 +7759,7 @@
-for ac_func in bswap16, bswap32, bswap64
+for ac_func in bswap16 bswap32 bswap64
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:$LINENO: checking for $ac_func" >&5
diff -r 1f4595ca634c -r 83512186a548 tools/compat/configure.ac
--- a/tools/compat/configure.ac Wed Mar 02 15:31:44 2005 +0000
+++ b/tools/compat/configure.ac Wed Mar 02 18:08:43 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: configure.ac,v 1.49 2005/01/13 00:52:40 jmc Exp $
+# $NetBSD: configure.ac,v 1.50 2005/03/02 18:08:44 wiz Exp $
#
# Autoconf definition file for libnbcompat.
#
@@ -121,11 +121,11 @@
strsuftoll strtoll \
user_from_uid vasprintf vasnprintf vsnprintf)
-AC_CHECK_FUNCS([htobe16, htobe32, htobe64, htole16, htole32, htole64, be16toh, be32toh, be64toh, le16toh, le32toh, le64toh],,, [
+AC_CHECK_FUNCS([htobe16 htobe32 htobe64 htole16 htole32 htole64 be16toh be32toh be64toh le16toh le32toh le64toh],,, [
#include <sys/types.h>
])
-AC_CHECK_FUNCS([bswap16, bswap32, bswap64],,, [
+AC_CHECK_FUNCS([bswap16 bswap32 bswap64],,, [
#include <machine/bswap.h>
])
Home |
Main Index |
Thread Index |
Old Index