summaryrefslogtreecommitdiff
path: root/net-misc/omnisync/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-02-05 18:44:56 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-02-05 18:44:56 +0000
commit29aabba0ea759c6a2864ff5631735b67ee38e5e0 (patch)
treeab466b4dfa7abecb401b2f8039d08af4689306bb /net-misc/omnisync/files
parentd42200bec37eef2a7478d88988ff00addd0a9202 (diff)
gentoo resync : 05.02.2020
Diffstat (limited to 'net-misc/omnisync/files')
-rw-r--r--net-misc/omnisync/files/omnisync-1.0-help.patch16
-rw-r--r--net-misc/omnisync/files/omnisync-1.0-maxshm.patch18
-rw-r--r--net-misc/omnisync/files/omnisync-1.0-openssl11.patch24
-rw-r--r--net-misc/omnisync/files/omnisync-1.0-statfile.patch18
4 files changed, 0 insertions, 76 deletions
diff --git a/net-misc/omnisync/files/omnisync-1.0-help.patch b/net-misc/omnisync/files/omnisync-1.0-help.patch
deleted file mode 100644
index 47ff5201c030..000000000000
--- a/net-misc/omnisync/files/omnisync-1.0-help.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-main: fix help missing newline
-
-Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-
-diff -Nuar --exclude '*~' omnisync-1.0.orig/main.c omnisync-1.0/main.c
---- omnisync-1.0.orig/main.c 2009-01-02 01:03:20.000000000 -0800
-+++ omnisync-1.0/main.c 2018-06-01 14:31:25.720686155 -0700
-@@ -139,7 +139,7 @@
- printf("-c x community (snmp only)\n");
- printf("-h x host to connect to\n");
- printf("-u x ntpd shared memory unit\n");
-- printf("-z x do an initial step, to speed up syncing, parameter is number of samples");
-+ printf("-z x do an initial step, to speed up syncing, parameter is number of samples\n");
- printf("-S x write measurements to file x\n");
- printf("-n do NOT submit to NTPd/set clock, query only (use in combination with -v and -f)\n");
- printf("-f do not fork\n");
diff --git a/net-misc/omnisync/files/omnisync-1.0-maxshm.patch b/net-misc/omnisync/files/omnisync-1.0-maxshm.patch
deleted file mode 100644
index 678c6e0072dd..000000000000
--- a/net-misc/omnisync/files/omnisync-1.0-maxshm.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-main: raise SHM unit limit
-
-Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-
-diff -Nuar --exclude '*~' omnisync-1.0.orig/main.c omnisync-1.0/main.c
---- omnisync-1.0.orig/main.c 2009-01-02 01:03:20.000000000 -0800
-+++ omnisync-1.0/main.c 2018-06-01 14:32:34.630066839 -0700
-@@ -346,8 +346,8 @@
- unit_nr = atoi(optarg);
- if (unit_nr < 0)
- error_exit("-u requires a positive value\n");
-- if (unit_nr > 3)
-- error_exit("NTPd normally supports only 4 shared memory devices, still continuing though\n");
-+ if (unit_nr > 254)
-+ error_exit("NTPd normally supports only 254 shared memory devices\n");
- break;
-
- case 'v':
diff --git a/net-misc/omnisync/files/omnisync-1.0-openssl11.patch b/net-misc/omnisync/files/omnisync-1.0-openssl11.patch
deleted file mode 100644
index 8c0d9c243338..000000000000
--- a/net-misc/omnisync/files/omnisync-1.0-openssl11.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -aurN a/mssl.c b/mssl.c
---- a/mssl.c 2009-01-02 04:03:20.000000000 -0500
-+++ b/mssl.c 2018-06-01 20:59:26.447052020 -0400
-@@ -136,14 +136,20 @@
- if (!bio_err)
- {
- SSL_library_init();
-+#if OPENSSL_API_COMPAT < 0x10100000L
- SSL_load_error_strings();
-+#endif
-
- /* error write context */
- bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
- }
-
- /* create context */
-+#if OPENSSL_API_COMPAT < 0x10100000L
- meth = SSLv23_method();
-+#else
-+ meth = TLS_method();
-+#endif
-
- return SSL_CTX_new(meth);
- }
diff --git a/net-misc/omnisync/files/omnisync-1.0-statfile.patch b/net-misc/omnisync/files/omnisync-1.0-statfile.patch
deleted file mode 100644
index 972316a33bd1..000000000000
--- a/net-misc/omnisync/files/omnisync-1.0-statfile.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-main: wire up stats_file variable
-
-Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-
-diff -Nuar --exclude '*~' omnisync-1.0.orig/main.c omnisync-1.0/main.c
---- omnisync-1.0.orig/main.c 2009-01-02 01:03:20.000000000 -0800
-+++ omnisync-1.0/main.c 2018-06-01 14:39:22.115229735 -0700
-@@ -358,6 +358,10 @@
- version();
- return 0;
-
-+ case 'S':
-+ stats_file = optarg;
-+ break;
-+
- default:
- help();
- return 1;