freebsd-ports/x11/xfce4-screensaver/files/patch-src_gs-auth-pwent.c
2024-03-18 00:46:34 +01:00

13 lines
243 B
C

--- src/gs-auth-pwent.c.orig 2023-03-20 15:38:27 UTC
+++ src/gs-auth-pwent.c
@@ -38,7 +38,9 @@
#endif
#ifdef HAVE_LIBCRYPT
-# include <crypt.h>
+# ifndef __FreeBSD__
+# include <crypt.h>
+# endif
#else
# define crypt(a, b) NULL
#endif