diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2012-11-01 09:28:54 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2012-11-01 09:28:54 +0000 |
commit | 2ffc000fb1a62ae68fce83bf7943ed7e06a875f5 (patch) | |
tree | bb971f301072ebcc1710360e8c812e1efac7216e /net/x2goclient/files | |
parent | - update to 5485 (diff) |
- Update to version 3.99.2.2
- Use pkg-plist to register installed files
- Add option to disable LDAP support
- Don't install copy of GPLv2 license
PR: ports/172044
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=306788
Diffstat (limited to 'net/x2goclient/files')
-rw-r--r-- | net/x2goclient/files/patch-cupsprint.h | 10 | ||||
-rw-r--r-- | net/x2goclient/files/patch-sshmasterconnection.cpp | 12 | ||||
-rw-r--r-- | net/x2goclient/files/patch-sshprocess.cpp | 12 | ||||
-rw-r--r-- | net/x2goclient/files/patch-sshprocess.h | 15 |
4 files changed, 39 insertions, 10 deletions
diff --git a/net/x2goclient/files/patch-cupsprint.h b/net/x2goclient/files/patch-cupsprint.h deleted file mode 100644 index 7a283600d214..000000000000 --- a/net/x2goclient/files/patch-cupsprint.h +++ /dev/null @@ -1,10 +0,0 @@ ---- cupsprint.h.orig 2009-11-12 06:47:37.000000000 +0900 -+++ cupsprint.h 2011-11-23 03:23:33.000000000 +0900 -@@ -15,6 +15,7 @@ - #ifndef Q_OS_WIN - #include <QStringList> - #include <cups/cups.h> -+#include <cups/ppd.h> - /** - @author Oleksandr Shneyder <oleksandr.shneyder@obviously-nice.de> - */ diff --git a/net/x2goclient/files/patch-sshmasterconnection.cpp b/net/x2goclient/files/patch-sshmasterconnection.cpp new file mode 100644 index 000000000000..c8c349e6129b --- /dev/null +++ b/net/x2goclient/files/patch-sshmasterconnection.cpp @@ -0,0 +1,12 @@ +--- sshmasterconnection.cpp.orig 2011-11-25 21:08:10.000000000 +0900 ++++ sshmasterconnection.cpp 2011-12-20 01:50:14.000000000 +0900 +@@ -25,6 +25,9 @@ + #include <QDir> + #include <QTemporaryFile> + #ifndef Q_OS_WIN ++#include <sys/types.h> ++#include <sys/socket.h> ++#include <netinet/in.h> + #include <arpa/inet.h> + #endif + diff --git a/net/x2goclient/files/patch-sshprocess.cpp b/net/x2goclient/files/patch-sshprocess.cpp new file mode 100644 index 000000000000..41247a0aef96 --- /dev/null +++ b/net/x2goclient/files/patch-sshprocess.cpp @@ -0,0 +1,12 @@ +--- sshprocess.cpp.orig 2011-11-25 21:08:10.000000000 +0900 ++++ sshprocess.cpp 2011-12-20 01:53:47.000000000 +0900 +@@ -21,6 +21,9 @@ + #include <QTimer> + + #ifndef Q_OS_WIN ++#include <sys/types.h> ++#include <sys/socket.h> ++#include <netinet/in.h> + #include <arpa/inet.h> + #include <netinet/tcp.h> + #endif diff --git a/net/x2goclient/files/patch-sshprocess.h b/net/x2goclient/files/patch-sshprocess.h new file mode 100644 index 000000000000..a6030305a0d3 --- /dev/null +++ b/net/x2goclient/files/patch-sshprocess.h @@ -0,0 +1,15 @@ +--- sshprocess.h.orig 2011-11-25 21:08:10.000000000 +0900 ++++ sshprocess.h 2011-12-20 01:56:29.000000000 +0900 +@@ -17,6 +17,12 @@ + #ifndef SSHPROCESS_H + #define SSHPROCESS_H + ++#ifndef Q_OS_WIN ++#include <sys/types.h> ++#include <sys/socket.h> ++#include <netinet/in.h> ++#include <arpa/inet.h> ++#endif + #include <libssh/libssh.h> + #include <QObject> + |