From owner-freebsd-commit Wed Sep 27 16:15:10 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA18108 for freebsd-commit-outgoing; Wed, 27 Sep 1995 16:15:10 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA17993 for cvs-all-outgoing; Wed, 27 Sep 1995 16:13:42 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA17978 for cvs-lib-outgoing; Wed, 27 Sep 1995 16:13:40 -0700 Received: (from nate@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA17967 ; Wed, 27 Sep 1995 16:13:35 -0700 Date: Wed, 27 Sep 1995 16:13:35 -0700 From: Nate Williams Message-Id: <199509272313.QAA17967@freefall.freebsd.org> To: CVS-commiters, cvs-lib Subject: cvs commit: src/lib/csu/i386 crt0.c Sender: owner-commit@FreeBSD.org Precedence: bulk nate 95/09/27 16:13:34 Modified: lib/csu/i386 crt0.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)