From 2c4dc13dab1a99078388b5e362a4f1d05d3162d5 Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Tue, 1 Apr 1997 12:04:25 +0000
Subject: [PATCH] Add missing reference to DLL for Linux

---
 compiler/generic/core.lisp | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/compiler/generic/core.lisp b/compiler/generic/core.lisp
index 7cce3194d..27f303ed1 100644
--- a/compiler/generic/core.lisp
+++ b/compiler/generic/core.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/core.lisp,v 1.32 1997/01/18 14:31:14 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/core.lisp,v 1.33 1997/04/01 12:04:25 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -95,8 +95,13 @@
 	     (gethash name lisp::*assembler-routines*))
 	    (:foreign
 	     (assert (stringp name))
-	     (gethash name lisp::*foreign-symbols*))
-	    ;;; pw -- don't the RISC systems need this too?
+	     (multiple-value-bind
+		   (value found)
+		 (gethash name lisp::*foreign-symbols*)
+	       (if found
+		   (values value found)
+		   (gethash (concatenate 'string "PVE_stub_" name)
+			    lisp::*foreign-symbols*))))
 	    #+x86
 	    (:code-object
 	     (values
-- 
GitLab