GUACAMOLE-169: Move terminal headers to namespaced directory.
This commit is contained in:
parent
d371f2d9ee
commit
3f7ccb6b9a
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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>
|
||||
|
@ -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 \
|
||||
|
@ -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