26 lines
862 B
Plaintext
26 lines
862 B
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT(src/vnc_client.c)
|
|
AM_INIT_AUTOMAKE([libguac-client-vnc], 0.0.1)
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_LIBTOOL
|
|
|
|
# Checks for libraries.
|
|
AC_CHECK_LIB([guac], [guac_get_client],, AC_MSG_ERROR("libguac is required for communication via the guacamole protocol"))
|
|
AC_CHECK_LIB([png], [png_write_png],, AC_MSG_ERROR("libpng is required for writing png messages"))
|
|
AC_CHECK_LIB([vncclient], [rfbInitClient],, AC_MSG_ERROR("libvncclient is required"))
|
|
|
|
# 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_CHECK_FUNCS([nanosleep])
|
|
AC_FUNC_MALLOC
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|