Merge 0.9.12-incubating changes back to master.
This commit is contained in:
commit
c4903a8e36
@ -18,7 +18,7 @@
|
||||
#
|
||||
|
||||
AC_PREREQ([2.61])
|
||||
AC_INIT([guacamole-server], [0.9.11-incubating])
|
||||
AC_INIT([guacamole-server], [0.9.12-incubating])
|
||||
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
|
||||
AM_SILENT_RULES([yes])
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#
|
||||
|
||||
PROJECT_NAME = libguac
|
||||
PROJECT_NUMBER = 0.9.11-incubating
|
||||
PROJECT_NUMBER = 0.9.12-incubating
|
||||
|
||||
#
|
||||
# Warn about undocumented parameters and return values, but do not fill output
|
||||
|
@ -23,18 +23,18 @@ ACLOCAL_AMFLAGS = -I m4
|
||||
noinst_LTLIBRARIES = libguac_common_ssh.la
|
||||
|
||||
libguac_common_ssh_la_SOURCES = \
|
||||
guac_sftp.c \
|
||||
guac_ssh.c \
|
||||
guac_ssh_buffer.c \
|
||||
guac_ssh_key.c \
|
||||
guac_ssh_user.c
|
||||
buffer.c \
|
||||
sftp.c \
|
||||
ssh.c \
|
||||
key.c \
|
||||
user.c
|
||||
|
||||
noinst_HEADERS = \
|
||||
guac_sftp.h \
|
||||
guac_ssh.h \
|
||||
guac_ssh_buffer.h \
|
||||
guac_ssh_key.h \
|
||||
guac_ssh_user.h
|
||||
common-ssh/buffer.h \
|
||||
common-ssh/key.h \
|
||||
common-ssh/sftp.h \
|
||||
common-ssh/ssh.h \
|
||||
common-ssh/user.h
|
||||
|
||||
libguac_common_ssh_la_CFLAGS = \
|
||||
-Werror -Wall -pedantic \
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define GUAC_COMMON_SSH_SFTP_H
|
||||
|
||||
#include "common/json.h"
|
||||
#include "guac_ssh.h"
|
||||
#include "ssh.h"
|
||||
|
||||
#include <guacamole/object.h>
|
||||
#include <guacamole/user.h>
|
@ -20,7 +20,7 @@
|
||||
#ifndef GUAC_COMMON_SSH_H
|
||||
#define GUAC_COMMON_SSH_H
|
||||
|
||||
#include "guac_ssh_user.h"
|
||||
#include "user.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <libssh2.h>
|
@ -20,7 +20,7 @@
|
||||
#ifndef GUAC_COMMON_SSH_USER_H
|
||||
#define GUAC_COMMON_SSH_USER_H
|
||||
|
||||
#include "guac_ssh_key.h"
|
||||
#include "key.h"
|
||||
|
||||
/**
|
||||
* Data describing an SSH user, including their credentials.
|
@ -19,8 +19,8 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "guac_ssh_buffer.h"
|
||||
#include "guac_ssh_key.h"
|
||||
#include "common-ssh/buffer.h"
|
||||
#include "common-ssh/key.h"
|
||||
|
||||
#include <openssl/bio.h>
|
||||
#include <openssl/bn.h>
|
@ -17,8 +17,8 @@
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
#include "guac_sftp.h"
|
||||
#include "guac_ssh.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <guacamole/object.h>
|
@ -17,9 +17,9 @@
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
#include "guac_ssh.h"
|
||||
#include "guac_ssh_key.h"
|
||||
#include "guac_ssh_user.h"
|
||||
#include "common-ssh/key.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "common-ssh/user.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <libssh2.h>
|
@ -17,8 +17,8 @@
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
#include "guac_ssh_key.h"
|
||||
#include "guac_ssh_user.h"
|
||||
#include "common-ssh/key.h"
|
||||
#include "common-ssh/user.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
@ -104,7 +104,7 @@ libguac_la_CFLAGS = \
|
||||
-Werror -Wall -pedantic -Iguacamole
|
||||
|
||||
libguac_la_LDFLAGS = \
|
||||
-version-info 12:1:0 \
|
||||
-version-info 13:0:1 \
|
||||
@CAIRO_LIBS@ \
|
||||
@JPEG_LIBS@ \
|
||||
@PNG_LIBS@ \
|
||||
|
@ -27,9 +27,9 @@
|
||||
#include "user.h"
|
||||
|
||||
#ifdef ENABLE_COMMON_SSH
|
||||
#include <guac_sftp.h>
|
||||
#include <guac_ssh.h>
|
||||
#include <guac_ssh_user.h>
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "common-ssh/user.h"
|
||||
#endif
|
||||
|
||||
#include <freerdp/cache/cache.h>
|
||||
|
@ -41,9 +41,9 @@
|
||||
#include "rdp_svc.h"
|
||||
|
||||
#ifdef ENABLE_COMMON_SSH
|
||||
#include <guac_sftp.h>
|
||||
#include <guac_ssh.h>
|
||||
#include <guac_ssh_user.h>
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "common-ssh/user.h"
|
||||
#endif
|
||||
|
||||
#include <freerdp/cache/bitmap.h>
|
||||
|
@ -39,9 +39,9 @@
|
||||
#include <guacamole/client.h>
|
||||
|
||||
#ifdef ENABLE_COMMON_SSH
|
||||
#include "guac_sftp.h"
|
||||
#include "guac_ssh.h"
|
||||
#include "guac_ssh_user.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "common-ssh/user.h"
|
||||
#endif
|
||||
|
||||
#include <pthread.h>
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "guac_sftp.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "rdp.h"
|
||||
#include "sftp.h"
|
||||
|
||||
|
@ -20,9 +20,9 @@
|
||||
#include "config.h"
|
||||
|
||||
#include "client.h"
|
||||
#include "guac_sftp.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "ssh.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
#include "user.h"
|
||||
|
||||
#include <langinfo.h>
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "config.h"
|
||||
#include "clipboard.h"
|
||||
#include "ssh.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <guacamole/stream.h>
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "common/cursor.h"
|
||||
#include "common/display.h"
|
||||
#include "ssh.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <guacamole/user.h>
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "guac_sftp.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "sftp.h"
|
||||
#include "ssh.h"
|
||||
|
||||
|
@ -20,12 +20,12 @@
|
||||
#include "config.h"
|
||||
|
||||
#include "common/recording.h"
|
||||
#include "guac_sftp.h"
|
||||
#include "guac_ssh.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "settings.h"
|
||||
#include "sftp.h"
|
||||
#include "ssh.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
|
||||
#ifdef ENABLE_SSH_AGENT
|
||||
#include "ssh_agent.h"
|
||||
|
@ -22,11 +22,11 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "guac_sftp.h"
|
||||
#include "guac_ssh.h"
|
||||
#include "guac_ssh_user.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "common-ssh/user.h"
|
||||
#include "settings.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
|
||||
#ifdef ENABLE_SSH_AGENT
|
||||
#include "ssh_agent.h"
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "client.h"
|
||||
#include "settings.h"
|
||||
#include "telnet.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
#include "user.h"
|
||||
|
||||
#include <langinfo.h>
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define GUAC_TELNET__CLIENT_H
|
||||
|
||||
#include "config.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
|
||||
#include <pthread.h>
|
||||
#include <regex.h>
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "config.h"
|
||||
#include "clipboard.h"
|
||||
#include "telnet.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <guacamole/stream.h>
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "input.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
#include "telnet.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "config.h"
|
||||
#include "common/recording.h"
|
||||
#include "telnet.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <guacamole/protocol.h>
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "settings.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
|
||||
#include <libtelnet.h>
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "input.h"
|
||||
#include "settings.h"
|
||||
#include "telnet.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal/terminal.h"
|
||||
#include "user.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
|
@ -24,9 +24,9 @@
|
||||
#include "vnc.h"
|
||||
|
||||
#ifdef ENABLE_COMMON_SSH
|
||||
#include "guac_sftp.h"
|
||||
#include "guac_ssh.h"
|
||||
#include "sftp.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "common-ssh/user.h"
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_PULSE
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "guac_sftp.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "sftp.h"
|
||||
#include "vnc.h"
|
||||
|
||||
|
@ -37,8 +37,8 @@
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_COMMON_SSH
|
||||
#include "guac_sftp.h"
|
||||
#include "guac_ssh.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "sftp.h"
|
||||
#endif
|
||||
|
||||
|
@ -37,9 +37,9 @@
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_COMMON_SSH
|
||||
#include "guac_sftp.h"
|
||||
#include "guac_ssh.h"
|
||||
#include "guac_ssh_user.h"
|
||||
#include "common-ssh/sftp.h"
|
||||
#include "common-ssh/ssh.h"
|
||||
#include "common-ssh/user.h"
|
||||
#endif
|
||||
|
||||
#include <pthread.h>
|
||||
|
@ -23,15 +23,15 @@ ACLOCAL_AMFLAGS = -I m4
|
||||
noinst_LTLIBRARIES = libguac_terminal.la
|
||||
|
||||
noinst_HEADERS = \
|
||||
buffer.h \
|
||||
char_mappings.h \
|
||||
common.h \
|
||||
display.h \
|
||||
scrollbar.h \
|
||||
terminal.h \
|
||||
terminal_handlers.h \
|
||||
types.h \
|
||||
typescript.h
|
||||
terminal/buffer.h \
|
||||
terminal/char_mappings.h \
|
||||
terminal/common.h \
|
||||
terminal/display.h \
|
||||
terminal/scrollbar.h \
|
||||
terminal/terminal.h \
|
||||
terminal/terminal_handlers.h \
|
||||
terminal/types.h \
|
||||
terminal/typescript.h
|
||||
|
||||
libguac_terminal_la_SOURCES = \
|
||||
buffer.c \
|
||||
|
@ -19,8 +19,8 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "common.h"
|
||||
#include "terminal/buffer.h"
|
||||
#include "terminal/common.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "types.h"
|
||||
#include "terminal/types.h"
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <unistd.h>
|
||||
|
@ -19,10 +19,10 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "common.h"
|
||||
#include "common/surface.h"
|
||||
#include "display.h"
|
||||
#include "types.h"
|
||||
#include "terminal/common.h"
|
||||
#include "terminal/display.h"
|
||||
#include "terminal/types.h"
|
||||
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "scrollbar.h"
|
||||
#include "terminal/scrollbar.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <guacamole/layer.h>
|
||||
|
@ -19,15 +19,15 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "common.h"
|
||||
#include "common/clipboard.h"
|
||||
#include "common/cursor.h"
|
||||
#include "display.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal_handlers.h"
|
||||
#include "types.h"
|
||||
#include "typescript.h"
|
||||
#include "terminal/buffer.h"
|
||||
#include "terminal/common.h"
|
||||
#include "terminal/display.h"
|
||||
#include "terminal/terminal.h"
|
||||
#include "terminal/terminal_handlers.h"
|
||||
#include "terminal/types.h"
|
||||
#include "terminal/typescript.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <pthread.h>
|
||||
|
@ -19,10 +19,10 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "char_mappings.h"
|
||||
#include "terminal.h"
|
||||
#include "terminal_handlers.h"
|
||||
#include "types.h"
|
||||
#include "terminal/char_mappings.h"
|
||||
#include "terminal/terminal.h"
|
||||
#include "terminal/terminal_handlers.h"
|
||||
#include "terminal/types.h"
|
||||
|
||||
#include <guacamole/client.h>
|
||||
#include <guacamole/protocol.h>
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "common/io.h"
|
||||
#include "typescript.h"
|
||||
#include "terminal/typescript.h"
|
||||
|
||||
#include <guacamole/timestamp.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user