diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2021-01-30 09:01:08 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2021-01-30 09:01:08 +0000 |
commit | 06105161ebb5e89dbb235b66493f0694a35302a0 (patch) | |
tree | 58f85ef1cd37e9998ba507a46fe0373a4cca98f5 /ftp/bbftp-client/files/patch-setsignals.c | |
parent | sysutils/conan: 1.32.1 -> 1.33.0 (diff) |
- Split into client and server ports: upstream now provides separate
distfiles and also this allows to simplify configure and build glue
in the Makefiles considerably
- Update to version 3.2.1, reword both COMMENTs accordingly
- Actualize MASTER_SITES and WWW line in the port description
- Unbreak the build against contemporary versions of OpenSSL
- Define LICENSE (GPLv2+) and install provided documentation files
Notes
Notes:
svn path=/head/; revision=563282
Diffstat (limited to 'ftp/bbftp-client/files/patch-setsignals.c')
-rw-r--r-- | ftp/bbftp-client/files/patch-setsignals.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ftp/bbftp-client/files/patch-setsignals.c b/ftp/bbftp-client/files/patch-setsignals.c new file mode 100644 index 000000000000..88bd8936b933 --- /dev/null +++ b/ftp/bbftp-client/files/patch-setsignals.c @@ -0,0 +1,11 @@ +--- setsignals.c.orig 2005-03-29 12:48:21 UTC ++++ setsignals.c +@@ -134,7 +134,7 @@ void blockallsignals() + if ( sigaction(SIGTSTP,&sga,0) < 0 ) { + printmessage(stderr,CASE_FATAL_ERROR,32,timestamp,"Error setting signal SIGTSTP : %s \n",strerror(errno)) ; + } +-#ifndef DARWIN ++#ifdef SIGPOLL + if ( sigaction(SIGPOLL,&sga,0) < 0 ) { + printmessage(stderr,CASE_FATAL_ERROR,32,timestamp,"Error setting signal SIGPOLL : %s \n",strerror(errno)) ; + } |