~ubuntu-branches/ubuntu/trusty/alsa-utils/trusty

« back to all changes in this revision

Viewing changes to m4/po.m4

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich
  • Date: 2013-07-26 10:56:44 UTC
  • mfrom: (1.2.17) (93.1.1 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130726105644-kim9enke2jnozg73
Tags: 1.0.27.1-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Move init script volume settings to new alsactl database:
    + Set sane level for 'Speaker' and 'Headphone', needed for Dell Mini 9
      and Dell E series
    + ute PC Beep on hda cards that support it during initial volume setup
    + Mute *Analog/Digital Control for Creative cards by default
    + Default Digital Input Source to be Digital Mic 1 so that users
      with digital mic will be able to use it out of the box
    + Mute "IEC958 Optical Raw" by default
    + Set sane level for headphone 1 for Dell Studio XPS with 2.6.30
    + Prefer built-in digital mics on newer Dells
    + Unmute 'Line HP Swap' for Dove boards
    + Set reasonable volume levels for VMWare guests using snd.ens1371
  - debian/README.init.cs4236: Include in /usr/share/doc/alsa-utils so that
    users of snd-cs4236 (e.g., ThinkPad 600) can have audible sound
  - debian/patches/unset_pulse_internal.patch: We don't want alsamixer to
    show the pulse mixer by default, since it can be controlled from
    pulseaudio itself
  - Use upstart jobs for storing/restoring card settings
  - Add udev rule to apply UCM profiles for panda and equivalent hardware
  - Add Vcs-Bzr field
* Create a new upstart job for the alsa state daemon, and adjust the
  other upstart jobs accordingly
* Put the daemon file in /var/lib/alsa

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# po.m4 serial 13 (gettext-0.15)
2
 
dnl Copyright (C) 1995-2006 Free Software Foundation, Inc.
 
1
# po.m4 serial 17 (gettext-0.18)
 
2
dnl Copyright (C) 1995-2010 Free Software Foundation, Inc.
3
3
dnl This file is free software; the Free Software Foundation
4
4
dnl gives unlimited permission to copy and/or distribute it,
5
5
dnl with or without modifications, as long as this notice is preserved.
17
17
dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
18
18
dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
19
19
 
20
 
AC_PREREQ(2.50)
 
20
AC_PREREQ([2.50])
21
21
 
22
22
dnl Checks for all prerequisites of the po subdirectory.
23
23
AC_DEFUN([AM_PO_SUBDIRS],
27
27
  AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
28
28
  AC_REQUIRE([AM_NLS])dnl
29
29
 
 
30
  dnl Release version of the gettext macros. This is used to ensure that
 
31
  dnl the gettext macros and po/Makefile.in.in are in sync.
 
32
  AC_SUBST([GETTEXT_MACRO_VERSION], [0.18])
 
33
 
30
34
  dnl Perform the following tests also if --disable-nls has been given,
31
35
  dnl because they are needed for "make dist" to work.
32
36
 
37
41
    [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&
38
42
     (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
39
43
    :)
40
 
  AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
 
44
  AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT])
41
45
 
42
46
  dnl Test whether it is GNU msgfmt >= 0.15.
43
47
changequote(,)dnl
84
88
  test -n "$localedir" || localedir='${datadir}/locale'
85
89
  AC_SUBST([localedir])
86
90
 
 
91
  dnl Support for AM_XGETTEXT_OPTION.
 
92
  test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS=
 
93
  AC_SUBST([XGETTEXT_EXTRA_OPTIONS])
 
94
 
87
95
  AC_CONFIG_COMMANDS([po-directories], [[
88
96
    for ac_file in $CONFIG_FILES; do
89
97
      # Support "outfile[:infile[:infile...]]"
426
434
  fi
427
435
  mv "$ac_file.tmp" "$ac_file"
428
436
])
 
437
 
 
438
dnl Initializes the accumulator used by AM_XGETTEXT_OPTION.
 
439
AC_DEFUN([AM_XGETTEXT_OPTION_INIT],
 
440
[
 
441
  XGETTEXT_EXTRA_OPTIONS=
 
442
])
 
443
 
 
444
dnl Registers an option to be passed to xgettext in the po subdirectory.
 
445
AC_DEFUN([AM_XGETTEXT_OPTION],
 
446
[
 
447
  AC_REQUIRE([AM_XGETTEXT_OPTION_INIT])
 
448
  XGETTEXT_EXTRA_OPTIONS="$XGETTEXT_EXTRA_OPTIONS $1"
 
449
])