freebsd-ports/editors/codelite/files/patch-CodeLite_unixprocess_impl.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

17 lines
406 B
C++

--- CodeLite/unixprocess_impl.cpp.orig 2011-10-11 18:58:27.000000000 +0200
+++ CodeLite/unixprocess_impl.cpp 2012-02-17 17:14:25.000000000 +0100
@@ -15,8 +15,14 @@
#include "procutils.h"
#ifdef __WXGTK__
+#ifdef __FreeBSD__
+# include <sys/ioctl.h>
+# include <termios.h>
+# include <libutil.h>
+#else
# include <pty.h>
# include <utmp.h>
+#endif
#else
# include <util.h>
#endif