vnc_client automake

This commit is contained in:
Michael Jumper
2010-09-21 18:12:42 -07:00
parent 3c95912111
commit d08c863e80
10 changed files with 698 additions and 23 deletions

View File

@@ -0,0 +1,23 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_CONFIG_SRCDIR(src/vnc_client.c)
AM_INIT_AUTOMAKE(libguac_client_vnc, 0.0.0)
# Checks for programs.
AC_PROG_CC
AC_PROG_LIBTOOL
# Checks for libraries.
AC_CHECK_LIB([guac], [guac_get_client])
AC_CHECK_LIB([png], [png_write_png])
AC_CHECK_LIB([vncclient], [rfbInitClient])
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h string.h syslog.h guacamole/client.h guacamole/guacio.h guacamole/protocol.h])
# Checks for library functions.
AC_FUNC_MALLOC
AC_CONFIG_FILES([Makefile])
AC_OUTPUT