diff options
author | runge <runge> | 2005-11-25 07:22:43 +0000 |
---|---|---|
committer | runge <runge> | 2005-11-25 07:22:43 +0000 |
commit | 8eb18f6cd8793ea55f04d3c736885b04c41aba4f (patch) | |
tree | d447343f6495e703690217928e2783dc1636df26 /libvncserver/tightvnc-filetransfer/filelistinfo.h | |
parent | de99644d2fa630828fd6e92ed206dd63da1fdfa9 (diff) | |
download | libtdevnc-8eb18f6cd8793ea55f04d3c736885b04c41aba4f.tar.gz libtdevnc-8eb18f6cd8793ea55f04d3c736885b04c41aba4f.zip |
fix deadlock from rfbReleaseExtensionIterator(), fix no libz/libjpeg builds, disable tightvnc-filetransfer if no libpthread, add --without-pthread option, rm // comments, set NAME_MAX if not defined, x11vnc: throttle load if fb update requests not taking place.
Diffstat (limited to 'libvncserver/tightvnc-filetransfer/filelistinfo.h')
-rw-r--r-- | libvncserver/tightvnc-filetransfer/filelistinfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libvncserver/tightvnc-filetransfer/filelistinfo.h b/libvncserver/tightvnc-filetransfer/filelistinfo.h index 543edbe..a53964c 100644 --- a/libvncserver/tightvnc-filetransfer/filelistinfo.h +++ b/libvncserver/tightvnc-filetransfer/filelistinfo.h @@ -28,6 +28,10 @@ #include <limits.h> +#if !defined(NAME_MAX) +#define NAME_MAX 255 +#endif + #define SUCCESS 1 #define FAILURE 0 |