mirror of
https://git.freebsd.org/ports.git
synced 2025-05-27 16:36:28 -04:00
14 lines
355 B
C
14 lines
355 B
C
--- glob/glob.h.orig Sun Nov 10 15:32:00 2002
|
|
+++ glob/glob.h Sun Nov 10 15:32:49 2002
|
|
@@ -48,7 +48,11 @@
|
|
/* We need `size_t' for the following definitions. */
|
|
#ifndef __size_t
|
|
# if defined __GNUC__ && __GNUC__ >= 2
|
|
+#if (__FreeBSD__ <= 4)
|
|
typedef __SIZE_TYPE__ __size_t;
|
|
+#else
|
|
+#include <sys/types.h>
|
|
+#endif
|
|
# else
|
|
/* This is a guess. */
|
|
/*hb
|