diff options
author | runge <runge> | 2006-01-12 12:54:02 +0000 |
---|---|---|
committer | runge <runge> | 2006-01-12 12:54:02 +0000 |
commit | 60918e6664cd62ea3d71b48cdfda8b89ab82029c (patch) | |
tree | 53a4e35275ffe67b6c7c0ceff3c6ce3d2211189d /x11vnc | |
parent | 9b3163c00bdb8d406b864f7a1282b5770d953425 (diff) | |
download | libvncserver-60918e6664cd62ea3d71b48cdfda8b89ab82029c.zip libvncserver-60918e6664cd62ea3d71b48cdfda8b89ab82029c.tar.gz |
configure.ac: add switches for most X extensions.
Diffstat (limited to 'x11vnc')
-rw-r--r-- | x11vnc/ChangeLog | 3 | ||||
-rw-r--r-- | x11vnc/README | 2 | ||||
-rwxr-xr-x | x11vnc/tkx11vnc | 4 | ||||
-rw-r--r-- | x11vnc/tkx11vnc.h | 6 | ||||
-rw-r--r-- | x11vnc/x11vnc.h | 8 |
5 files changed, 17 insertions, 6 deletions
diff --git a/x11vnc/ChangeLog b/x11vnc/ChangeLog index 41c058e..dcab5b4 100644 --- a/x11vnc/ChangeLog +++ b/x11vnc/ChangeLog @@ -1,3 +1,6 @@ +2006-01-12 Karl Runge <runge@karlrunge.com> + * fix -DSMALL_FOOTPRINT=N builds. + 2006-01-11 Karl Runge <runge@karlrunge.com> * x11vnc: close fd > 2 in run_user_command(), -nocmds in crash_debug, fix 64bit bug for -solid. diff --git a/x11vnc/README b/x11vnc/README index f36c5cc..7e7bc33 100644 --- a/x11vnc/README +++ b/x11vnc/README @@ -1,5 +1,5 @@ -x11vnc README file Date: Wed Jan 11 13:09:08 EST 2006 +x11vnc README file Date: Wed Jan 11 23:08:25 EST 2006 The following information is taken from these URLs: diff --git a/x11vnc/tkx11vnc b/x11vnc/tkx11vnc index d8cc569..aabfa0a 100755 --- a/x11vnc/tkx11vnc +++ b/x11vnc/tkx11vnc @@ -3,7 +3,7 @@ exec wish "$0" "$@" catch {rename send {}} # -# Copyright (c) 2004-2005 Karl J. Runge <runge@karlrunge.com> +# Copyright (c) 2004-2006 Karl J. Runge <runge@karlrunge.com> # All rights reserved. # # This is free software; you can redistribute it and/or modify @@ -5955,7 +5955,7 @@ if {"$argv" == "-spit"} { puts "#ifndef _TKX11VNC_H" puts "#define _TKX11VNC_H" puts "#ifdef NOGUI" - puts "char gui_code[] = \"\";" + puts "char gui_code\[\] = \"\";" puts "#else" puts "/*" puts " * tkx11vnc.h: generated by 'tkx11vnc -spit'" diff --git a/x11vnc/tkx11vnc.h b/x11vnc/tkx11vnc.h index 58c02e6..c5aedf8 100644 --- a/x11vnc/tkx11vnc.h +++ b/x11vnc/tkx11vnc.h @@ -1,7 +1,7 @@ #ifndef _TKX11VNC_H #define _TKX11VNC_H #ifdef NOGUI -char gui_code = ""; +char gui_code[] = ""; #else /* * tkx11vnc.h: generated by 'tkx11vnc -spit' @@ -14,7 +14,7 @@ char gui_code = ""; "exec wish \"$0\" \"$@\"\n" "catch {rename send {}}\n" "#\n" -"# Copyright (c) 2004-2005 Karl J. Runge <runge@karlrunge.com>\n" +"# Copyright (c) 2004-2006 Karl J. Runge <runge@karlrunge.com>\n" "# All rights reserved.\n" "#\n" "# This is free software; you can redistribute it and/or modify\n" @@ -5966,7 +5966,7 @@ char gui_code = ""; " puts \"#ifndef _TKX11VNC_H\"\n" " puts \"#define _TKX11VNC_H\"\n" " puts \"#ifdef NOGUI\"\n" -" puts \"char gui_code[] = \\\"\\\";\"\n" +" puts \"char gui_code\\[\\] = \\\"\\\";\"\n" " puts \"#else\"\n" " puts \"/*\"\n" " puts \" * tkx11vnc.h: generated by 'tkx11vnc -spit'\"\n" diff --git a/x11vnc/x11vnc.h b/x11vnc/x11vnc.h index ce20af5..9ad8325 100644 --- a/x11vnc/x11vnc.h +++ b/x11vnc/x11vnc.h @@ -117,6 +117,11 @@ #endif #if (SMALL_FOOTPRINT > 1) +#undef LIBVNCSERVER_HAVE_XKEYBOARD +#undef LIBVNCSERVER_HAVE_LIBXINERAMA +#undef LIBVNCSERVER_HAVE_LIBXRANDR +#undef LIBVNCSERVER_HAVE_LIBXFIXES +#undef LIBVNCSERVER_HAVE_LIBXDAMAGE #define LIBVNCSERVER_HAVE_XKEYBOARD 0 #define LIBVNCSERVER_HAVE_LIBXINERAMA 0 #define LIBVNCSERVER_HAVE_LIBXRANDR 0 @@ -125,6 +130,9 @@ #endif #if (SMALL_FOOTPRINT > 2) +#undef LIBVNCSERVER_HAVE_UTMPX_H +#undef LIBVNCSERVER_HAVE_PWD_H +#undef REMOTE_CONTROL #define LIBVNCSERVER_HAVE_UTMPX_H 0 #define LIBVNCSERVER_HAVE_PWD_H 0 #define REMOTE_CONTROL 0 |