Programming Languages: C
License: GNU General Public License version 2.0 (GPLv2)
browse code,
statistics,
last commit on 2012-05-23
git clone git://libvncserver.git.sourceforge.net/gitroot/libvncserver/libvncserver (read-only)
Fixed in git fef4386accfe686abc304e43fec235eefdbacd3e Yup. fine to close it.
2012-05-23 04:17:38 PDT by mackyle
bk138 pushed 1 commit(s) to refs/heads/master in the libvncserver Git repository of the LibVNCServer project.
2012-05-23 03:18:47 PDT by bk138
I had a talk on the mailing list about our versioning, consensus was to just use a three-digit scheme, i.e. major minor patchlevel. Thus, 0.9.10 will be major 0 minor 9 patchlevel 10. Will release that version soon. Ok to close the issue from your side?.
2012-05-23 03:03:45 PDT by bk138
Excellent. They will have a LIBVNCSERVER (or similar) prefix on them though, right? +# set detailed version info +AC_DEFINE(LIBVNCSERVER_MAJOR_VERSION, 0, LibVNCServer major version) +AC_DEFINE(LIBVNCSERVER_MINOR_VERSION, 9, LibVNCServer minor version) +AC_DEFINE(LIBVNCSERVER_RELEASE_NUMBER, 10, LibVNCServer release number) +AC_DEFINE(LIBVNCSERVER_SUBRELEASE_NUMBER, 0, LibVNCServer subrelease...
2012-05-21 12:45:14 PDT by mackyle
I've now done it this way to somehow accomodate the four-digit version number. What do you think? +# set detailed version info +AC_DEFINE(MAJOR_VERSION, 0, LibVNCServer major version) +AC_DEFINE(MINOR_VERSION, 9, LibVNCServer minor version) +AC_DEFINE(RELEASE_NUMBER, 10, LibVNCServer release number) +AC_DEFINE(SUBRELEASE_NUMBER, 0, LibVNCServer subrelease number aka patchlevel)
2012-05-21 07:56:42 PDT by bk138
bk138 pushed 1 commit(s) to refs/heads/master in the libvncserver Git repository of the LibVNCServer project.
2012-05-21 05:46:31 PDT by bk138
Pushed to master, thanks. (Guess we will do a 0.9.9.1 release shortly)
2012-05-21 05:40:43 PDT by bk138
The 0.9.9 release segfaults on OS X when one or the other of listenSock or listen6Sock are -1. If you have, for example, old code that does not know about the new listen6Sock and related fields, it may not be setting them when running against version 0.9.9. That can result in listenSock being >= 0 but listen6Sock still being -1. The file sockets.c ends up doing a FD_ISSET(-1, ...) test...
2012-05-18 01:14:29 PDT by mackyle
Please add something like the following in rfbconfig.h: /* What it might look like for the 0.9.8.2 release */ #define LIBVNCSERVER_VERSION_MAJOR 0.9 #define LIBVNCSERVER_VERSION_MINOR 8 #define LIBVNCSERVER_VERSION_PATCHLEVEL 2 /* What it might look like for the 0.9.9 release */ #define LIBVNCSERVER_VERSION_MAJOR 0.9 #define LIBVNCSERVER_VERSION_MINOR 9 #define...
2012-05-18 00:45:33 PDT by mackyle
bk138 pushed 1 commit(s) to refs/heads/master in the libvncserver Git repository of the LibVNCServer project.
2012-05-09 08:32:55 PDT by bk138