Added
Link Here
|
1 |
From 9de74a0d4d0f1f38db5ae7e891480d8a4b4ad8d9 Mon Sep 17 00:00:00 2001 |
2 |
From: Douglas Katzman <dougk@google.com> |
3 |
Date: Tue, 2 Aug 2022 14:40:28 -0400 |
4 |
Subject: [PATCH] Add /usr/local/include for freebsd |
5 |
|
6 |
https://wiki.freebsd.org/WarnerLosh/UsrLocal says something about it. |
7 |
|
8 |
Should fix lp#1981112. |
9 |
--- src/runtime/Config.x86-64-freebsd.orig 2022-07-29 14:39:18 UTC |
10 |
+++ src/runtime/Config.x86-64-freebsd |
11 |
@@ -15,7 +15,8 @@ include Config.x86-64-bsd |
12 |
# worked fine for most things, but LOAD-FOREIGN & friends require |
13 |
# dlopen() etc., which in turn depend on dynamic linking of the |
14 |
# runtime. |
15 |
-OS_LIBS += -lutil |
16 |
+OS_LIBS += -lutil -L/usr/local/lib |
17 |
+CPPFLAGS += -isystem/usr/local/include |
18 |
|
19 |
# use libthr (1:1 threading). libpthread (m:n threading) does not work. |
20 |
ifdef LISP_FEATURE_SB_THREAD |