mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
163a2ffc79
- add new URL Thanks to watchman@ludd.luth.se for the pointer - make portlint happy - honor given CFLAGS
25 lines
428 B
C++
25 lines
428 B
C++
--- CmdPipe.cpp.orig Wed Jan 2 22:19:34 2002
|
|
+++ CmdPipe.cpp Fri Sep 5 21:13:34 2003
|
|
@@ -17,9 +17,11 @@
|
|
#include <string.h>
|
|
#include <signal.h>
|
|
|
|
+#if !defined(__FreeBSD__)
|
|
#if defined(__alpha__)
|
|
#include <cma.h>
|
|
#endif
|
|
+#endif
|
|
|
|
#if defined(AIX)
|
|
#include <sys/select.h>
|
|
@@ -28,6 +30,9 @@
|
|
#endif
|
|
|
|
#if defined(__linux__)
|
|
+ #include <sys/time.h>
|
|
+#endif
|
|
+#if defined(__FreeBSD__)
|
|
#include <sys/time.h>
|
|
#endif
|
|
|