* configure.in: Do not explicitly add getent.o and setenv.o to
authorEzra Peisach <epeisach@mit.edu>
Wed, 13 Mar 2002 16:36:21 +0000 (16:36 +0000)
committerEzra Peisach <epeisach@mit.edu>
Wed, 13 Mar 2002 16:36:21 +0000 (16:36 +0000)
LIBOBJS. Autoconf 2.53 labels this as an error. Move to
Makefile.in.

* Makefile.in (OBJS): Add getent.o and setenv.o explicity.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14267 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/telnet/libtelnet/ChangeLog
src/appl/telnet/libtelnet/Makefile.in
src/appl/telnet/libtelnet/configure.in

index 37af30fe701b5c1dcbe5e3e9f52b53354c7dddd8..7b79c5ac294c284fbd69ee7a1c51f9c58b1c181e 100644 (file)
@@ -1,3 +1,11 @@
+2002-03-13  Ezra Peisach  <epeisach@mit.edu>
+
+       * configure.in: Do not explicitly add getent.o and setenv.o to
+       LIBOBJS. Autoconf 2.53 labels this as an error. Move to
+       Makefile.in.
+
+       * Makefile.in (OBJS): Add getent.o and setenv.o explicity. 
+
 2001-10-09  Ken Raeburn  <raeburn@mit.edu>
 
        * auth-proto.h, auth.h, enc-proto.h, enc_des.c, encrypt.c,
index 0e8efb157fb357be4d14e1ccf69f538f0d435ab3..f6c4a7f6633a6abded22e426376813713ddc09cc 100644 (file)
@@ -29,6 +29,9 @@ LOCALINCLUDES=-I.. -I$(srcdir)/.. @KRB4_INCLUDES@
 DEFINES = $(AUTH_DEF)
 LIBOBJS=@LIBOBJS@
 
+SETENVSRC=@SETENVSRC@
+SETENVOBJ=@SETENVOBJ@
+
 LIB=    libtelnet.a
 SRCS=   $(srcdir)/auth.c \
        $(srcdir)/encrypt.c \
@@ -51,7 +54,7 @@ SRCS=   $(srcdir)/auth.c \
 
 OBJS=   auth.o encrypt.o genget.o \
        misc.o kerberos.o kerberos5.o forward.o spx.o enc_des.o \
-       $(LIBOBJS)
+       $(LIBOBJS) getent.o $(SETENVOBJ)
 
 TELNET_H= $(srcdir)/../arpa/telnet.h
 
index 81703e1592ef6e37ff259b095119a45a3b268ad5..207aa72f453f8e8a8d22fcd7ff79264e8d40ecca 100644 (file)
@@ -6,10 +6,12 @@ AC_PROG_RANLIB
 AC_REPLACE_FUNCS([strcasecmp strdup setsid strerror strftime getopt herror parsetos])
 AC_CHECK_FUNCS(setenv unsetenv getenv gettosbyname cgetent)
 AC_CHECK_HEADERS(stdlib.h string.h)
-LIBOBJS="$LIBOBJS getent.o"
 if test $ac_cv_func_setenv = no || test $ac_cv_func_unsetenv = no \
   || test $ac_cv_func_getenv = no; then
-  LIBOBJS="$LIBOBJS setenv.o"
+  SETENVSRC=setenv.c
+  SETENVOBJ=setenv.o
+  AC_SUBST([SETENVSRC])
+  AC_SUBST([SETENVOBJ])
   AC_DEFINE([NEED_SETENV])
 fi
 dnl