summaryrefslogtreecommitdiff
path: root/www/links+/patches/patch-https_c
diff options
context:
space:
mode:
authorVineet Kumar <git@vineetk.net>2026-06-15 14:54:51 -0400
committerVineet Kumar <git@vineetk.net>2026-06-15 14:54:51 -0400
commite81f04fa53e7e01afdc834d9c22b5c982c98f59b (patch)
tree763d6d68516ca9d184ddd2402978adcc4027a99d /www/links+/patches/patch-https_c
parent92e45e47c29ec037842c4a34ebc0c14143d413ff (diff)
remove all ports to start from clean slateHEADmaster
This is due to the following two reasons: 1. it's very out of date compared with current ports tree (like by 2+ years!) - some of the ports here were mainly just updates I didn't upstream, which have since now been part of openbsd, like verilator 2. removing dependencies is a lot of headache to stay in sync and/or for ports I no longer use - e.g. dbus is very difficult to remove in a desktop while patching to remove from gtk and downstream - I don't want to spend more time reducing number of dependencies when I can be working instead. I no longer have as much free time as I did in high school :(
Diffstat (limited to 'www/links+/patches/patch-https_c')
-rw-r--r--www/links+/patches/patch-https_c16
1 files changed, 0 insertions, 16 deletions
diff --git a/www/links+/patches/patch-https_c b/www/links+/patches/patch-https_c
deleted file mode 100644
index 14579d4..0000000
--- a/www/links+/patches/patch-https_c
+++ /dev/null
@@ -1,16 +0,0 @@
1$OpenBSD: patch-https_c,v 1.7 2018/09/23 20:12:32 sthen Exp $
2Index: https.c
3--- https.c.orig
4+++ https.c
5@@ -264,6 +264,11 @@ links_ssl *getSSL(void)
6 RAND_write_file(cast_const_char f_randfile);
7 }
8 }
9+#elif defined(HAVE_RAND_FILE_NAME) && defined(HAVE_RAND_LOAD_FILE) && defined(HAVE_RAND_WRITE_FILE)
10+ unsigned char f_randfile[PATH_MAX];
11+ const unsigned char *f = (const unsigned char *)RAND_file_name(cast_char f_randfile, sizeof(f_randfile));
12+ if (RAND_load_file(cast_const_char f_randfile, -1))
13+ RAND_write_file(cast_const_char f_randfile);
14 #endif
15
16 #if defined(HAVE_RAND_ADD)