albfan / miraclecast

Connect external monitors to your system via Wifi-Display specification also known as Miracast
Other
3.81k stars 411 forks source link

Fix build with GCC 14.1 #510

Closed MarkMuth closed 4 months ago

MarkMuth commented 4 months ago

Compiling with gcc (GCC) 14.1.1 20240507 raised the following warning:

error: implicit declaration of function ‘gettimeofday’ [-Wimplicit-function-declaration]

Adding #include <sys/time.h> according to man gettimeofday fixes #509.

albfan commented 4 months ago

Thanks, I credit you on c83802f as unneeded time include needs to be removed too