~ubuntu-branches/debian/jessie/tickr/jessie

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Package Import Robot
  • Author(s): Emmanuel Thomas-Maurin
  • Date: 2012-06-04 14:23:24 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120604142324-j6ycu0cw6vvoahhy
Tags: 0.6.1-1
* Add: 'quick setup' thing (in tickr_quicksetup.c) which is launched
  at program startup if config file doesn't exist.

* Little improvements in layout of 'feed picker win' and 'preferences
  win'.

* Fix a segfault that happens when trying to export params and no
  config file exists yet.

* Make several windows that should not be resized by user, unresizable.

* Fix Launchpad bug #1007346: When 'window always-on-top' is disabled,
  'visible on all user desktops' stops working.

* If mouse wheel scrolling applies to speed (or feed), then Ctrl +
  mouse wheel scrolling applies to feed (or speed.)

* No real code changes in libetm, only in comments, so no need for a
  new version number.

* Update tickr_helptext.c and tickr.1 (man page.)

* Add new cli option 'no-ui' (similar to 'instance-id') used by new
  IF_UI_ALLOWED macro and remove all #if USE_GUI occurences.

* In tickr_list.c, free listfname before using it. Fixed by swapping 2
  lines:
    warning(FALSE, 4, "Can't save URL list ", listfname, ...);
    l_str_free(listfname);

* Use/add #define
    FONT_MAXLEN         68
    ARBITRARY_TASKBAR_HEIGHT    25
  to replace a few 'magic' numeric values.

* Rename: rss_title/description(_delimiter) ->
    item_title/description(_delimiter)
  then add new param: feed_title(_delimiter). Now we have:
  feed title / item title / item description.

* Use table in resource properties window.

* Fix a bug in f_list_load_from_file() in tickr_list.c which
  uncorrectly retrieves any feed title string containing TITLE_TAG_CHAR
  when TITLE_TAG_CHAR has not been removed from string first, for
  instance: 'NYT > World' -> ' World'.

* New param: disable left-click.

* Add 'check for updates' feature.

* Launch 'import OPML file' if feed list doesn't exist.

* Remove code changing get_params()->disable_popups value in
    START/END_PAUSE_TICKER_WHILE_OPENING
  macros which prevents this setting to be saved and add
    START/END_PAUSE_TICKER_ENABLE_POPUPS_WHILE_OPENING
  new macros. Which ones to use depends on context.

* Move:
    #ifdef G_OS_WIN32
    extern FILE *stdout_fp, *stderr_fp;
    #endif
  from *.c into tickr.h.

