diff options
author | Sahil Tandon <sahil@FreeBSD.org> | 2010-05-28 00:49:18 +0000 |
---|---|---|
committer | Sahil Tandon <sahil@FreeBSD.org> | 2010-05-28 00:49:18 +0000 |
commit | d3b77479f4c3cb75c0b9cd2b65ab14dd32687bfa (patch) | |
tree | 046a6ec01aba9faaf2090117635b2e85b92693e9 /editors | |
parent | c3bc2173ad50ca416ff7f9c4f9cc30b281dfdf8d (diff) | |
download | ports-d3b77479f4c3cb75c0b9cd2b65ab14dd32687bfa.tar.gz ports-d3b77479f4c3cb75c0b9cd2b65ab14dd32687bfa.zip |
- Fix build by not looking for STREAMS headers
Reported by: QAT
Approved by: wxs@ (mentor)
Notes
Notes:
svn path=/head/; revision=255216
Diffstat (limited to 'editors')
-rw-r--r-- | editors/cooledit/files/patch-rxvt::_rxvtlib.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/cooledit/files/patch-rxvt::_rxvtlib.h b/editors/cooledit/files/patch-rxvt::_rxvtlib.h new file mode 100644 index 000000000000..c5d8a577e5b9 --- /dev/null +++ b/editors/cooledit/files/patch-rxvt::_rxvtlib.h @@ -0,0 +1,11 @@ +--- rxvt/_rxvtlib.h.orig 2010-05-26 21:25:41.000000000 -0400 ++++ rxvt/_rxvtlib.h 2010-05-26 21:39:11.000000000 -0400 +@@ -128,7 +128,7 @@ + #ifdef TTY_GID_SUPPORT + # include <grp.h> + #endif +-#ifdef PTYS_ARE_PTMX ++#if defined(PTYS_ARE_PTMX) && !defined(__FreeBSD__) + # include <sys/resource.h> /* for struct rlimit */ + # include <sys/stropts.h> /* for I_PUSH */ + #endif |