summaryrefslogtreecommitdiff
path: root/games-sports/foobillard/files/foobillard-3.0a-fbsd.patch
blob: 08fa262f415fd221f4b61c4b71900a822f2e7a95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- a/configure.in
+++ b/configure.in
@@ -13,7 +13,7 @@ dnl Checks for libraries.
 
 dnl Checks for header files.
 AC_HEADER_STDC
-AC_CHECK_HEADERS(limits.h unistd.h math.h stdlib.h stdio.h)
+AC_CHECK_HEADERS(limits.h unistd.h math.h stdlib.h stdio.h endian.h sys/endian.h)
 
 dnl Checks for typedefs, structures, and compiler characteristics.
 AC_C_CONST
--- a/src/billard3d.c
+++ b/src/billard3d.c
@@ -24,7 +24,11 @@
 #include <string.h>
 #include <math.h>
 #include <unistd.h>
+#ifdef HAVE_ENDIAN_H
 #include <endian.h>
+#elif defined(HAVE_SYS_ENDIAN_H)
+#include <sys/endian.h>
+#endif
 
 #ifndef USE_SDL
 #include <GL/glut.h>