From owner-freebsd-commit Wed Sep 27 16:15:40 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA18163 for freebsd-commit-outgoing; Wed, 27 Sep 1995 16:15:40 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA18077 for cvs-all-outgoing; Wed, 27 Sep 1995 16:14:17 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA18067 for cvs-gnu-outgoing; Wed, 27 Sep 1995 16:14:15 -0700 Received: (from nate@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA18056 ; Wed, 27 Sep 1995 16:14:10 -0700 Date: Wed, 27 Sep 1995 16:14:10 -0700 From: Nate Williams Message-Id: <199509272314.QAA18056@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/ld/rtld rtld.c Sender: owner-commit@FreeBSD.org Precedence: bulk nate 95/09/27 16:14:10 Modified: gnu/usr.bin/ld/rtld rtld.c Log: Fixup the "ld.so failed" message for the case when ld.so finds undefined symbols. An easy example to see this is to develop an X program which links against Xt, but doesn't add -lX11 to the link line. It will link fine, but cause run-time errors by ld.so because of missing symbols used by Xt defined in X11. This patch makes the errors more readable. Submitted by: jdp@polstra.com (John Polstra)