From 2c43a21dec09c5ae440129548e4d34899211b8b6 Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Thu, 31 Oct 1996 16:00:06 +0000 Subject: [PATCH] For libdb.a - use a relative path $(TOPLIBD)/libdb.a instead of -ldb to prevent getting the system installed libdb.so on the Alpha. (Under DU 4.0 ld will scan the library search path - including -L paths for .so files, failing to find any will then look for the .a one. I think this is broken as you should take the first .so or .a file found) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9260 dc483132-0cff-0310-8789-dd5450dbe970 --- src/ChangeLog | 4 ++++ src/aclocal.m4 | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index e2c0a3bdc..22b4f7357 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +Thu Oct 31 10:57:29 1996 Ezra Peisach + + * aclocal.m4 (db_lib): Use relative path to libdb.a file. + Mon Oct 21 21:19:53 1996 Tom Yu * aclocal.m4: Fix CopySrcHeader and CopyHeader so they actually diff --git a/src/aclocal.m4 b/src/aclocal.m4 index edd4b43d4..55fbd38b2 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -789,7 +789,7 @@ db_deplib='' db_lib='' define(USE_DB_LIBRARY,[ db_deplib="\[$](TOPLIBD)/libdb.a" -db_lib=-ldb +db_lib="\[$](TOPLIBD)/libdb.a" ]) dnl dnl This rule generates library lists for programs. -- 2.26.2