Skip to content

Commit 986745c

Browse files
committed
fix(postgresql): working configure
readline 8.3
1 parent d38d281 commit 986745c

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

packages/postgresql/tangram.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,17 +118,20 @@ export const build = async (...args: std.Args<Arg>) => {
118118
"--with-zstd",
119119
];
120120

121-
const configure = {
122-
args: configureArgs,
123-
};
124-
const phases = { configure };
125-
126121
if (os === "darwin") {
122+
configureArgs.push(
123+
"DYLD_FALLBACK_LIBRARY_PATH=$DYLD_FALLBACK_LIBRARY_PATH",
124+
);
127125
env.push({
128126
LDFLAGS_SL: tg.Mutation.suffix("-Wl,-undefined,dynamic_lookup", " "),
129127
});
130128
}
131129

130+
const configure = {
131+
args: configureArgs,
132+
};
133+
const phases = { configure };
134+
132135
let libraryDirs = [
133136
icuArtifact,
134137
ncursesArtifact,

packages/readline/tangram.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export const metadata = {
66
license: "https://tiswww.cwru.edu/php/chet/readline/rltop.html",
77
name: "readline",
88
repository: "http://git.savannah.gnu.org/cgit/readline.git/log/",
9-
version: "8.2.13",
10-
tag: "readline/8.2.13",
9+
version: "8.3",
10+
tag: "readline/8.3",
1111
provides: {
1212
libraries: ["readline"],
1313
},
@@ -16,7 +16,7 @@ export const metadata = {
1616
export const source = () => {
1717
const { name, version } = metadata;
1818
const checksum =
19-
"sha256:0e5be4d2937e8bd9b7cd60d46721ce79f88a33415dd68c2d738fb5924638f656";
19+
"sha256:fe5383204467828cd495ee8d1d3c037a7eba1389c22bc6a041f627976f9061cc";
2020
return std.download.fromGnu({ name, version, checksum });
2121
};
2222

0 commit comments

Comments
 (0)