1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/comms/lirc/files/patch-daemons_lircmd.c
Stefan Eßer 2380a3cfc5 Fix build with -fno-common
While here add license and regenerate all patches with make makepatch.
2020-09-21 15:03:43 +00:00

24 lines
485 B
C

--- daemons/lircmd.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/lircmd.c
@@ -277,9 +277,9 @@ setup_error:
return -1;
}
+#ifdef __linux__
void write_uinput(__u16 type, __u16 code, __s32 value)
{
-#ifdef __linux__
struct input_event event;
memset(&event, 0, sizeof(event));
@@ -299,8 +299,8 @@ void write_uinput(__u16 type, __u16 code, __s32 value)
syslog(LOG_ERR, "%m");
}
}
-#endif
}
+#endif
void msend(int dx, int dy, int dz, int rep, int buttp, int buttr)
{