freebsd-ports/editors/codelite/files/patch-Plugin_wxterminal.cpp
Pietro Cerutti 7e81b3cf72 - Update to 3.5.5375
Release notes: http://sf.net/projects/codelite/files/Releases/codelite-3.5/README
- Add options to enable MySQL and/or PostgreSQL in DB Explorer plugin
- Add option to enable clang-based code completion (needs clang from ports)
- Add devel to CATEGORIES
2012-03-01 08:46:32 +00:00

16 lines
416 B
C++

--- Plugin/wxterminal.cpp.orig 2011-06-09 22:23:36.000000000 +0200
+++ Plugin/wxterminal.cpp 2012-02-17 17:15:06.000000000 +0100
@@ -22,7 +22,13 @@
#endif
#if defined(__WXGTK__)
+#ifdef __FreeBSD__
+# include <sys/ioctl.h>
+# include <termios.h>
+# include <libutil.h>
+#else
# include <pty.h>
+#endif
# include "unixprocess_impl.h"
#elif defined(__WXMAC__)
# include <util.h>