Moved library/protocol loading and argument parsing into libguac for future connect message. Proxy no longer uses command-line specified protocol and connection info.

This commit is contained in:
Michael Jumper
2010-11-25 16:26:07 -08:00
parent 14a5135f88
commit 6c2616079d
5 changed files with 53 additions and 94 deletions

View File

@@ -8,7 +8,6 @@ AM_INIT_AUTOMAKE(guacd, 0.0.1)
AC_PROG_CC
# Checks for libraries.
AC_CHECK_LIB([dl], [dlopen],, AC_MSG_ERROR("libdl is required for loading client plugins"))
AC_CHECK_LIB([guac], [guac_get_client],, AC_MSG_ERROR("libguac must be installed first"))
AC_CHECK_LIB([pthread], [pthread_create],, AC_MSG_ERROR("POSIX threads (libpthread) must be installed"))