mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
9a96a7cae9
- Fix build on FreeBSD 4.X PR: ports/97935 Submitted by: Shaun Amott <shaun@inerd.com> (maintainer)
15 lines
267 B
C++
15 lines
267 B
C++
--- lib/arglex.cc.orig Sat May 20 23:56:52 2006
|
|
+++ lib/arglex.cc Thu May 25 12:36:38 2006
|
|
@@ -21,6 +21,11 @@
|
|
|
|
#include <cctype>
|
|
|
|
+#ifdef __FreeBSD__
|
|
+#include <unistd.h>
|
|
+#include <stdio.h>
|
|
+#endif
|
|
+
|
|
#include <arglex.h>
|
|
#include <progname.h>
|
|
#include <quit.h>
|