mirror of
https://github.com/transmission/transmission
synced 2025-03-04 18:48:06 +00:00
fix libevent #include quirk reported by SoftwareElves
This commit is contained in:
parent
24dd9a2b7e
commit
b43bb1483d
2 changed files with 4 additions and 0 deletions
|
@ -28,6 +28,8 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <sys/queue.h> /* libevent needs this */
|
||||
#include <sys/types.h> /* libevent needs this */
|
||||
#include <event.h>
|
||||
|
||||
#include "transmission.h"
|
||||
|
|
|
@ -35,6 +35,8 @@
|
|||
#include <sys/stat.h>
|
||||
#include <unistd.h> /* usleep, stat */
|
||||
|
||||
#include <sys/queue.h> /* libevent needs this */
|
||||
#include <sys/types.h> /* libevent needs this */
|
||||
#include "event.h"
|
||||
|
||||
#ifdef WIN32
|
||||
|
|
Loading…
Add table
Reference in a new issue