GUACAMOLE-169: Move terminal headers to namespaced directory.

This commit is contained in:
Michael Jumper 2017-02-27 14:34:46 -08:00
parent d371f2d9ee
commit 3f7ccb6b9a
29 changed files with 41 additions and 41 deletions

View File

@ -22,7 +22,7 @@
#include "client.h"
#include "common-ssh/sftp.h"
#include "ssh.h"
#include "terminal.h"
#include "terminal/terminal.h"
#include "user.h"
#include <langinfo.h>

View File

@ -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>

View File

@ -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>

View File

@ -25,7 +25,7 @@
#include "settings.h"
#include "sftp.h"
#include "ssh.h"
#include "terminal.h"
#include "terminal/terminal.h"
#ifdef ENABLE_SSH_AGENT
#include "ssh_agent.h"

View File

@ -26,7 +26,7 @@
#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"

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -19,7 +19,7 @@
#include "config.h"
#include "input.h"
#include "terminal.h"
#include "terminal/terminal.h"
#include "telnet.h"
#include <guacamole/client.h>

View File

@ -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>

View File

@ -22,7 +22,7 @@
#include "config.h"
#include "settings.h"
#include "terminal.h"
#include "terminal/terminal.h"
#include <libtelnet.h>

View File

@ -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>

View File

@ -22,16 +22,16 @@ 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
noinst_HEADERS = \
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 \

View File

@ -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>

View File

@ -18,7 +18,7 @@
*/
#include "config.h"
#include "types.h"
#include "terminal/types.h"
#include <stdbool.h>
#include <unistd.h>

View File

@ -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>

View File

@ -18,7 +18,7 @@
*/
#include "config.h"
#include "scrollbar.h"
#include "terminal/scrollbar.h"
#include <guacamole/client.h>
#include <guacamole/layer.h>

View File

@ -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>

View File

@ -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>

View File

@ -19,7 +19,7 @@
#include "config.h"
#include "common/io.h"
#include "typescript.h"
#include "terminal/typescript.h"
#include <guacamole/timestamp.h>