From 35173f3f598cb8bd56d2b30c567a044bc6e99f8a Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Thu, 18 Aug 1994 20:18:04 +0000 Subject: Added missing $(LIBS) to link line git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4184 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/mailquery/ChangeLog | 4 ++++ src/appl/mailquery/Makefile.in | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'src/appl') diff --git a/src/appl/mailquery/ChangeLog b/src/appl/mailquery/ChangeLog index 2ed3824982..151f91d5af 100644 --- a/src/appl/mailquery/ChangeLog +++ b/src/appl/mailquery/ChangeLog @@ -1,3 +1,7 @@ +Thu Aug 18 16:15:36 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: Added missing $(LIBS) to link line. + Thu Aug 18 13:43:07 1994 Theodore Y. Ts'o (tytso at tsx-11) * mailquery.c: Move usage() before main() to solve redeclaration diff --git a/src/appl/mailquery/Makefile.in b/src/appl/mailquery/Makefile.in index 2ca0e7d43e..5c64bdc940 100644 --- a/src/appl/mailquery/Makefile.in +++ b/src/appl/mailquery/Makefile.in @@ -8,7 +8,8 @@ KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DB HESIODLIB = mailquery: mailquery.o poplib.o - $(CC) $(CFLAGS) -o mailquery mailquery.o poplib.o $(KLIB) $(HESIODLIB) + $(CC) $(CFLAGS) -o mailquery mailquery.o poplib.o $(KLIB) \ + $(HESIODLIB) $(LIBS) mailquery.o: $(srcdir)/mailquery.c poplib.o: $(srcdir)/poplib.c -- cgit