changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: dont-forget-shared-objects

changeset 417: b4d69908fc11
parent 416: 9e133c99b080
child 418: 60bd8c099206
author: Richard Westhaver <ellis@rwest.io>
date: Thu, 06 Jun 2024 03:39:59 +0000
files: lisp/lib/net/pkg.lisp lisp/lib/skel/pkg.lisp x.lisp
description: dont-forget-shared-objects
     1.1--- a/lisp/lib/net/pkg.lisp	Thu Jun 06 02:58:15 2024 +0000
     1.2+++ b/lisp/lib/net/pkg.lisp	Thu Jun 06 03:39:59 2024 +0000
     1.3@@ -351,3 +351,6 @@
     1.4    ;; :net/proto/crew 
     1.5    :net/proto/ssh
     1.6    :net/proto/http))
     1.7+
     1.8+(defpkg :net-user
     1.9+  (:use :cl :std :std-user :net :obj))
     2.1--- a/lisp/lib/skel/pkg.lisp	Thu Jun 06 02:58:15 2024 +0000
     2.2+++ b/lisp/lib/skel/pkg.lisp	Thu Jun 06 03:39:59 2024 +0000
     2.3@@ -45,5 +45,5 @@
     2.4   (:use-reexport :skel/core :skel/comp))
     2.5 
     2.6 (pkg:defpkg :sk-user
     2.7-  (:use :cl :std)
     2.8+  (:use :cl :std :std-user :cl-user :net-user :sb-debug :sb-ext :net/proto/dns)
     2.9   (:use-reexport :skel))
     3.1--- a/x.lisp	Thu Jun 06 02:58:15 2024 +0000
     3.2+++ b/x.lisp	Thu Jun 06 03:39:59 2024 +0000
     3.3@@ -182,7 +182,7 @@
     3.4   (let ((sys (sb-int:keywordicate (format nil "BIN/~A" (string-upcase name)))))
     3.5     (ql:quickload sys)
     3.6     (push :ssl *features*)
     3.7-    (std/sys:forget-shared-objects)
     3.8+    ;; (std/sys:forget-shared-objects)
     3.9     (asdf:make sys)))
    3.10 
    3.11 (defun x-build (args)