* Default always-on-top setting changed to 'n' (so that tickr is not
  intrusive by default.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
 
1
# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
2
2
 
3
3
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4
 
# 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
 
4
# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
 
5
# Inc.
5
6
# This file is free software; the Free Software Foundation
6
7
# gives unlimited permission to copy and/or distribute it,
7
8
# with or without modifications, as long as this notice is preserved.
13
14
 
14
15
m4_ifndef([AC_AUTOCONF_VERSION],
15
16
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16
 
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],,
17
 
[m4_warning([this file was generated for autoconf 2.67.
 
17
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
 
18
[m4_warning([this file was generated for autoconf 2.68.
18
19
You have another version of autoconf.  It may work, but is not guaranteed to.
19
20
If you have problems, you may need to regenerate the build system entirely.
20
21
To do so, use the procedure documented by the package, typically `autoreconf'.])])
47
48
# ----------------------------------
48
49
AC_DEFUN([PKG_PROG_PKG_CONFIG],
49
50
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
50
 
m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
 
51
m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
 
52
m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
51
53
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
52
54
AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
53
55
AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
93
95
    pkg_cv_[]$1="$$1"
94
96
 elif test -n "$PKG_CONFIG"; then
95
97
    PKG_CHECK_EXISTS([$3],
96
 
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
 
98
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
 
99
                      test "x$?" != "x0" && pkg_failed=yes ],
97
100
                     [pkg_failed=yes])
98
101
 else
99
102
    pkg_failed=untried
141
144
        AC_MSG_RESULT([no])
142
145
        _PKG_SHORT_ERRORS_SUPPORTED
143
146
        if test $_pkg_short_errors_supported = yes; then
144
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
 
147
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
145
148
        else 
146
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
 
149
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
147
150
        fi
148
151
        # Put the nasty error message in config.log where it belongs
149
152
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
177
180
fi[]dnl
178
181
])# PKG_CHECK_MODULES
179
182
 
180
 
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 
183
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
 
184
# Foundation, Inc.
181
185
#
182
186
# This file is free software; the Free Software Foundation
183
187
# gives unlimited permission to copy and/or distribute it,
184
188
# with or without modifications, as long as this notice is preserved.
185
189
 
 
190
# serial 1
 
191
 
186
192
# AM_AUTOMAKE_VERSION(VERSION)
187
193
# ----------------------------
188
194
# Automake X.Y traces this macro to ensure aclocal.m4 has been
192
198
[am__api_version='1.11'
193
199
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
194
200
dnl require some minimum version.  Point them to the right macro.
195
 
m4_if([$1], [1.11.1], [],
 
201
m4_if([$1], [1.11.3], [],
196
202
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
197
203
])
198
204
 
208
214
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
209
215
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
210
216
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
211
 
[AM_AUTOMAKE_VERSION([1.11.1])dnl
 
217
[AM_AUTOMAKE_VERSION([1.11.3])dnl
212
218
m4_ifndef([AC_AUTOCONF_VERSION],
213
219
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
214
220
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
215
221
 
216
222
# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
217
223
 
218
 
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
224
# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
219
225
#
220
226
# This file is free software; the Free Software Foundation
221
227
# gives unlimited permission to copy and/or distribute it,
222
228
# with or without modifications, as long as this notice is preserved.
223
229
 
 
230
# serial 1
 
231
 
224
232
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
225
233
# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
226
234
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
302
310
Usually this means the macro was only invoked conditionally.]])
303
311
fi])])
304
312
 
305
 
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
306
 
# Free Software Foundation, Inc.
 
313
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
 
314
# 2010, 2011 Free Software Foundation, Inc.
307
315
#
308
316
# This file is free software; the Free Software Foundation
309
317
# gives unlimited permission to copy and/or distribute it,
310
318
# with or without modifications, as long as this notice is preserved.
311
319
 
312
 
# serial 10
 
320
# serial 12
313
321
 
314
322
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
315
323
# written in clear, in which case automake, when reading aclocal.m4,
349
357
  # instance it was reported that on HP-UX the gcc test will end up
350
358
  # making a dummy file named `D' -- because `-MD' means `put the output
351
359
  # in D'.
 
360
  rm -rf conftest.dir
352
361
  mkdir conftest.dir
353
362
  # Copy depcomp to subdir because otherwise we won't find it if we're
354
363
  # using a relative directory.
413
422
        break
414
423
      fi
415
424
      ;;
416
 
    msvisualcpp | msvcmsys)
 
425
    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
417
426
      # This compiler won't grok `-c -o', but also, the minuso test has
418
427
      # not run yet.  These depmodes are late enough in the game, and
419
428
      # so weak that their functioning should not be impacted.
478
487
if test "x$enable_dependency_tracking" != xno; then
479
488
  am_depcomp="$ac_aux_dir/depcomp"
480
489
  AMDEPBACKSLASH='\'
 
490
  am__nodep='_no'
481
491
fi
482
492
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
483
493
AC_SUBST([AMDEPBACKSLASH])dnl
484
494
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
 
495
AC_SUBST([am__nodep])dnl
 
496
_AM_SUBST_NOTMAKE([am__nodep])dnl
485
497
])
486
498
 
487
499
# Generate code to set up dependency tracking.              -*- Autoconf -*-
703
715
done
704
716
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
705
717
 
706
 
# Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
 
718
# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
 
719
# Inc.
707
720
#
708
721
# This file is free software; the Free Software Foundation
709
722
# gives unlimited permission to copy and/or distribute it,
710
723
# with or without modifications, as long as this notice is preserved.
711
724
 
 
725
# serial 1
 
726
 
712
727
# AM_PROG_INSTALL_SH
713
728
# ------------------
714
729
# Define $install_sh.
875
890
fi
876
891
])
877
892
 
878
 
# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
 
893
# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
 
894
# Inc.
879
895
#
880
896
# This file is free software; the Free Software Foundation
881
897
# gives unlimited permission to copy and/or distribute it,
882
898
# with or without modifications, as long as this notice is preserved.
883
899
 
 
900
# serial 1
 
901
 
884
902
# AM_PROG_MKDIR_P
885
903
# ---------------
886
904
# Check for `mkdir -p'.
903
921
 
904
922
# Helper functions for option handling.                     -*- Autoconf -*-
905
923
 
906
 
# Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
 
924
# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
 
925
# Foundation, Inc.
907
926
#
908
927
# This file is free software; the Free Software Foundation
909
928
# gives unlimited permission to copy and/or distribute it,
910
929
# with or without modifications, as long as this notice is preserved.
911
930
 
912
 
# serial 4
 
931
# serial 5
913
932
 
914
933
# _AM_MANGLE_OPTION(NAME)
915
934
# -----------------------
917
936
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
918
937
 
919
938
# _AM_SET_OPTION(NAME)
920
 
# ------------------------------
 
939
# --------------------
921
940
# Set option NAME.  Presently that only means defining a flag for this option.
922
941
AC_DEFUN([_AM_SET_OPTION],
923
942
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
924
943
 
925
944
# _AM_SET_OPTIONS(OPTIONS)
926
 
# ----------------------------------
 
945
# ------------------------
927
946
# OPTIONS is a space-separated list of Automake options.
928
947
AC_DEFUN([_AM_SET_OPTIONS],
929
948
[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
999
1018
fi
1000
1019
AC_MSG_RESULT(yes)])
1001
1020
 
1002
 
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
1021
# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
1003
1022
#
1004
1023
# This file is free software; the Free Software Foundation
1005
1024
# gives unlimited permission to copy and/or distribute it,
1006
1025
# with or without modifications, as long as this notice is preserved.
1007
1026
 
 
1027
# serial 1
 
1028
 
1008
1029
# AM_PROG_INSTALL_STRIP
1009
1030
# ---------------------
1010
1031
# One issue with vendor `install' (even GNU) is that you can't
1027
1048
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1028
1049
AC_SUBST([INSTALL_STRIP_PROGRAM])])
1029
1050
 
1030
 
# Copyright (C) 2006, 2008  Free Software Foundation, Inc.
 
1051
# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
1031
1052
#
1032
1053
# This file is free software; the Free Software Foundation
1033
1054
# gives unlimited permission to copy and/or distribute it,
1034
1055
# with or without modifications, as long as this notice is preserved.
1035
1056
 
1036
 
# serial 2
 
1057
# serial 3
1037
1058
 
1038
1059
# _AM_SUBST_NOTMAKE(VARIABLE)
1039
1060
# ---------------------------
1042
1063
AC_DEFUN([_AM_SUBST_NOTMAKE])
1043
1064
 
1044
1065
# AM_SUBST_NOTMAKE(VARIABLE)
1045
 
# ---------------------------
 
1066
# --------------------------
1046
1067
# Public sister of _AM_SUBST_NOTMAKE.
1047
1068
AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1048
1069
 
1049
1070
# Check how to create a tarball.                            -*- Autoconf -*-
1050
1071
 
1051
 
# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
1072
# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
1052
1073
#
1053
1074
# This file is free software; the Free Software Foundation
1054
1075
# gives unlimited permission to copy and/or distribute it,
1070
1091
# a tarball read from stdin.
1071
1092
#     $(am__untar) < result.tar
1072
1093
AC_DEFUN([_AM_PROG_TAR],
1073
 
[# Always define AMTAR for backward compatibility.
1074
 
AM_MISSING_PROG([AMTAR], [tar])
 
1094
[# Always define AMTAR for backward compatibility.  Yes, it's still used
 
1095
# in the wild :-(  We should find a proper way to deprecate it ...
 
1096
AC_SUBST([AMTAR], ['$${TAR-tar}'])
1075
1097
m4_if([$1], [v7],
1076
 
     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
 
1098
     [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1077
1099
     [m4_case([$1], [ustar],, [pax],,
1078
1100
              [m4_fatal([Unknown tar format])])
1079
1101
AC_MSG_CHECKING([how to create a $1 tar archive])