Fixed includes, update Makefile.am

This commit is contained in:
Michael Jumper 2012-09-04 23:28:58 -07:00
parent 8807914668
commit 63e39befef
3 changed files with 15 additions and 6 deletions

View File

@ -38,6 +38,8 @@
#ifndef _GUAC_LAYER_H
#define _GUAC_LAYER_H
#include "client.h"
/**
* Provides functions and structures required for allocating and using layers.
*

View File

@ -38,6 +38,8 @@
#ifndef _GUAC_TIME_H
#define _GUAC_TIME_H
#include <stdint.h>
/**
* Provides functions and structures for creating timestamps.
*

View File

@ -41,13 +41,18 @@ AM_CFLAGS = -Werror -Wall -pedantic -I../include
libguacincdir = $(includedir)/guacamole
libguacinc_HEADERS = \
../include/client.h \
../include/socket.h \
../include/error.h \
../include/instruction.h \
../include/layer.h \
../include/plugin.h \
../include/protocol.h \
../include/error.h
../include/resource.h \
../include/socket.h \
../include/time.h
noinst_HEADERS = \
../include/palette.h \
../include/client-handlers.h \
../include/palette.h \
../include/unicode.h
libguac_la_SOURCES = \