1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-26 21:17:40 +00:00
freebsd-ports/comms/gnokii/files/patch-ac
Satoshi Taoka a64022f473 Software to talk to Nokia 3810/3110/8110/6110 cellular phones
PR:		ports/10629
Submitted by:	Staffan Ulfberg  <staffanu@multivac.fatburen.org>
1999-04-02 00:45:54 +00:00

30 lines
754 B
Plaintext

*** fbus-6110.c.orig Wed Mar 17 00:05:17 1999
--- fbus-6110.c Wed Mar 17 00:05:09 1999
***************
*** 24,30 ****
#include <unistd.h>
#include <fcntl.h>
#include <ctype.h>
! #include <sys/signal.h>
#include <sys/types.h>
#include <sys/time.h>
#include <string.h>
--- 24,30 ----
#include <unistd.h>
#include <fcntl.h>
#include <ctype.h>
! #include <signal.h>
#include <sys/types.h>
#include <sys/time.h>
#include <string.h>
***************
*** 218,224 ****
/* Set up and install handler before enabling async IO on port. */
sig_io.sa_handler = FB61_SigHandler;
sig_io.sa_flags = 0;
- sig_io.sa_restorer = NULL;
sigaction (SIGIO, &sig_io, NULL);
/* Allow process/thread to receive SIGIO */
--- 218,223 ----