moved the OSXvnc-server to examples; IRIX fixes (not really IRIX, but shows there)

pull/1/head
dscho 21 years ago
parent fd96c5e835
commit 28a84b63fe

@ -1,6 +1,7 @@
Makefile Makefile
Makefile.in Makefile.in
configure configure
configure.lineno
config.status config.status
config.log config.log
libvncserver.spec libvncserver.spec

@ -35,30 +35,33 @@ AC_SUBST(X_LIBS)
AM_CONDITIONAL(HAVE_X, test $HAVE_X != "false") AM_CONDITIONAL(HAVE_X, test $HAVE_X != "false")
# Checks for libraries. # Checks for libraries.
AC_CHECK_HEADERS(jpeglib.h pthread.h zlib.h) AC_CHECK_HEADER(jpeglib.h, HAVE_JPEGLIB_H="true")
if test ! -z "$HAVE_JPEGLIB.H"; then AC_CHECK_HEADER(pthread.h, HAVE_PTHREAD_H="true")
AC_CHECK_HEADER(zlib.h, HAVE_ZLIB_H="true")
if test ! -z "$HAVE_JPEGLIB_H"; then
AC_CHECK_LIB(jpeg, jpeg_CreateCompress) AC_CHECK_LIB(jpeg, jpeg_CreateCompress)
fi fi
if test ! -z "$HAVE_PTHREAD.H"; then if test ! -z "$HAVE_PTHREAD_H"; then
AC_CHECK_LIB(pthread, pthread_mutex_lock) AC_CHECK_LIB(pthread, pthread_mutex_lock)
AC_CHECK_LIB(pthread, pthread_mutex_lock, HAVE_LIBPTHREAD="true") AC_CHECK_LIB(pthread, pthread_mutex_lock, HAVE_LIBPTHREAD="true")
fi fi
#AM_CONDITIONAL(HAVE_LIBPTHREAD, test ! -z "$HAVE_PTHREAD.H")
AM_CONDITIONAL(HAVE_LIBPTHREAD, test ! -z "$HAVE_LIBPTHREAD") AM_CONDITIONAL(HAVE_LIBPTHREAD, test ! -z "$HAVE_LIBPTHREAD")
if test ! -z "$HAVE_ZLIB.H"; then if test ! -z "$HAVE_ZLIB_H"; then
AC_CHECK_LIB(z, deflate) AC_CHECK_LIB(z, deflate, , HAVE_ZLIB_H="")
# check for c++, but don't fail if not found if test ! -z "$HAVE_ZLIB_H"; then
AC_CHECK_PROGS(CXX,[g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC],none) # check for c++, but don't fail if not found
AH_TEMPLATE(HAVE_ZRLE, [Use zrle compression; needs a c++ compiler]) AC_CHECK_PROGS(CXX,[g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC],none)
if test x$CXX != xnone; then AH_TEMPLATE(HAVE_ZRLE, [Use zrle compression; needs a c++ compiler])
AC_DEFINE(HAVE_ZRLE) if test x$CXX != xnone; then
AC_PROG_CXX AC_DEFINE(HAVE_ZRLE)
CCLD="\$(CXX)" AC_PROG_CXX
CCLD="\$(CXX)"
fi
fi fi
else else
CXX=none CXX=none
fi fi
AM_CONDITIONAL(HAVE_CXX, test x$CXX != xnone) AM_CONDITIONAL(HAVE_CXX, test x$CXX != xnone -a ! -z "$HAVE_ZLIB_H")
AC_SUBST(CCLD) AC_SUBST(CCLD)
# Checks for header files. # Checks for header files.

Loading…
Cancel
Save