~ubuntu-branches/ubuntu/oneiric/docky/oneiric

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Rico Tzschichholz
  • Date: 2010-07-01 21:21:50 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100701212150-1dqehqxey8rrvtlo
Tags: 2.0.5-1
* New upstream release 2.0.5 "Be proud of your dock",
  changes include:
  + remove --debug flag from launcher for lower memory usage
  + update the about dialog credits to list documenters and make translation 
    tab easier to read
  + change url in about dialog to the launchpad project page
  + Window-Matching
    - fix for applications commandline
    - properly match qt creator (LP: #594814)
    - prefer local over global launchers (LP: #588073) (LP: #592841)
    - match prefix for gksudo (LP: #516433)
    - fix nautilus items showing active indicator when desktop 
      is focused (LP: #487113)
    - fix matching wine apps that use a prefixed launcher (LP: #596092)
  + Memory Leaks
    - dispose of calendar painter when the clock item is disposed
    - fix leak in AutoHideManager
    - several fixes using Cairo.Context.Target and Pango.Layout
    - fix leak in PagingPainters
    - fix leak in recursive file-deletion
    - fix leaking SeparatorItems, WnckDockItems
    - fix leaks with FileEmblems
    - fix Pixbuf related leaks
    - fix some leaks regarding FileMonitors
    - fix leaks regarding Tiles and AbtractTileObjects
    - fix leaking Glib.FileAdapter caused by unreferenced Action in 
      FileDockItem
  + Handle invalid desktopfile entry and UriFormatException in 
    FileApplicationProvider (LP: #595921)
  + fix potential crash for invalid HelperMetadata
  + handle drops correctly
  + fix handling of Helpers in HelperService
  + make the sliders in preferences behave better
  + fix drawing of rotated items
  + fix HoveredItem click-position
  + avoids fatal errors on console when loading embedded icons when no 
    height or width is specified and when dock items have a null Icon
  + fix icon theme change not refreshing the dock icons (LP: #590205)
  + fix SVG rendering bug
  + fix iconsize temporarily getting large when adding to full dock 
    (LP: #579576)
  + fix the 'crash in PinToDock' (LP: #588073)
  + make 3d background height more consistent and a tad larger (LP: #503038)
  + fix dragging multiple files to a folder on the dock, which caused 
    a crash and data corruption (LP: #579049)
  + don't request animations if urgent state is removed from a window and 
    fix glow location (LP: #596422)
  + fix window previews being offset (LP: #495065)
  + fix broken zoom after shrinking icon size (LP: #598924)
  + fix problem with hovers still visible when painters show
  + fix displaying default icon in place of missing file emblem (LP: #534651)
  + fix crash when gconf key for menus_have_icons is not set (LP: #573751)
  + make sure painters fit on screen (LP: #589978)
  + fix icon minimize animations not working immediately for some newly 
    opened windows
  + don't dispose our static DockyItem
  + fix CurrentDesktopOnly not working when dragging a window across desktops
    (LP: #600290)
  + GMail: 
    - fix thread-guards and remove deprecated code
    - fix problem with feeds that don't have an author entry (LP: #595530)
  + NPR: fix bug where removing your last NPR station unloaded the docklet
    and fix station icon
  + NetworkManager: fix crash caused when NM goes away
    and fix icons and add another fallback icon (LP: #588581)
  + Mounter:
    - fixed some leaks
    - only remove mounted items if they were successfully unmounted 
      (LP: #597637)
    - fix duplicate icons showing in mounter (LP: #525306)
  + Weather: fix feels like temp showing incorrect for metric (LP: #597670)
  + RecentDocuments: 
    - fixed some leaks
    - fix sensitivity of recent docs clear menu item - even if docky shows 
      the list as empty does not mean it cant be cleared
* debian/patches/01_use_cli_for_wrapper.patch:
  + patch wrapper script to meet the Debian CLI Policy
* debian/control:
  + Bump Standards version to 3.9.0 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
648
648
AC_DEFUN([IT_PO_SUBDIR],
649
649
[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
650
650
dnl
651
 
dnl The following CONFIG_COMMANDS should be exetuted at the very end
 
651
dnl The following CONFIG_COMMANDS should be executed at the very end
652
652
dnl of config.status.
653
653
AC_CONFIG_COMMANDS_PRE([
654
654
  AC_CONFIG_COMMANDS([$1/stamp-it], [
724
724
])
725
725
 
726
726
# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
 
727
# serial 1 (pkg-config-0.24)
727
728
728
729
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
729
730
#
751
752
AC_DEFUN([PKG_PROG_PKG_CONFIG],
752
753
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
753
754
m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
754
 
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
 
755
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
 
756
AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
 
757
AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
 
758
 
755
759
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
756
760
        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
757
761
fi
764
768
                AC_MSG_RESULT([no])
765
769
                PKG_CONFIG=""
766
770
        fi
767
 
                
768
771
fi[]dnl
769
772
])# PKG_PROG_PKG_CONFIG
770
773
 
773
776
# Check to see whether a particular set of modules exists.  Similar
774
777
# to PKG_CHECK_MODULES(), but does not set variables or print errors.
775
778
#
776
 
#
777
 
# Similar to PKG_CHECK_MODULES, make sure that the first instance of
778
 
# this or PKG_CHECK_MODULES is called, or make sure to call
779
 
# PKG_CHECK_EXISTS manually
 
779
# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
 
780
# only at the first occurence in configure.ac, so if the first place
 
781
# it's called might be skipped (such as if it is within an "if", you
 
782
# have to call PKG_CHECK_EXISTS manually
780
783
# --------------------------------------------------------------
781
784
AC_DEFUN([PKG_CHECK_EXISTS],
782
785
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
783
786
if test -n "$PKG_CONFIG" && \
784
787
    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
785
 
  m4_ifval([$2], [$2], [:])
 
788
  m4_default([$2], [:])
786
789
m4_ifvaln([$3], [else
787
790
  $3])dnl
788
791
fi])
789
792
 
790
 
 
791
793
# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
792
794
# ---------------------------------------------
793
795
m4_define([_PKG_CONFIG],
794
 
[if test -n "$PKG_CONFIG"; then
795
 
    if test -n "$$1"; then
796
 
        pkg_cv_[]$1="$$1"
797
 
    else
798
 
        PKG_CHECK_EXISTS([$3],
799
 
                         [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
800
 
                         [pkg_failed=yes])
801
 
    fi
802
 
else
803
 
        pkg_failed=untried
 
796
[if test -n "$$1"; then
 
797
    pkg_cv_[]$1="$$1"
 
798
 elif test -n "$PKG_CONFIG"; then
 
799
    PKG_CHECK_EXISTS([$3],
 
800
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
 
801
                     [pkg_failed=yes])
 
802
 else
 
803
    pkg_failed=untried
804
804
fi[]dnl
805
805
])# _PKG_CONFIG
806
806
 
842
842
See the pkg-config man page for more details.])
843
843
 
844
844
if test $pkg_failed = yes; then
 
845
        AC_MSG_RESULT([no])
845
846
        _PKG_SHORT_ERRORS_SUPPORTED
846
847
        if test $_pkg_short_errors_supported = yes; then
847
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
 
848
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
848
849
        else 
849
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
 
850
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
850
851
        fi
851
852
        # Put the nasty error message in config.log where it belongs
852
853
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
853
854
 
854
 
        ifelse([$4], , [AC_MSG_ERROR(dnl
 
855
        m4_default([$4], [AC_MSG_ERROR(
855
856
[Package requirements ($2) were not met:
856
857
 
857
858
$$1_PKG_ERRORS
859
860
Consider adjusting the PKG_CONFIG_PATH environment variable if you
860
861
installed software in a non-standard prefix.
861
862
 
862
 
_PKG_TEXT
863
 
])],
864
 
                [AC_MSG_RESULT([no])
865
 
                $4])
 
863
_PKG_TEXT])dnl
 
864
        ])
866
865
elif test $pkg_failed = untried; then
867
 
        ifelse([$4], , [AC_MSG_FAILURE(dnl
 
866
        AC_MSG_RESULT([no])
 
867
        m4_default([$4], [AC_MSG_FAILURE(
868
868
[The pkg-config script could not be found or is too old.  Make sure it
869
869
is in your PATH or set the PKG_CONFIG environment variable to the full
870
870
path to pkg-config.
871
871
 
872
872
_PKG_TEXT
873
873
 
874
 
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
875
 
                [$4])
 
874
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl
 
875
        ])
876
876
else
877
877
        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
878
878
        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
879
879
        AC_MSG_RESULT([yes])
880
 
        ifelse([$3], , :, [$3])
 
880
        $3
881
881
fi[]dnl
882
882
])# PKG_CHECK_MODULES
883
883