From 549cf5b186278a451f5372b62e632cae66115c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Thu, 30 Jun 2005 19:19:20 +0000 Subject: [PATCH] add depency on LIB_dlopen and LIB_door_create git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15538 ec53bebd-3082-4978-b11e-865c3cabbd6b --- tools/Makefile.am | 2 ++ tools/krb5-config.in | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index 96d1750a7..8c05215b6 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -21,6 +21,8 @@ krb5-config: krb5-config.in -e "s!@LIB_dbopen\@!$(LIB_dbopen)!g" \ -e "s!@INCLUDE_des\@!$(INCLUDE_des)!g" \ -e "s!@LIB_des_appl\@!$(LIB_des_appl)!g" \ + -e "s!@LIB_dlopen\@!$(LIB_dlopen)!g" \ + -e "s!@LIB_door_create\@!$(LIB_door_create)!g" \ -e "s!@LIBS\@!$(LIBS)!g" \ $(srcdir)/krb5-config.in > $@.new mv $@.new $@ diff --git a/tools/krb5-config.in b/tools/krb5-config.in index cd105d50d..50ef6918a 100755 --- a/tools/krb5-config.in +++ b/tools/krb5-config.in @@ -100,7 +100,8 @@ if test "$do_libs" = "yes"; then ;; esac lib_flags="$lib_flags -lkrb5 -lasn1 -lcom_err @LIB_des_appl@ -lroken" - lib_flags="$lib_flags @LIB_crypt@ @LIB_dbopen@ @LIBS@" + lib_flags="$lib_flags @LIB_crypt@ @LIB_dbopen@ @LIB_dlopen@" + lib_flags="$lib_flags @LIB_door_create@ @LIBS@" echo $lib_flags fi if test "$do_cflags" = "yes"; then