diff options
author | Slack Coder <slackcoder@server.ky> | 2025-07-18 11:16:10 -0500 |
---|---|---|
committer | Slack Coder <slackcoder@server.ky> | 2025-07-20 14:42:29 -0500 |
commit | 0fed111f691bc06dab097d07e7f6c73ae2e090ab (patch) | |
tree | 42310c4839e522f3fe1063ce7a76c3ca8237584c /galileo/patch/0001-Fix-socket-configuration.patch | |
parent | 4a5b937da54351d9cac3475954852d9964c9c268 (diff) | |
download | slackbuilds-0fed111f691bc06dab097d07e7f6c73ae2e090ab.tar.xz |
Add galileo 0.3
Galileo is a gemini proxy.
Diffstat (limited to 'galileo/patch/0001-Fix-socket-configuration.patch')
-rw-r--r-- | galileo/patch/0001-Fix-socket-configuration.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/galileo/patch/0001-Fix-socket-configuration.patch b/galileo/patch/0001-Fix-socket-configuration.patch new file mode 100644 index 0000000..b1c9815 --- /dev/null +++ b/galileo/patch/0001-Fix-socket-configuration.patch @@ -0,0 +1,36 @@ +From a26d35df77d938cfea8039215d7b8ebd960a8ea1 Mon Sep 17 00:00:00 2001 +From: Slack Coder <slackcoder@server.ky> +Date: Thu, 17 Jul 2025 11:02:18 -0500 +Subject: [PATCH] Fix socket configuration + +Make compile time socket path configuration work by correcting +assignment typo's in the configuration script. +--- + configure | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/configure b/configure +index 0568bea..b97b5fd 100755 +--- a/configure ++++ b/configure +@@ -88,7 +88,7 @@ while [ $# -gt 0 ]; do + PKG_CONFIG) + pkgconfig="$val" ;; + SOCK) +- sock="$sock" ;; ++ sock="$val" ;; + USER) + user="$val" ;; + YACC) +@@ -123,7 +123,7 @@ echo "returning to the configure for \`galileo':" >&2 + CFLAGS="${CFLAGS} -I. -Itemplate" + test -n "$conf" && CFLAGS="${CFLAGS} -DGALILEO_CONF=\"\\\"$conf\\\"\"" + test -n "$user" && CFLAGS="${CFLAGS} -DGALILEO_USER=\"\\\"$user\\\"\"" +-test -n "$sock" && CFLAGS="${CFLAGS} -DGALILEO_SOCK=\"\\\"$conf\\\"\"" ++test -n "$sock" && CFLAGS="${CFLAGS} -DGALILEO_SOCK=\"\\\"$sock\\\"\"" + + [ -w config.log ] && mv config.log config.log.old + +-- +2.46.3 + |