From 16c8b007b96c620ccff106a2b41057fe55e6b9b8 Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 17 Feb 2004 01:56:36 +0000 Subject: [PATCH] * configure.in: Use AC_LIBOBJ rather than manually modify LIBOBJS. --- ChangeLog | 4 ++++ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a05f1c6..886f9df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-02-17 Daiki Ueno + + * configure.in: Use AC_LIBOBJ rather than manually modify LIBOBJS. + 2002-03-06 Daiki Ueno * configure.in (VERSION): Bump up to 0.9. diff --git a/configure.in b/configure.in index 659fa9d..f5e8bf3 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ if test "$ac_cv_struct_addrinfo" = "no"; then fi AC_CHECK_LIB(socket, socket) -AC_CHECK_FUNC(getopt_long,,LIBOBJS="$LIBOBJS getopt.o getopt1.o") +AC_CHECK_FUNC(getopt_long,,[AC_LIBOBJ(getopt)AC_LIBOBJ(getopt1)]) AC_REPLACE_FUNCS(basename) AC_CHECK_FUNC(poll) -- 1.7.10.4