~ubuntu-branches/ubuntu/vivid/gtk-vnc/vivid-proposed

« back to all changes in this revision

Viewing changes to .pc/Remove-GNUmakefile-links.patch/configure.ac

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2013-12-16 11:39:33 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20131216113933-rowrryjn82up3yr5
Tags: 0.5.3-0ubuntu1
* New upstream release:
  - Support QEMU LED state extension
  - Time out connection attempt after 10 seconds
  - Abort if out of memory when mmap'ing coroutine stack
  - Stop leaking coroutine stack memory
  - Improve perfornmance of ZRLE encoding by avoiding memmove
  - Only trigger keyboard grab sequence upon key release to
    allow modifiers to go to the remote server
  - Avoid busy loop upon I/O error which follows blocking I/O,
    commonly seen when a server drops the connection
  - Fix handling of --no-undefined flag
  - Don't break implicit pointer grab from mouse clicks
  - Don't drop mouse events that are out of bounds, clamp their
    coordinates instead
  - Show how to block all accelerators in gvncviewer demo program
* debian/control:
  - Use standards-version 3.9.4
* debian/libgvnc-1.0-0.symbols:
  - Updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
AC_PREREQ(2.63)
4
4
 
5
 
AC_INIT([gtk-vnc],[0.5.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gtk-vnc],[gtk-vnc],[http://live.gnome.org/gtk-vnc/])
 
5
AC_INIT([gtk-vnc],[0.5.3],[https://bugzilla.gnome.org/enter_bug.cgi?product=gtk-vnc],[gtk-vnc],[http://live.gnome.org/gtk-vnc/])
6
6
AC_CONFIG_SRCDIR([src/vncconnection.c])
7
7
AC_CONFIG_AUX_DIR([build-aux])
8
8
AC_CONFIG_HEADERS([config.h])
144
144
WITH_EXAMPLES=$withval
145
145
 
146
146
 
147
 
NO_UNDEFINED_LDFLAGS=
 
147
NO_UNDEFINED_FLAGS=
148
148
VERSION_SCRIPT_FLAGS=
149
149
USE_VERSION_DEFS=0
150
150
case "$host" in
155
155
    ;;
156
156
 
157
157
  *-*-cygwin*)
158
 
    NO_UNDEFINED_LDFLAGS="-no-undefined"
 
158
    NO_UNDEFINED_FLAGS="-no-undefined"
159
159
    ;;
160
160
 
161
161
  *)
162
 
    NO_UNDEFINED_FLAGS="-Wl,--no-undefined"
 
162
    `ld --help 2>&1 | grep -- --no-undefined >/dev/null` && \
 
163
      NO_UNDEFINED_FLAGS="-Wl,--no-undefined"
163
164
    VERSION_SCRIPT_FLAGS=-Wl,--version-script=
164
165
    `ld --help 2>&1 | grep -- --version-script >/dev/null` || \
165
166
      VERSION_SCRIPT_FLAGS="-Wl,-M -Wl,"