From 4b0ab841546a4341b23fa5270c2fb37c5f6cf302 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 18 Apr 2021 18:14:10 -0400 Subject: build: Remove added x509_verify.3 links --- man/Makefile.am | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'man') diff --git a/man/Makefile.am b/man/Makefile.am index 5b39dc7..b6d3b54 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -89,16 +89,6 @@ install-data-hook: ln -sf "tls_read.3" "$(DESTDIR)$(mandir)/man3/tls_handshake.3" ln -sf "tls_read.3" "$(DESTDIR)$(mandir)/man3/tls_reset.3" ln -sf "tls_read.3" "$(DESTDIR)$(mandir)/man3/tls_write.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_chain.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_error_depth.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_error_string.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_free.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_new.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_intermediates.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_max_chains.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_max_depth.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_max_signatures.3" - ln -sf "x509_verify.3" "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_purpose.3" uninstall-local: -rm -f "$(DESTDIR)$(mandir)/man3/tls_accept_cbs.3" @@ -178,13 +168,3 @@ uninstall-local: -rm -f "$(DESTDIR)$(mandir)/man3/tls_handshake.3" -rm -f "$(DESTDIR)$(mandir)/man3/tls_reset.3" -rm -f "$(DESTDIR)$(mandir)/man3/tls_write.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_chain.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_error_depth.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_error_string.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_free.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_new.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_intermediates.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_max_chains.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_max_depth.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_max_signatures.3" - -rm -f "$(DESTDIR)$(mandir)/man3/x509_verify_ctx_set_purpose.3" -- cgit 1.4.1 p;showmsg=1&follow=1'>.gitignore (unfollow)
Commit message (Collapse)Author
2020-08-15Remove closelog callJune McEnroe
It's unclear whether closelog is really safe to call in pre-exec context, so just trust that the log is opened with CLOEXEC.
2020-08-15Implement service statusJune McEnroe
2020-08-15Parse control commandsJune McEnroe
2020-08-15Read service pipesJune McEnroe
Changed line reading functions to return const char * because modifying the strings by adding '\0' into them screws up the following call.
2020-08-15Implement non-blocking line-buffered readingJune McEnroe
2020-08-15Generate tags fileJune McEnroe
2020-08-15Just use CLOCK_MONOTONIC and clean up includesJune McEnroe
CLOCK_MONOTONIC exists everywhere.
2020-08-15Reap childrenJune McEnroe
2020-08-14Implement serviceSignal, serviceStop, serviceRestartJune McEnroe
2020-08-14Reset restartInterval and restartDeadline on startJune McEnroe
2020-08-14Switch to timespec for timeoutsJune McEnroe
Can be passed to ppoll(2) directly.
2020-08-14Implement serviceStartJune McEnroe
2020-08-14Flesh out Service structJune McEnroe
2020-08-14Build environment for servicesJune McEnroe
2020-08-14Implement spawntab parsingJune McEnroe
2020-08-14Open syslog, daemonize, write PIDJune McEnroe
2020-08-14Implement user and group lookupJune McEnroe
2020-08-14Add install targetJune McEnroe
2020-08-14Add spawnd skeletonJune McEnroe