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