Merge lp:~logan/ubuntu/quantal/mlocate/new-upstream into lp:ubuntu/quantal/mlocate

Proposed by Logan Rosen
Status: Merged
Merged at revision: 14
Proposed branch: lp:~logan/ubuntu/quantal/mlocate/new-upstream
Merge into: lp:ubuntu/quantal/mlocate
Diff against target: 14432 lines (+5589/-2190)
58 files modified
ChangeLog (+102/-0)
Makefile.am (+3/-3)
Makefile.in (+24/-4)
NEWS (+13/-0)
aclocal.m4 (+2/-2)
configure (+459/-399)
configure.ac (+1/-1)
debian/changelog (+6/-0)
doc/locate.1.in (+6/-4)
doc/updatedb.8.in (+1/-1)
po/LINGUAS (+8/-0)
po/ar.po (+36/-30)
po/as.po (+382/-0)
po/ast.po (+37/-34)
po/bg.po (+90/-36)
po/bs.po (+52/-43)
po/ca.po (+36/-42)
po/cs.po (+36/-42)
po/da.po (+34/-28)
po/de.po (+38/-35)
po/el.po (+96/-104)
po/en_GB.po (+36/-29)
po/es.po (+39/-34)
po/et.po (+328/-0)
po/fa.po (+35/-30)
po/fi.po (+325/-0)
po/fr.po (+37/-36)
po/gu.po (+330/-0)
po/hu.po (+39/-33)
po/it.po (+36/-33)
po/ja.po (+42/-33)
po/ko.po (+36/-30)
po/lv.po (+389/-0)
po/mlocate.pot (+27/-22)
po/ms.po (+41/-44)
po/nds.po (+324/-0)
po/nl.po (+37/-30)
po/pl.po (+38/-28)
po/pt.po (+39/-28)
po/pt_BR.po (+35/-35)
po/ru.po (+53/-50)
po/sr.po (+47/-42)
po/sr@latin.po (+47/-42)
po/sv.po (+36/-29)
po/ta.po (+381/-0)
po/tr.po (+322/-0)
po/uk.po (+45/-37)
po/zh_CN.po (+37/-34)
po/zh_TW.po (+59/-52)
src/bind-mount.c (+408/-0)
src/bind-mount.h (+32/-0)
src/conf.c (+1/-1)
src/config.h.in (+3/-0)
src/lib.c (+24/-2)
src/lib.h (+7/-0)
src/updatedb.c (+21/-137)
tests/package.m4 (+2/-2)
tests/testsuite (+389/-509)
To merge this branch: bzr merge lp:~logan/ubuntu/quantal/mlocate/new-upstream
Reviewer Review Type Date Requested Status
Luke Yelavich (community) Approve
Ubuntu branches Pending
Review via email: mp+117004@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Luke Yelavich (themuso) wrote :

Thanks for your work, uploading to quantal. Please consider also filing a bug in Debian requesting/reporting the new upstream release, and perhaps it wouldn't hurt to also prepare a Debian package to help things along.

Thanks again.

Revision history for this message
Luke Yelavich (themuso) wrote :

Thanks for your work, uploading to quantal. Please consider also filing a bug in Debian requesting/reporting the new upstream release, and perhaps it wouldn't hurt to also prepare a Debian package to help things along.

Thanks again.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'ChangeLog'
2--- ChangeLog 2010-10-12 16:34:36 +0000
3+++ ChangeLog 2012-07-27 05:18:19 +0000
4@@ -1,3 +1,105 @@
5+2012-03-03 Miloslav Trmač <mitr@redhat.com>
6+
7+ * configure.ac: Release 0.25.
8+ * NEWS: Update.
9+ * po/*: Update.
10+ * po/LINGUAS: Update.
11+
12+2012-02-10 Miloslav Trmač <mitr@redhat.com>
13+
14+ * po/mlocate.pot: Update for Transifex.
15+
16+2011-12-12 Miloslav Trmač <mitr@redhat.com>
17+
18+ * src/conf.c (prepend_cwd): Don't use PATH_MAX, it may not be defined.
19+ * src/updatedb.c (filesystem_is_excluded): Don't use PATH_MAX, it
20+ may not be defined. canonicalize_file_name() allocates memory, so
21+ it is more costly, but Linux is unaffected.
22+
23+2011-11-16 Miloslav Trmač <mitr@redhat.com>
24+
25+ * src/updatedb.c (scan_cwd): Don't trust the kernel to never return
26+ a zero-length file name, it unfortunately does happen. In such a case,
27+ instead of aborting, report it to stderr, including the path, and
28+ continue.
29+
30+2011-08-24 Miloslav Trmač <mitr@redhat.com>
31+
32+ * src/updatedb.c (main): Remove a debugging fprintf ().
33+
34+ * doc/locate.1.in: Document that parent directories must exist for
35+ permission checking. Suggested by Alexandre Oberlin <alxobr@yahoo.fr>.
36+
37+2011-05-30 Miloslav Trmač <mitr@redhat.com>
38+
39+ * Makefile.am (installcheck-local): Fix AUTOTEST_PATH.
40+
41+2011-04-28 Miloslav Trmač <mitr@redhat.com>
42+
43+ * src/lib.c (db_refill): Use the correct type for return value of
44+ safe_read ().
45+
46+ * src/bind-mount.c (read_mount_entry): Fix an EOF check.
47+
48+2011-03-31 Miloslav Trmač <mitr@redhat.com>
49+
50+ * configure.ac: Release 0.24.
51+ * NEWS: Update.
52+ * po/*: Update.
53+ * po/LINGUAS: Update.
54+
55+ * src/bind-mount.c (read_mount_line): Remove an unused variable.
56+
57+ * src/bind-mount.c (add_bind_mount_path): Fold it into the caller again.
58+
59+ * src/bind-mount.c: Update copyright year.
60+
61+ * src/bind-mount.c: Note that tmpwatch uses a related implementation.
62+
63+ * src/bind-mount.c (MOUNTINFO_PATH, struct mount, mount_entries)
64+ (num_mount_entries, mount_data_obstack, mount_data_mark)
65+ (mount_string_obstack, mount_string_mark, mount_list_obstack)
66+ (mountinfo_line_obstack, init_mount_entries, read_mount_line)
67+ (parse_mount_string, read_mount_entry, read_mount_entries): New
68+ definitions, reading /proc/self/mountinfo.
69+ (mountinfo_fd): New variable.
70+ (last_path_mounted_mtime): Removed variable.
71+ (add_bind_mount_path, cmp_ints, cmp_mount_entry_pointers)
72+ (cmp_id_mount_entry): New functions.
73+ (rebuild_bind_mount_paths, is_bind_mount, bind_mount_init): Use data
74+ from /proc/self/mountinfo.
75+
76+2011-03-30 Miloslav Trmač <mitr@redhat.com>
77+
78+ * src/bind-mount.c (bind_mount_paths, bind_mount_paths_index)
79+ (last_path_mounted_mtime, bind_mount_paths_obstack)
80+ (bind_mount_paths_mark, rebuild_bind_mount_paths, is_bind_mount): Move
81+ from ...
82+ * src/updatedb.c: ... here.
83+ * src/bind-mount.c (bind_mount_init): Rename and move from ...
84+ * src/updatedb.c (init_bind_mount_paths): ... here, and move
85+ conf_prune_bind_mounts handling to the caller.
86+ * src/bind-mount.h: New file.
87+ * Makefile.am (src_updatedb_SOURCES): Add src/bind-mount.c and
88+ src/bind-mount.h.
89+
90+ * src/lib.c (string_list_contains_dir_path): Rename and move from...
91+ * src/updatedb.c (path_is_in_list): ... here. All callers updated.
92+ * src/lib.h (string_list_contains_dir_path): New declaration.
93+
94+2011-03-10 Miloslav Trmač <mitr@redhat.com>
95+
96+ * doc/updatedb.8.in: Fix a typo.
97+
98+2011-03-04 Miloslav Trmač <mitr@redhat.com>
99+
100+ * .tx/config: New file.
101+ * po/libuser.pot: Add to prepare for Transifex.
102+
103+2011-02-04 John Bradshaw <john@johnbradshaw.org>
104+
105+ * doc/locate.1.in: Fix a typo.
106+
107 2010-09-14 Miloslav Trmač <mitr@redhat.com>
108
109 * configure.ac: Release version 0.23.1.
110
111=== modified file 'Makefile.am'
112--- Makefile.am 2010-09-25 08:15:12 +0000
113+++ Makefile.am 2012-07-27 05:18:19 +0000
114@@ -49,7 +49,8 @@
115 src_locate_CPPFLAGS = $(AM_CPPFLAGS) $(COMMON_CPPFLAGS)
116 src_locate_LDADD = src/liblib.a gnulib/lib/libgnu.a $(LIBINTL)
117
118-src_updatedb_SOURCES = src/conf.c src/conf.h src/updatedb.c
119+src_updatedb_SOURCES = src/bind-mount.c src/bind-mount.h src/conf.c src/conf.h \
120+ src/updatedb.c
121 src_updatedb_CPPFLAGS = $(AM_CPPFLAGS) $(COMMON_CPPFLAGS) $(CONF_CPPFLAGS)
122 src_updatedb_LDADD = src/liblib.a gnulib/lib/libgnu.a $(LIBINTL)
123
124@@ -75,8 +76,7 @@
125 $(SHELL) $(top_srcdir)/tests/testsuite
126
127 installcheck-local:
128- $(SHELL) $(top_srcdir)/tests/testsuite \
129- AUTOTEST_PATH=$(exec_prefix)/bin:$(exec_prefix)/libexec
130+ $(SHELL) $(top_srcdir)/tests/testsuite AUTOTEST_PATH=$(bindir)
131
132 install-exec-local:
133 $(MKDIR_P) "$(DESTDIR)$(dbdir)"
134
135=== modified file 'Makefile.in'
136--- Makefile.in 2010-10-12 16:34:36 +0000
137+++ Makefile.in 2012-07-27 05:18:19 +0000
138@@ -134,7 +134,8 @@
139 am__DEPENDENCIES_1 =
140 src_locate_DEPENDENCIES = src/liblib.a gnulib/lib/libgnu.a \
141 $(am__DEPENDENCIES_1)
142-am_src_updatedb_OBJECTS = src/src_updatedb-conf.$(OBJEXT) \
143+am_src_updatedb_OBJECTS = src/src_updatedb-bind-mount.$(OBJEXT) \
144+ src/src_updatedb-conf.$(OBJEXT) \
145 src/src_updatedb-updatedb.$(OBJEXT)
146 src_updatedb_OBJECTS = $(am_src_updatedb_OBJECTS)
147 src_updatedb_DEPENDENCIES = src/liblib.a gnulib/lib/libgnu.a \
148@@ -498,7 +499,9 @@
149 src_liblib_a_SOURCES = src/db.h src/lib.c src/lib.h
150 src_locate_CPPFLAGS = $(AM_CPPFLAGS) $(COMMON_CPPFLAGS)
151 src_locate_LDADD = src/liblib.a gnulib/lib/libgnu.a $(LIBINTL)
152-src_updatedb_SOURCES = src/conf.c src/conf.h src/updatedb.c
153+src_updatedb_SOURCES = src/bind-mount.c src/bind-mount.h src/conf.c src/conf.h \
154+ src/updatedb.c
155+
156 src_updatedb_CPPFLAGS = $(AM_CPPFLAGS) $(COMMON_CPPFLAGS) $(CONF_CPPFLAGS)
157 src_updatedb_LDADD = src/liblib.a gnulib/lib/libgnu.a $(LIBINTL)
158 all: all-recursive
159@@ -612,6 +615,8 @@
160 src/locate$(EXEEXT): $(src_locate_OBJECTS) $(src_locate_DEPENDENCIES) src/$(am__dirstamp)
161 @rm -f src/locate$(EXEEXT)
162 $(LINK) $(src_locate_OBJECTS) $(src_locate_LDADD) $(LIBS)
163+src/src_updatedb-bind-mount.$(OBJEXT): src/$(am__dirstamp) \
164+ src/$(DEPDIR)/$(am__dirstamp)
165 src/src_updatedb-conf.$(OBJEXT): src/$(am__dirstamp) \
166 src/$(DEPDIR)/$(am__dirstamp)
167 src/src_updatedb-updatedb.$(OBJEXT): src/$(am__dirstamp) \
168@@ -624,6 +629,7 @@
169 -rm -f *.$(OBJEXT)
170 -rm -f src/lib.$(OBJEXT)
171 -rm -f src/src_locate-locate.$(OBJEXT)
172+ -rm -f src/src_updatedb-bind-mount.$(OBJEXT)
173 -rm -f src/src_updatedb-conf.$(OBJEXT)
174 -rm -f src/src_updatedb-updatedb.$(OBJEXT)
175
176@@ -632,6 +638,7 @@
177
178 @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/lib.Po@am__quote@
179 @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_locate-locate.Po@am__quote@
180+@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_updatedb-bind-mount.Po@am__quote@
181 @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_updatedb-conf.Po@am__quote@
182 @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_updatedb-updatedb.Po@am__quote@
183
184@@ -665,6 +672,20 @@
185 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
186 @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_locate_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/src_locate-locate.obj `if test -f 'src/locate.c'; then $(CYGPATH_W) 'src/locate.c'; else $(CYGPATH_W) '$(srcdir)/src/locate.c'; fi`
187
188+src/src_updatedb-bind-mount.o: src/bind-mount.c
189+@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_updatedb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/src_updatedb-bind-mount.o -MD -MP -MF src/$(DEPDIR)/src_updatedb-bind-mount.Tpo -c -o src/src_updatedb-bind-mount.o `test -f 'src/bind-mount.c' || echo '$(srcdir)/'`src/bind-mount.c
190+@am__fastdepCC_TRUE@ $(am__mv) src/$(DEPDIR)/src_updatedb-bind-mount.Tpo src/$(DEPDIR)/src_updatedb-bind-mount.Po
191+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/bind-mount.c' object='src/src_updatedb-bind-mount.o' libtool=no @AMDEPBACKSLASH@
192+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
193+@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_updatedb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/src_updatedb-bind-mount.o `test -f 'src/bind-mount.c' || echo '$(srcdir)/'`src/bind-mount.c
194+
195+src/src_updatedb-bind-mount.obj: src/bind-mount.c
196+@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_updatedb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/src_updatedb-bind-mount.obj -MD -MP -MF src/$(DEPDIR)/src_updatedb-bind-mount.Tpo -c -o src/src_updatedb-bind-mount.obj `if test -f 'src/bind-mount.c'; then $(CYGPATH_W) 'src/bind-mount.c'; else $(CYGPATH_W) '$(srcdir)/src/bind-mount.c'; fi`
197+@am__fastdepCC_TRUE@ $(am__mv) src/$(DEPDIR)/src_updatedb-bind-mount.Tpo src/$(DEPDIR)/src_updatedb-bind-mount.Po
198+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/bind-mount.c' object='src/src_updatedb-bind-mount.obj' libtool=no @AMDEPBACKSLASH@
199+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
200+@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_updatedb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/src_updatedb-bind-mount.obj `if test -f 'src/bind-mount.c'; then $(CYGPATH_W) 'src/bind-mount.c'; else $(CYGPATH_W) '$(srcdir)/src/bind-mount.c'; fi`
201+
202 src/src_updatedb-conf.o: src/conf.c
203 @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_updatedb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/src_updatedb-conf.o -MD -MP -MF src/$(DEPDIR)/src_updatedb-conf.Tpo -c -o src/src_updatedb-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
204 @am__fastdepCC_TRUE@ $(am__mv) src/$(DEPDIR)/src_updatedb-conf.Tpo src/$(DEPDIR)/src_updatedb-conf.Po
205@@ -1291,8 +1312,7 @@
206 $(SHELL) $(top_srcdir)/tests/testsuite
207
208 installcheck-local:
209- $(SHELL) $(top_srcdir)/tests/testsuite \
210- AUTOTEST_PATH=$(exec_prefix)/bin:$(exec_prefix)/libexec
211+ $(SHELL) $(top_srcdir)/tests/testsuite AUTOTEST_PATH=$(bindir)
212
213 install-exec-local:
214 $(MKDIR_P) "$(DESTDIR)$(dbdir)"
215
216=== modified file 'NEWS'
217--- NEWS 2010-10-12 16:34:36 +0000
218+++ NEWS 2012-07-27 05:18:19 +0000
219@@ -1,3 +1,16 @@
220+Changes in version 0.25:
221+- Handle zero-length file names (a kernel bug) more gracefully.
222+- Avoid PATH_MAX to hopefully support Hurd better.
223+- Document that parent directories must exist for permission checking.
224+- Minor bug fixes.
225+- Updated translations.
226+
227+Changes in version 0.24:
228+- Use /proc/self/mountinfo for bind mount detection; recent distributions
229+ symlink /etc/mtab to /proc/self/mounts, losing information we need.
230+- Fix a man page typo. Patch by John Bradshaw <john@johnbradshaw.org>.
231+- Updated translations.
232+
233 Changes in version 0.23.1:
234 - New or updated translations:
235 - Greek by Pierros Papadeas <pierros@papadeas.gr>
236
237=== modified file 'aclocal.m4'
238--- aclocal.m4 2010-10-12 16:34:36 +0000
239+++ aclocal.m4 2012-07-27 05:18:19 +0000
240@@ -13,8 +13,8 @@
241
242 m4_ifndef([AC_AUTOCONF_VERSION],
243 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
244-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
245-[m4_warning([this file was generated for autoconf 2.65.
246+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
247+[m4_warning([this file was generated for autoconf 2.68.
248 You have another version of autoconf. It may work, but is not guaranteed to.
249 If you have problems, you may need to regenerate the build system entirely.
250 To do so, use the procedure documented by the package, typically `autoreconf'.])])
251
252=== modified file 'configure'
253--- configure 2010-10-12 16:34:36 +0000
254+++ configure 2012-07-27 05:18:19 +0000
255@@ -1,13 +1,13 @@
256 #! /bin/sh
257 # Guess values for system-dependent variables and create Makefiles.
258-# Generated by GNU Autoconf 2.65 for mlocate 0.23.1.
259+# Generated by GNU Autoconf 2.68 for mlocate 0.25.
260 #
261 # Report bugs to <mitr@redhat.com>.
262 #
263 #
264 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
265-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
266-# Inc.
267+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
268+# Foundation, Inc.
269 #
270 #
271 # This configure script is free software; the Free Software Foundation
272@@ -106,6 +106,7 @@
273 IFS=" "" $as_nl"
274
275 # Find who we are. Look in the path if we contain no directory separator.
276+as_myself=
277 case $0 in #((
278 *[\\/]* ) as_myself=$0 ;;
279 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
280@@ -231,11 +232,18 @@
281 # We cannot yet assume a decent shell, so we have to provide a
282 # neutralization value for shells without unset; and this also
283 # works around shells that cannot unset nonexistent variables.
284+ # Preserve -v and -x to the replacement shell.
285 BASH_ENV=/dev/null
286 ENV=/dev/null
287 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
288 export CONFIG_SHELL
289- exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
290+ case $- in # ((((
291+ *v*x* | *x*v* ) as_opts=-vx ;;
292+ *v* ) as_opts=-v ;;
293+ *x* ) as_opts=-x ;;
294+ * ) as_opts= ;;
295+ esac
296+ exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
297 fi
298
299 if test x$as_have_required = xno; then :
300@@ -334,7 +342,7 @@
301 test -d "$as_dir" && break
302 done
303 test -z "$as_dirs" || eval "mkdir $as_dirs"
304- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
305+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
306
307
308 } # as_fn_mkdir_p
309@@ -374,19 +382,19 @@
310 fi # as_fn_arith
311
312
313-# as_fn_error ERROR [LINENO LOG_FD]
314-# ---------------------------------
315+# as_fn_error STATUS ERROR [LINENO LOG_FD]
316+# ----------------------------------------
317 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
318 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
319-# script with status $?, using 1 if that was 0.
320+# script with STATUS, using 1 if that was 0.
321 as_fn_error ()
322 {
323- as_status=$?; test $as_status -eq 0 && as_status=1
324- if test "$3"; then
325- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
326- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
327+ as_status=$1; test $as_status -eq 0 && as_status=1
328+ if test "$4"; then
329+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
330+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
331 fi
332- $as_echo "$as_me: error: $1" >&2
333+ $as_echo "$as_me: error: $2" >&2
334 as_fn_exit $as_status
335 } # as_fn_error
336
337@@ -548,7 +556,7 @@
338 exec 6>&1
339
340 # Name of the host.
341-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
342+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
343 # so uname gets run too.
344 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
345
346@@ -567,8 +575,8 @@
347 # Identity of this package.
348 PACKAGE_NAME='mlocate'
349 PACKAGE_TARNAME='mlocate'
350-PACKAGE_VERSION='0.23.1'
351-PACKAGE_STRING='mlocate 0.23.1'
352+PACKAGE_VERSION='0.25'
353+PACKAGE_STRING='mlocate 0.25'
354 PACKAGE_BUGREPORT='mitr@redhat.com'
355 PACKAGE_URL='https://fedorahosted.org/mlocate/'
356
357@@ -942,8 +950,9 @@
358 fi
359
360 case $ac_option in
361- *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
362- *) ac_optarg=yes ;;
363+ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
364+ *=) ac_optarg= ;;
365+ *) ac_optarg=yes ;;
366 esac
367
368 # Accept the important Cygnus configure options, so we can diagnose typos.
369@@ -988,7 +997,7 @@
370 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
371 # Reject names that are not valid shell variable names.
372 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
373- as_fn_error "invalid feature name: $ac_useropt"
374+ as_fn_error $? "invalid feature name: $ac_useropt"
375 ac_useropt_orig=$ac_useropt
376 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
377 case $ac_user_opts in
378@@ -1014,7 +1023,7 @@
379 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
380 # Reject names that are not valid shell variable names.
381 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
382- as_fn_error "invalid feature name: $ac_useropt"
383+ as_fn_error $? "invalid feature name: $ac_useropt"
384 ac_useropt_orig=$ac_useropt
385 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
386 case $ac_user_opts in
387@@ -1218,7 +1227,7 @@
388 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
389 # Reject names that are not valid shell variable names.
390 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
391- as_fn_error "invalid package name: $ac_useropt"
392+ as_fn_error $? "invalid package name: $ac_useropt"
393 ac_useropt_orig=$ac_useropt
394 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
395 case $ac_user_opts in
396@@ -1234,7 +1243,7 @@
397 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
398 # Reject names that are not valid shell variable names.
399 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
400- as_fn_error "invalid package name: $ac_useropt"
401+ as_fn_error $? "invalid package name: $ac_useropt"
402 ac_useropt_orig=$ac_useropt
403 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
404 case $ac_user_opts in
405@@ -1264,8 +1273,8 @@
406 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
407 x_libraries=$ac_optarg ;;
408
409- -*) as_fn_error "unrecognized option: \`$ac_option'
410-Try \`$0 --help' for more information."
411+ -*) as_fn_error $? "unrecognized option: \`$ac_option'
412+Try \`$0 --help' for more information"
413 ;;
414
415 *=*)
416@@ -1273,7 +1282,7 @@
417 # Reject names that are not valid shell variable names.
418 case $ac_envvar in #(
419 '' | [0-9]* | *[!_$as_cr_alnum]* )
420- as_fn_error "invalid variable name: \`$ac_envvar'" ;;
421+ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
422 esac
423 eval $ac_envvar=\$ac_optarg
424 export $ac_envvar ;;
425@@ -1283,7 +1292,7 @@
426 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
427 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
428 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
429- : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
430+ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
431 ;;
432
433 esac
434@@ -1291,13 +1300,13 @@
435
436 if test -n "$ac_prev"; then
437 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
438- as_fn_error "missing argument to $ac_option"
439+ as_fn_error $? "missing argument to $ac_option"
440 fi
441
442 if test -n "$ac_unrecognized_opts"; then
443 case $enable_option_checking in
444 no) ;;
445- fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
446+ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
447 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
448 esac
449 fi
450@@ -1320,7 +1329,7 @@
451 [\\/$]* | ?:[\\/]* ) continue;;
452 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
453 esac
454- as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
455+ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
456 done
457
458 # There might be people who depend on the old broken behavior: `$host'
459@@ -1334,8 +1343,8 @@
460 if test "x$host_alias" != x; then
461 if test "x$build_alias" = x; then
462 cross_compiling=maybe
463- $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
464- If a cross compiler is detected then cross compile mode will be used." >&2
465+ $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
466+ If a cross compiler is detected then cross compile mode will be used" >&2
467 elif test "x$build_alias" != "x$host_alias"; then
468 cross_compiling=yes
469 fi
470@@ -1350,9 +1359,9 @@
471 ac_pwd=`pwd` && test -n "$ac_pwd" &&
472 ac_ls_di=`ls -di .` &&
473 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
474- as_fn_error "working directory cannot be determined"
475+ as_fn_error $? "working directory cannot be determined"
476 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
477- as_fn_error "pwd does not report name of working directory"
478+ as_fn_error $? "pwd does not report name of working directory"
479
480
481 # Find the source files, if location was not specified.
482@@ -1391,11 +1400,11 @@
483 fi
484 if test ! -r "$srcdir/$ac_unique_file"; then
485 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
486- as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
487+ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
488 fi
489 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
490 ac_abs_confdir=`(
491- cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
492+ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
493 pwd)`
494 # When building in place, set srcdir=.
495 if test "$ac_abs_confdir" = "$ac_pwd"; then
496@@ -1421,7 +1430,7 @@
497 # Omit some internal or obsolete options to make the list less imposing.
498 # This message is too long to be a string in the A/UX 3.1 sh.
499 cat <<_ACEOF
500-\`configure' configures mlocate 0.23.1 to adapt to many kinds of systems.
501+\`configure' configures mlocate 0.25 to adapt to many kinds of systems.
502
503 Usage: $0 [OPTION]... [VAR=VALUE]...
504
505@@ -1435,7 +1444,7 @@
506 --help=short display options specific to this package
507 --help=recursive display the short help of all the included packages
508 -V, --version display version information and exit
509- -q, --quiet, --silent do not print \`checking...' messages
510+ -q, --quiet, --silent do not print \`checking ...' messages
511 --cache-file=FILE cache test results in FILE [disabled]
512 -C, --config-cache alias for \`--cache-file=config.cache'
513 -n, --no-create do not create output files
514@@ -1491,7 +1500,7 @@
515
516 if test -n "$ac_init_help"; then
517 case $ac_init_help in
518- short | recursive ) echo "Configuration of mlocate 0.23.1:";;
519+ short | recursive ) echo "Configuration of mlocate 0.25:";;
520 esac
521 cat <<\_ACEOF
522
523@@ -1592,10 +1601,10 @@
524 test -n "$ac_init_help" && exit $ac_status
525 if $ac_init_version; then
526 cat <<\_ACEOF
527-mlocate configure 0.23.1
528-generated by GNU Autoconf 2.65
529+mlocate configure 0.25
530+generated by GNU Autoconf 2.68
531
532-Copyright (C) 2009 Free Software Foundation, Inc.
533+Copyright (C) 2010 Free Software Foundation, Inc.
534 This configure script is free software; the Free Software Foundation
535 gives unlimited permission to copy, distribute and modify it.
536
537@@ -1654,7 +1663,7 @@
538
539 ac_retval=1
540 fi
541- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
542+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
543 as_fn_set_status $ac_retval
544
545 } # ac_fn_c_try_compile
546@@ -1680,7 +1689,7 @@
547 mv -f conftest.er1 conftest.err
548 fi
549 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
550- test $ac_status = 0; } >/dev/null && {
551+ test $ac_status = 0; } > conftest.i && {
552 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
553 test ! -s conftest.err
554 }; then :
555@@ -1691,7 +1700,7 @@
556
557 ac_retval=1
558 fi
559- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
560+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
561 as_fn_set_status $ac_retval
562
563 } # ac_fn_c_try_cpp
564@@ -1704,10 +1713,10 @@
565 ac_fn_c_check_header_mongrel ()
566 {
567 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
568- if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
569+ if eval \${$3+:} false; then :
570 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
571 $as_echo_n "checking for $2... " >&6; }
572-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
573+if eval \${$3+:} false; then :
574 $as_echo_n "(cached) " >&6
575 fi
576 eval ac_res=\$$3
577@@ -1743,7 +1752,7 @@
578 else
579 ac_header_preproc=no
580 fi
581-rm -f conftest.err conftest.$ac_ext
582+rm -f conftest.err conftest.i conftest.$ac_ext
583 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
584 $as_echo "$ac_header_preproc" >&6; }
585
586@@ -1766,17 +1775,15 @@
587 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
588 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
589 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
590-( cat <<\_ASBOX
591-## ------------------------------ ##
592+( $as_echo "## ------------------------------ ##
593 ## Report this to mitr@redhat.com ##
594-## ------------------------------ ##
595-_ASBOX
596+## ------------------------------ ##"
597 ) | sed "s/^/$as_me: WARNING: /" >&2
598 ;;
599 esac
600 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
601 $as_echo_n "checking for $2... " >&6; }
602-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
603+if eval \${$3+:} false; then :
604 $as_echo_n "(cached) " >&6
605 else
606 eval "$3=\$ac_header_compiler"
607@@ -1785,7 +1792,7 @@
608 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
609 $as_echo "$ac_res" >&6; }
610 fi
611- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
612+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
613
614 } # ac_fn_c_check_header_mongrel
615
616@@ -1826,7 +1833,7 @@
617 ac_retval=$ac_status
618 fi
619 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
620- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
621+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
622 as_fn_set_status $ac_retval
623
624 } # ac_fn_c_try_run
625@@ -1840,7 +1847,7 @@
626 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
627 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
628 $as_echo_n "checking for $2... " >&6; }
629-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
630+if eval \${$3+:} false; then :
631 $as_echo_n "(cached) " >&6
632 else
633 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
634@@ -1858,10 +1865,64 @@
635 eval ac_res=\$$3
636 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
637 $as_echo "$ac_res" >&6; }
638- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
639+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
640
641 } # ac_fn_c_check_header_compile
642
643+# ac_fn_c_check_type LINENO TYPE VAR INCLUDES
644+# -------------------------------------------
645+# Tests whether TYPE exists after having included INCLUDES, setting cache
646+# variable VAR accordingly.
647+ac_fn_c_check_type ()
648+{
649+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
650+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
651+$as_echo_n "checking for $2... " >&6; }
652+if eval \${$3+:} false; then :
653+ $as_echo_n "(cached) " >&6
654+else
655+ eval "$3=no"
656+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
657+/* end confdefs.h. */
658+$4
659+int
660+main ()
661+{
662+if (sizeof ($2))
663+ return 0;
664+ ;
665+ return 0;
666+}
667+_ACEOF
668+if ac_fn_c_try_compile "$LINENO"; then :
669+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
670+/* end confdefs.h. */
671+$4
672+int
673+main ()
674+{
675+if (sizeof (($2)))
676+ return 0;
677+ ;
678+ return 0;
679+}
680+_ACEOF
681+if ac_fn_c_try_compile "$LINENO"; then :
682+
683+else
684+ eval "$3=yes"
685+fi
686+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
687+fi
688+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
689+fi
690+eval ac_res=\$$3
691+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
692+$as_echo "$ac_res" >&6; }
693+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
694+
695+} # ac_fn_c_check_type
696+
697 # ac_fn_c_try_link LINENO
698 # -----------------------
699 # Try to link conftest.$ac_ext, and return whether this succeeded.
700@@ -1903,7 +1964,7 @@
701 # interfere with the next link command; also delete a directory that is
702 # left behind by Apple's compiler. We do this before executing the actions.
703 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
704- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
705+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
706 as_fn_set_status $ac_retval
707
708 } # ac_fn_c_try_link
709@@ -1916,7 +1977,7 @@
710 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
711 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
712 $as_echo_n "checking for $2... " >&6; }
713-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
714+if eval \${$3+:} false; then :
715 $as_echo_n "(cached) " >&6
716 else
717 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
718@@ -1971,19 +2032,22 @@
719 eval ac_res=\$$3
720 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
721 $as_echo "$ac_res" >&6; }
722- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
723+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
724
725 } # ac_fn_c_check_func
726
727-# ac_fn_c_check_decl LINENO SYMBOL VAR
728-# ------------------------------------
729-# Tests whether SYMBOL is declared, setting cache variable VAR accordingly.
730+# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES
731+# ---------------------------------------------
732+# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR
733+# accordingly.
734 ac_fn_c_check_decl ()
735 {
736 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
737- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $2 is declared" >&5
738-$as_echo_n "checking whether $2 is declared... " >&6; }
739-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
740+ as_decl_name=`echo $2|sed 's/ *(.*//'`
741+ as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
742+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
743+$as_echo_n "checking whether $as_decl_name is declared... " >&6; }
744+if eval \${$3+:} false; then :
745 $as_echo_n "(cached) " >&6
746 else
747 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
748@@ -1992,8 +2056,12 @@
749 int
750 main ()
751 {
752-#ifndef $2
753- (void) $2;
754+#ifndef $as_decl_name
755+#ifdef __cplusplus
756+ (void) $as_decl_use;
757+#else
758+ (void) $as_decl_name;
759+#endif
760 #endif
761
762 ;
763@@ -2010,7 +2078,7 @@
764 eval ac_res=\$$3
765 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
766 $as_echo "$ac_res" >&6; }
767- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
768+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
769
770 } # ac_fn_c_check_decl
771
772@@ -2023,7 +2091,7 @@
773 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
774 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
775 $as_echo_n "checking for $2.$3... " >&6; }
776-if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then :
777+if eval \${$4+:} false; then :
778 $as_echo_n "(cached) " >&6
779 else
780 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
781@@ -2067,64 +2135,10 @@
782 eval ac_res=\$$4
783 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
784 $as_echo "$ac_res" >&6; }
785- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
786+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
787
788 } # ac_fn_c_check_member
789
790-# ac_fn_c_check_type LINENO TYPE VAR INCLUDES
791-# -------------------------------------------
792-# Tests whether TYPE exists after having included INCLUDES, setting cache
793-# variable VAR accordingly.
794-ac_fn_c_check_type ()
795-{
796- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
797- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
798-$as_echo_n "checking for $2... " >&6; }
799-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
800- $as_echo_n "(cached) " >&6
801-else
802- eval "$3=no"
803- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
804-/* end confdefs.h. */
805-$4
806-int
807-main ()
808-{
809-if (sizeof ($2))
810- return 0;
811- ;
812- return 0;
813-}
814-_ACEOF
815-if ac_fn_c_try_compile "$LINENO"; then :
816- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
817-/* end confdefs.h. */
818-$4
819-int
820-main ()
821-{
822-if (sizeof (($2)))
823- return 0;
824- ;
825- return 0;
826-}
827-_ACEOF
828-if ac_fn_c_try_compile "$LINENO"; then :
829-
830-else
831- eval "$3=yes"
832-fi
833-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
834-fi
835-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
836-fi
837-eval ac_res=\$$3
838- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
839-$as_echo "$ac_res" >&6; }
840- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
841-
842-} # ac_fn_c_check_type
843-
844 # ac_fn_c_compute_int LINENO EXPR VAR INCLUDES
845 # --------------------------------------------
846 # Tries to find the compile-time value of EXPR in a program that includes
847@@ -2298,7 +2312,7 @@
848 rm -f conftest.val
849
850 fi
851- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
852+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
853 as_fn_set_status $ac_retval
854
855 } # ac_fn_c_compute_int
856@@ -2306,8 +2320,8 @@
857 This file contains any messages produced by compilers while
858 running configure, to aid debugging if configure makes a mistake.
859
860-It was created by mlocate $as_me 0.23.1, which was
861-generated by GNU Autoconf 2.65. Invocation command line was
862+It was created by mlocate $as_me 0.25, which was
863+generated by GNU Autoconf 2.68. Invocation command line was
864
865 $ $0 $@
866
867@@ -2417,11 +2431,9 @@
868 {
869 echo
870
871- cat <<\_ASBOX
872-## ---------------- ##
873+ $as_echo "## ---------------- ##
874 ## Cache variables. ##
875-## ---------------- ##
876-_ASBOX
877+## ---------------- ##"
878 echo
879 # The following way of writing the cache mishandles newlines in values,
880 (
881@@ -2455,11 +2467,9 @@
882 )
883 echo
884
885- cat <<\_ASBOX
886-## ----------------- ##
887+ $as_echo "## ----------------- ##
888 ## Output variables. ##
889-## ----------------- ##
890-_ASBOX
891+## ----------------- ##"
892 echo
893 for ac_var in $ac_subst_vars
894 do
895@@ -2472,11 +2482,9 @@
896 echo
897
898 if test -n "$ac_subst_files"; then
899- cat <<\_ASBOX
900-## ------------------- ##
901+ $as_echo "## ------------------- ##
902 ## File substitutions. ##
903-## ------------------- ##
904-_ASBOX
905+## ------------------- ##"
906 echo
907 for ac_var in $ac_subst_files
908 do
909@@ -2490,11 +2498,9 @@
910 fi
911
912 if test -s confdefs.h; then
913- cat <<\_ASBOX
914-## ----------- ##
915+ $as_echo "## ----------- ##
916 ## confdefs.h. ##
917-## ----------- ##
918-_ASBOX
919+## ----------- ##"
920 echo
921 cat confdefs.h
922 echo
923@@ -2549,7 +2555,12 @@
924 ac_site_file1=NONE
925 ac_site_file2=NONE
926 if test -n "$CONFIG_SITE"; then
927- ac_site_file1=$CONFIG_SITE
928+ # We do not want a PATH search for config.site.
929+ case $CONFIG_SITE in #((
930+ -*) ac_site_file1=./$CONFIG_SITE;;
931+ */*) ac_site_file1=$CONFIG_SITE;;
932+ *) ac_site_file1=./$CONFIG_SITE;;
933+ esac
934 elif test "x$prefix" != xNONE; then
935 ac_site_file1=$prefix/share/config.site
936 ac_site_file2=$prefix/etc/config.site
937@@ -2564,7 +2575,11 @@
938 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
939 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
940 sed 's/^/| /' "$ac_site_file" >&5
941- . "$ac_site_file"
942+ . "$ac_site_file" \
943+ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
944+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
945+as_fn_error $? "failed to load site script $ac_site_file
946+See \`config.log' for more details" "$LINENO" 5; }
947 fi
948 done
949
950@@ -2665,7 +2680,7 @@
951 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
952 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
953 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
954- as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
955+ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
956 fi
957 ## -------------------- ##
958 ## Main body of script. ##
959@@ -2685,16 +2700,22 @@
960
961 ac_aux_dir=
962 for ac_dir in admin "$srcdir"/admin; do
963- for ac_t in install-sh install.sh shtool; do
964- if test -f "$ac_dir/$ac_t"; then
965- ac_aux_dir=$ac_dir
966- ac_install_sh="$ac_aux_dir/$ac_t -c"
967- break 2
968- fi
969- done
970+ if test -f "$ac_dir/install-sh"; then
971+ ac_aux_dir=$ac_dir
972+ ac_install_sh="$ac_aux_dir/install-sh -c"
973+ break
974+ elif test -f "$ac_dir/install.sh"; then
975+ ac_aux_dir=$ac_dir
976+ ac_install_sh="$ac_aux_dir/install.sh -c"
977+ break
978+ elif test -f "$ac_dir/shtool"; then
979+ ac_aux_dir=$ac_dir
980+ ac_install_sh="$ac_aux_dir/shtool install -c"
981+ break
982+ fi
983 done
984 if test -z "$ac_aux_dir"; then
985- as_fn_error "cannot find install-sh, install.sh, or shtool in admin \"$srcdir\"/admin" "$LINENO" 5
986+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in admin \"$srcdir\"/admin" "$LINENO" 5
987 fi
988
989 # These three variables are undocumented and unsupported,
990@@ -2727,7 +2748,7 @@
991 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
992 $as_echo_n "checking for a BSD-compatible install... " >&6; }
993 if test -z "$INSTALL"; then
994-if test "${ac_cv_path_install+set}" = set; then :
995+if ${ac_cv_path_install+:} false; then :
996 $as_echo_n "(cached) " >&6
997 else
998 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
999@@ -2814,11 +2835,11 @@
1000 '
1001 case `pwd` in
1002 *[\\\"\#\$\&\'\`$am_lf]*)
1003- as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
1004+ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
1005 esac
1006 case $srcdir in
1007 *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
1008- as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
1009+ as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
1010 esac
1011
1012 # Do `set' in a subshell so we don't clobber the current shell's
1013@@ -2840,7 +2861,7 @@
1014 # if, for instance, CONFIG_SHELL is bash and it inherits a
1015 # broken ls alias from the environment. This has actually
1016 # happened. Such a system could not be considered "sane".
1017- as_fn_error "ls -t appears to fail. Make sure there is not a broken
1018+ as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
1019 alias in your environment" "$LINENO" 5
1020 fi
1021
1022@@ -2850,7 +2871,7 @@
1023 # Ok.
1024 :
1025 else
1026- as_fn_error "newly created file is older than distributed files!
1027+ as_fn_error $? "newly created file is older than distributed files!
1028 Check your system clock" "$LINENO" 5
1029 fi
1030 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1031@@ -2904,7 +2925,7 @@
1032 set dummy ${ac_tool_prefix}strip; ac_word=$2
1033 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1034 $as_echo_n "checking for $ac_word... " >&6; }
1035-if test "${ac_cv_prog_STRIP+set}" = set; then :
1036+if ${ac_cv_prog_STRIP+:} false; then :
1037 $as_echo_n "(cached) " >&6
1038 else
1039 if test -n "$STRIP"; then
1040@@ -2944,7 +2965,7 @@
1041 set dummy strip; ac_word=$2
1042 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1043 $as_echo_n "checking for $ac_word... " >&6; }
1044-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
1045+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
1046 $as_echo_n "(cached) " >&6
1047 else
1048 if test -n "$ac_ct_STRIP"; then
1049@@ -2997,7 +3018,7 @@
1050 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
1051 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
1052 if test -z "$MKDIR_P"; then
1053- if test "${ac_cv_path_mkdir+set}" = set; then :
1054+ if ${ac_cv_path_mkdir+:} false; then :
1055 $as_echo_n "(cached) " >&6
1056 else
1057 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1058@@ -3048,7 +3069,7 @@
1059 set dummy $ac_prog; ac_word=$2
1060 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1061 $as_echo_n "checking for $ac_word... " >&6; }
1062-if test "${ac_cv_prog_AWK+set}" = set; then :
1063+if ${ac_cv_prog_AWK+:} false; then :
1064 $as_echo_n "(cached) " >&6
1065 else
1066 if test -n "$AWK"; then
1067@@ -3088,7 +3109,7 @@
1068 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
1069 set x ${MAKE-make}
1070 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
1071-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
1072+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
1073 $as_echo_n "(cached) " >&6
1074 else
1075 cat >conftest.make <<\_ACEOF
1076@@ -3096,7 +3117,7 @@
1077 all:
1078 @echo '@@@%%%=$(MAKE)=@@@%%%'
1079 _ACEOF
1080-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
1081+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
1082 case `${MAKE-make} -f conftest.make 2>/dev/null` in
1083 *@@@%%%=?*=@@@%%%*)
1084 eval ac_cv_prog_make_${ac_make}_set=yes;;
1085@@ -3130,7 +3151,7 @@
1086 am__isrc=' -I$(srcdir)'
1087 # test to see if srcdir already configured
1088 if test -f $srcdir/config.status; then
1089- as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
1090+ as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
1091 fi
1092 fi
1093
1094@@ -3146,7 +3167,7 @@
1095
1096 # Define the identity of the package.
1097 PACKAGE='mlocate'
1098- VERSION='0.23.1'
1099+ VERSION='0.25'
1100
1101
1102 # Some tools Automake needs.
1103@@ -3189,7 +3210,7 @@
1104 set dummy ${ac_tool_prefix}gcc; ac_word=$2
1105 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1106 $as_echo_n "checking for $ac_word... " >&6; }
1107-if test "${ac_cv_prog_CC+set}" = set; then :
1108+if ${ac_cv_prog_CC+:} false; then :
1109 $as_echo_n "(cached) " >&6
1110 else
1111 if test -n "$CC"; then
1112@@ -3229,7 +3250,7 @@
1113 set dummy gcc; ac_word=$2
1114 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1115 $as_echo_n "checking for $ac_word... " >&6; }
1116-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
1117+if ${ac_cv_prog_ac_ct_CC+:} false; then :
1118 $as_echo_n "(cached) " >&6
1119 else
1120 if test -n "$ac_ct_CC"; then
1121@@ -3282,7 +3303,7 @@
1122 set dummy ${ac_tool_prefix}cc; ac_word=$2
1123 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1124 $as_echo_n "checking for $ac_word... " >&6; }
1125-if test "${ac_cv_prog_CC+set}" = set; then :
1126+if ${ac_cv_prog_CC+:} false; then :
1127 $as_echo_n "(cached) " >&6
1128 else
1129 if test -n "$CC"; then
1130@@ -3322,7 +3343,7 @@
1131 set dummy cc; ac_word=$2
1132 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1133 $as_echo_n "checking for $ac_word... " >&6; }
1134-if test "${ac_cv_prog_CC+set}" = set; then :
1135+if ${ac_cv_prog_CC+:} false; then :
1136 $as_echo_n "(cached) " >&6
1137 else
1138 if test -n "$CC"; then
1139@@ -3381,7 +3402,7 @@
1140 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1141 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1142 $as_echo_n "checking for $ac_word... " >&6; }
1143-if test "${ac_cv_prog_CC+set}" = set; then :
1144+if ${ac_cv_prog_CC+:} false; then :
1145 $as_echo_n "(cached) " >&6
1146 else
1147 if test -n "$CC"; then
1148@@ -3425,7 +3446,7 @@
1149 set dummy $ac_prog; ac_word=$2
1150 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1151 $as_echo_n "checking for $ac_word... " >&6; }
1152-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
1153+if ${ac_cv_prog_ac_ct_CC+:} false; then :
1154 $as_echo_n "(cached) " >&6
1155 else
1156 if test -n "$ac_ct_CC"; then
1157@@ -3479,8 +3500,8 @@
1158
1159 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1160 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1161-as_fn_error "no acceptable C compiler found in \$PATH
1162-See \`config.log' for more details." "$LINENO" 5; }
1163+as_fn_error $? "no acceptable C compiler found in \$PATH
1164+See \`config.log' for more details" "$LINENO" 5; }
1165
1166 # Provide some information about the compiler.
1167 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
1168@@ -3594,9 +3615,8 @@
1169
1170 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1171 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1172-{ as_fn_set_status 77
1173-as_fn_error "C compiler cannot create executables
1174-See \`config.log' for more details." "$LINENO" 5; }; }
1175+as_fn_error 77 "C compiler cannot create executables
1176+See \`config.log' for more details" "$LINENO" 5; }
1177 else
1178 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1179 $as_echo "yes" >&6; }
1180@@ -3638,8 +3658,8 @@
1181 else
1182 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1183 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1184-as_fn_error "cannot compute suffix of executables: cannot compile and link
1185-See \`config.log' for more details." "$LINENO" 5; }
1186+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
1187+See \`config.log' for more details" "$LINENO" 5; }
1188 fi
1189 rm -f conftest conftest$ac_cv_exeext
1190 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
1191@@ -3696,9 +3716,9 @@
1192 else
1193 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1194 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1195-as_fn_error "cannot run C compiled programs.
1196+as_fn_error $? "cannot run C compiled programs.
1197 If you meant to cross compile, use \`--host'.
1198-See \`config.log' for more details." "$LINENO" 5; }
1199+See \`config.log' for more details" "$LINENO" 5; }
1200 fi
1201 fi
1202 fi
1203@@ -3709,7 +3729,7 @@
1204 ac_clean_files=$ac_clean_files_save
1205 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
1206 $as_echo_n "checking for suffix of object files... " >&6; }
1207-if test "${ac_cv_objext+set}" = set; then :
1208+if ${ac_cv_objext+:} false; then :
1209 $as_echo_n "(cached) " >&6
1210 else
1211 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1212@@ -3749,8 +3769,8 @@
1213
1214 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1215 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1216-as_fn_error "cannot compute suffix of object files: cannot compile
1217-See \`config.log' for more details." "$LINENO" 5; }
1218+as_fn_error $? "cannot compute suffix of object files: cannot compile
1219+See \`config.log' for more details" "$LINENO" 5; }
1220 fi
1221 rm -f conftest.$ac_cv_objext conftest.$ac_ext
1222 fi
1223@@ -3760,7 +3780,7 @@
1224 ac_objext=$OBJEXT
1225 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
1226 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
1227-if test "${ac_cv_c_compiler_gnu+set}" = set; then :
1228+if ${ac_cv_c_compiler_gnu+:} false; then :
1229 $as_echo_n "(cached) " >&6
1230 else
1231 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1232@@ -3797,7 +3817,7 @@
1233 ac_save_CFLAGS=$CFLAGS
1234 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
1235 $as_echo_n "checking whether $CC accepts -g... " >&6; }
1236-if test "${ac_cv_prog_cc_g+set}" = set; then :
1237+if ${ac_cv_prog_cc_g+:} false; then :
1238 $as_echo_n "(cached) " >&6
1239 else
1240 ac_save_c_werror_flag=$ac_c_werror_flag
1241@@ -3875,7 +3895,7 @@
1242 fi
1243 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
1244 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
1245-if test "${ac_cv_prog_cc_c89+set}" = set; then :
1246+if ${ac_cv_prog_cc_c89+:} false; then :
1247 $as_echo_n "(cached) " >&6
1248 else
1249 ac_cv_prog_cc_c89=no
1250@@ -4036,7 +4056,7 @@
1251
1252 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
1253 $as_echo_n "checking dependency style of $depcc... " >&6; }
1254-if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
1255+if ${am_cv_CC_dependencies_compiler_type+:} false; then :
1256 $as_echo_n "(cached) " >&6
1257 else
1258 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
1259@@ -4164,7 +4184,7 @@
1260 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
1261 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1262 $as_echo_n "checking for $ac_word... " >&6; }
1263-if test "${ac_cv_prog_RANLIB+set}" = set; then :
1264+if ${ac_cv_prog_RANLIB+:} false; then :
1265 $as_echo_n "(cached) " >&6
1266 else
1267 if test -n "$RANLIB"; then
1268@@ -4204,7 +4224,7 @@
1269 set dummy ranlib; ac_word=$2
1270 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1271 $as_echo_n "checking for $ac_word... " >&6; }
1272-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
1273+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
1274 $as_echo_n "(cached) " >&6
1275 else
1276 if test -n "$ac_ct_RANLIB"; then
1277@@ -4260,7 +4280,7 @@
1278 fi
1279 set dummy $CC; ac_cc=`$as_echo "$2" |
1280 sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
1281-if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then :
1282+if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
1283 $as_echo_n "(cached) " >&6
1284 else
1285 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1286@@ -4390,7 +4410,7 @@
1287 CPP=
1288 fi
1289 if test -z "$CPP"; then
1290- if test "${ac_cv_prog_CPP+set}" = set; then :
1291+ if ${ac_cv_prog_CPP+:} false; then :
1292 $as_echo_n "(cached) " >&6
1293 else
1294 # Double quotes because CPP needs to be expanded
1295@@ -4420,7 +4440,7 @@
1296 # Broken: fails on valid input.
1297 continue
1298 fi
1299-rm -f conftest.err conftest.$ac_ext
1300+rm -f conftest.err conftest.i conftest.$ac_ext
1301
1302 # OK, works on sane cases. Now check whether nonexistent headers
1303 # can be detected and how.
1304@@ -4436,11 +4456,11 @@
1305 ac_preproc_ok=:
1306 break
1307 fi
1308-rm -f conftest.err conftest.$ac_ext
1309+rm -f conftest.err conftest.i conftest.$ac_ext
1310
1311 done
1312 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
1313-rm -f conftest.err conftest.$ac_ext
1314+rm -f conftest.i conftest.err conftest.$ac_ext
1315 if $ac_preproc_ok; then :
1316 break
1317 fi
1318@@ -4479,7 +4499,7 @@
1319 # Broken: fails on valid input.
1320 continue
1321 fi
1322-rm -f conftest.err conftest.$ac_ext
1323+rm -f conftest.err conftest.i conftest.$ac_ext
1324
1325 # OK, works on sane cases. Now check whether nonexistent headers
1326 # can be detected and how.
1327@@ -4495,18 +4515,18 @@
1328 ac_preproc_ok=:
1329 break
1330 fi
1331-rm -f conftest.err conftest.$ac_ext
1332+rm -f conftest.err conftest.i conftest.$ac_ext
1333
1334 done
1335 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
1336-rm -f conftest.err conftest.$ac_ext
1337+rm -f conftest.i conftest.err conftest.$ac_ext
1338 if $ac_preproc_ok; then :
1339
1340 else
1341 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1342 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1343-as_fn_error "C preprocessor \"$CPP\" fails sanity check
1344-See \`config.log' for more details." "$LINENO" 5; }
1345+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
1346+See \`config.log' for more details" "$LINENO" 5; }
1347 fi
1348
1349 ac_ext=c
1350@@ -4518,7 +4538,7 @@
1351
1352 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
1353 $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
1354-if test "${ac_cv_path_GREP+set}" = set; then :
1355+if ${ac_cv_path_GREP+:} false; then :
1356 $as_echo_n "(cached) " >&6
1357 else
1358 if test -z "$GREP"; then
1359@@ -4567,7 +4587,7 @@
1360 done
1361 IFS=$as_save_IFS
1362 if test -z "$ac_cv_path_GREP"; then
1363- as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
1364+ as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
1365 fi
1366 else
1367 ac_cv_path_GREP=$GREP
1368@@ -4581,7 +4601,7 @@
1369
1370 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
1371 $as_echo_n "checking for egrep... " >&6; }
1372-if test "${ac_cv_path_EGREP+set}" = set; then :
1373+if ${ac_cv_path_EGREP+:} false; then :
1374 $as_echo_n "(cached) " >&6
1375 else
1376 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
1377@@ -4633,7 +4653,7 @@
1378 done
1379 IFS=$as_save_IFS
1380 if test -z "$ac_cv_path_EGREP"; then
1381- as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
1382+ as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
1383 fi
1384 else
1385 ac_cv_path_EGREP=$EGREP
1386@@ -4648,7 +4668,7 @@
1387
1388 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
1389 $as_echo_n "checking for ANSI C header files... " >&6; }
1390-if test "${ac_cv_header_stdc+set}" = set; then :
1391+if ${ac_cv_header_stdc+:} false; then :
1392 $as_echo_n "(cached) " >&6
1393 else
1394 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1395@@ -4765,8 +4785,7 @@
1396 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
1397 ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
1398 "
1399-eval as_val=\$$as_ac_Header
1400- if test "x$as_val" = x""yes; then :
1401+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
1402 cat >>confdefs.h <<_ACEOF
1403 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
1404 _ACEOF
1405@@ -4778,7 +4797,7 @@
1406
1407
1408 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default"
1409-if test "x$ac_cv_header_minix_config_h" = x""yes; then :
1410+if test "x$ac_cv_header_minix_config_h" = xyes; then :
1411 MINIX=yes
1412 else
1413 MINIX=
1414@@ -4800,7 +4819,7 @@
1415
1416 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
1417 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; }
1418-if test "${ac_cv_safe_to_define___extensions__+set}" = set; then :
1419+if ${ac_cv_safe_to_define___extensions__+:} false; then :
1420 $as_echo_n "(cached) " >&6
1421 else
1422 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1423@@ -4863,7 +4882,7 @@
1424 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
1425 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1426 $as_echo_n "checking for $ac_word... " >&6; }
1427-if test "${ac_cv_prog_RANLIB+set}" = set; then :
1428+if ${ac_cv_prog_RANLIB+:} false; then :
1429 $as_echo_n "(cached) " >&6
1430 else
1431 if test -n "$RANLIB"; then
1432@@ -4903,7 +4922,7 @@
1433 set dummy ranlib; ac_word=$2
1434 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1435 $as_echo_n "checking for $ac_word... " >&6; }
1436-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
1437+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
1438 $as_echo_n "(cached) " >&6
1439 else
1440 if test -n "$ac_ct_RANLIB"; then
1441@@ -4955,11 +4974,22 @@
1442 AUTOM4TE=${AUTOM4TE-"${am_missing_run}autom4te"}
1443
1444
1445+ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
1446+if test "x$ac_cv_type_size_t" = xyes; then :
1447+
1448+else
1449+
1450+cat >>confdefs.h <<_ACEOF
1451+#define size_t unsigned int
1452+_ACEOF
1453+
1454+fi
1455+
1456 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
1457 # for constant arguments. Useless!
1458 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5
1459 $as_echo_n "checking for working alloca.h... " >&6; }
1460-if test "${ac_cv_working_alloca_h+set}" = set; then :
1461+if ${ac_cv_working_alloca_h+:} false; then :
1462 $as_echo_n "(cached) " >&6
1463 else
1464 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1465@@ -4992,7 +5022,7 @@
1466
1467 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5
1468 $as_echo_n "checking for alloca... " >&6; }
1469-if test "${ac_cv_func_alloca_works+set}" = set; then :
1470+if ${ac_cv_func_alloca_works+:} false; then :
1471 $as_echo_n "(cached) " >&6
1472 else
1473 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1474@@ -5011,7 +5041,7 @@
1475 #pragma alloca
1476 # else
1477 # ifndef alloca /* predefined by HP cc +Olibcalls */
1478-char *alloca ();
1479+void *alloca (size_t);
1480 # endif
1481 # endif
1482 # endif
1483@@ -5059,7 +5089,7 @@
1484
1485 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5
1486 $as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; }
1487-if test "${ac_cv_os_cray+set}" = set; then :
1488+if ${ac_cv_os_cray+:} false; then :
1489 $as_echo_n "(cached) " >&6
1490 else
1491 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1492@@ -5086,8 +5116,7 @@
1493 for ac_func in _getb67 GETB67 getb67; do
1494 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
1495 ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
1496-eval as_val=\$$as_ac_var
1497- if test "x$as_val" = x""yes; then :
1498+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
1499
1500 cat >>confdefs.h <<_ACEOF
1501 #define CRAY_STACKSEG_END $ac_func
1502@@ -5101,7 +5130,7 @@
1503
1504 { $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5
1505 $as_echo_n "checking stack direction for C alloca... " >&6; }
1506-if test "${ac_cv_c_stack_direction+set}" = set; then :
1507+if ${ac_cv_c_stack_direction+:} false; then :
1508 $as_echo_n "(cached) " >&6
1509 else
1510 if test "$cross_compiling" = yes; then :
1511@@ -5150,7 +5179,7 @@
1512 fi
1513
1514 ac_fn_c_check_decl "$LINENO" "canonicalize_file_name" "ac_cv_have_decl_canonicalize_file_name" "$ac_includes_default"
1515-if test "x$ac_cv_have_decl_canonicalize_file_name" = x""yes; then :
1516+if test "x$ac_cv_have_decl_canonicalize_file_name" = xyes; then :
1517 ac_have_decl=1
1518 else
1519 ac_have_decl=0
1520@@ -5167,8 +5196,7 @@
1521 do :
1522 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
1523 ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
1524-eval as_val=\$$as_ac_var
1525- if test "x$as_val" = x""yes; then :
1526+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
1527 cat >>confdefs.h <<_ACEOF
1528 #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
1529 _ACEOF
1530@@ -5186,8 +5214,7 @@
1531 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
1532 ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
1533 "
1534-eval as_val=\$$as_ac_Header
1535- if test "x$as_val" = x""yes; then :
1536+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
1537 cat >>confdefs.h <<_ACEOF
1538 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
1539 _ACEOF
1540@@ -5205,7 +5232,7 @@
1541
1542
1543 ac_fn_c_check_decl "$LINENO" "strerror_r" "ac_cv_have_decl_strerror_r" "$ac_includes_default"
1544-if test "x$ac_cv_have_decl_strerror_r" = x""yes; then :
1545+if test "x$ac_cv_have_decl_strerror_r" = xyes; then :
1546 ac_have_decl=1
1547 else
1548 ac_have_decl=0
1549@@ -5218,7 +5245,7 @@
1550 for ac_func in strerror_r
1551 do :
1552 ac_fn_c_check_func "$LINENO" "strerror_r" "ac_cv_func_strerror_r"
1553-if test "x$ac_cv_func_strerror_r" = x""yes; then :
1554+if test "x$ac_cv_func_strerror_r" = xyes; then :
1555 cat >>confdefs.h <<_ACEOF
1556 #define HAVE_STRERROR_R 1
1557 _ACEOF
1558@@ -5228,7 +5255,7 @@
1559
1560 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strerror_r returns char *" >&5
1561 $as_echo_n "checking whether strerror_r returns char *... " >&6; }
1562-if test "${ac_cv_func_strerror_r_char_p+set}" = set; then :
1563+if ${ac_cv_func_strerror_r_char_p+:} false; then :
1564 $as_echo_n "(cached) " >&6
1565 else
1566
1567@@ -5298,7 +5325,7 @@
1568
1569 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbstate_t" >&5
1570 $as_echo_n "checking for mbstate_t... " >&6; }
1571-if test "${ac_cv_type_mbstate_t+set}" = set; then :
1572+if ${ac_cv_type_mbstate_t+:} false; then :
1573 $as_echo_n "(cached) " >&6
1574 else
1575 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1576@@ -5354,7 +5381,7 @@
1577 for ac_header in getopt.h
1578 do :
1579 ac_fn_c_check_header_mongrel "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default"
1580-if test "x$ac_cv_header_getopt_h" = x""yes; then :
1581+if test "x$ac_cv_header_getopt_h" = xyes; then :
1582 cat >>confdefs.h <<_ACEOF
1583 #define HAVE_GETOPT_H 1
1584 _ACEOF
1585@@ -5371,7 +5398,7 @@
1586 for ac_func in getopt_long_only
1587 do :
1588 ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only"
1589-if test "x$ac_cv_func_getopt_long_only" = x""yes; then :
1590+if test "x$ac_cv_func_getopt_long_only" = xyes; then :
1591 cat >>confdefs.h <<_ACEOF
1592 #define HAVE_GETOPT_LONG_ONLY 1
1593 _ACEOF
1594@@ -5386,7 +5413,7 @@
1595 if test -z "$GETOPT_H"; then
1596 ac_fn_c_check_decl "$LINENO" "optreset" "ac_cv_have_decl_optreset" "#include <getopt.h>
1597 "
1598-if test "x$ac_cv_have_decl_optreset" = x""yes; then :
1599+if test "x$ac_cv_have_decl_optreset" = xyes; then :
1600 GETOPT_H=getopt.h
1601 fi
1602
1603@@ -5395,13 +5422,13 @@
1604 if test -z "$GETOPT_H"; then
1605 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt function" >&5
1606 $as_echo_n "checking for working GNU getopt function... " >&6; }
1607-if test "${gl_cv_func_gnu_getopt+set}" = set; then :
1608+if ${gl_cv_func_gnu_getopt+:} false; then :
1609 $as_echo_n "(cached) " >&6
1610 else
1611 if test "$cross_compiling" = yes; then :
1612 ac_fn_c_check_decl "$LINENO" "getopt_clip" "ac_cv_have_decl_getopt_clip" "#include <getopt.h>
1613 "
1614-if test "x$ac_cv_have_decl_getopt_clip" = x""yes; then :
1615+if test "x$ac_cv_have_decl_getopt_clip" = xyes; then :
1616 gl_cv_func_gnu_getopt=no
1617 else
1618 gl_cv_func_gnu_getopt=yes
1619@@ -5443,7 +5470,7 @@
1620 fi
1621
1622 ac_fn_c_check_decl "$LINENO" "getenv" "ac_cv_have_decl_getenv" "$ac_includes_default"
1623-if test "x$ac_cv_have_decl_getenv" = x""yes; then :
1624+if test "x$ac_cv_have_decl_getenv" = xyes; then :
1625 ac_have_decl=1
1626 else
1627 ac_have_decl=0
1628@@ -5455,7 +5482,7 @@
1629
1630 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5
1631 $as_echo_n "checking for inline... " >&6; }
1632-if test "${ac_cv_c_inline+set}" = set; then :
1633+if ${ac_cv_c_inline+:} false; then :
1634 $as_echo_n "(cached) " >&6
1635 else
1636 ac_cv_c_inline=no
1637@@ -5498,7 +5525,7 @@
1638
1639 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5
1640 $as_echo_n "checking for nl_langinfo and CODESET... " >&6; }
1641-if test "${am_cv_langinfo_codeset+set}" = set; then :
1642+if ${am_cv_langinfo_codeset+:} false; then :
1643 $as_echo_n "(cached) " >&6
1644 else
1645 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1646@@ -5530,7 +5557,7 @@
1647 fi
1648
1649 ac_fn_c_check_decl "$LINENO" "getc_unlocked" "ac_cv_have_decl_getc_unlocked" "$ac_includes_default"
1650-if test "x$ac_cv_have_decl_getc_unlocked" = x""yes; then :
1651+if test "x$ac_cv_have_decl_getc_unlocked" = xyes; then :
1652 ac_have_decl=1
1653 else
1654 ac_have_decl=0
1655@@ -5542,27 +5569,27 @@
1656
1657 # Make sure we can run config.sub.
1658 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
1659- as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
1660+ as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
1661
1662 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
1663 $as_echo_n "checking build system type... " >&6; }
1664-if test "${ac_cv_build+set}" = set; then :
1665+if ${ac_cv_build+:} false; then :
1666 $as_echo_n "(cached) " >&6
1667 else
1668 ac_build_alias=$build_alias
1669 test "x$ac_build_alias" = x &&
1670 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
1671 test "x$ac_build_alias" = x &&
1672- as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5
1673+ as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
1674 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
1675- as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
1676+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
1677
1678 fi
1679 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
1680 $as_echo "$ac_cv_build" >&6; }
1681 case $ac_cv_build in
1682 *-*-*) ;;
1683-*) as_fn_error "invalid value of canonical build" "$LINENO" 5;;
1684+*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
1685 esac
1686 build=$ac_cv_build
1687 ac_save_IFS=$IFS; IFS='-'
1688@@ -5580,14 +5607,14 @@
1689
1690 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
1691 $as_echo_n "checking host system type... " >&6; }
1692-if test "${ac_cv_host+set}" = set; then :
1693+if ${ac_cv_host+:} false; then :
1694 $as_echo_n "(cached) " >&6
1695 else
1696 if test "x$host_alias" = x; then
1697 ac_cv_host=$ac_cv_build
1698 else
1699 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
1700- as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
1701+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
1702 fi
1703
1704 fi
1705@@ -5595,7 +5622,7 @@
1706 $as_echo "$ac_cv_host" >&6; }
1707 case $ac_cv_host in
1708 *-*-*) ;;
1709-*) as_fn_error "invalid value of canonical host" "$LINENO" 5;;
1710+*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
1711 esac
1712 host=$ac_cv_host
1713 ac_save_IFS=$IFS; IFS='-'
1714@@ -5614,7 +5641,7 @@
1715
1716 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C Library 2.1 or newer" >&5
1717 $as_echo_n "checking whether we are using the GNU C Library 2.1 or newer... " >&6; }
1718-if test "${ac_cv_gnu_library_2_1+set}" = set; then :
1719+if ${ac_cv_gnu_library_2_1+:} false; then :
1720 $as_echo_n "(cached) " >&6
1721 else
1722 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1723@@ -5649,7 +5676,7 @@
1724 for ac_header in stdlib.h
1725 do :
1726 ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default"
1727-if test "x$ac_cv_header_stdlib_h" = x""yes; then :
1728+if test "x$ac_cv_header_stdlib_h" = xyes; then :
1729 cat >>confdefs.h <<_ACEOF
1730 #define HAVE_STDLIB_H 1
1731 _ACEOF
1732@@ -5660,7 +5687,7 @@
1733
1734 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5
1735 $as_echo_n "checking for GNU libc compatible malloc... " >&6; }
1736-if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then :
1737+if ${ac_cv_func_malloc_0_nonnull+:} false; then :
1738 $as_echo_n "(cached) " >&6
1739 else
1740 if test "$cross_compiling" = yes; then :
1741@@ -5709,7 +5736,7 @@
1742
1743 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long int" >&5
1744 $as_echo_n "checking for long long int... " >&6; }
1745-if test "${ac_cv_type_long_long_int+set}" = set; then :
1746+if ${ac_cv_type_long_long_int+:} false; then :
1747 $as_echo_n "(cached) " >&6
1748 else
1749 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1750@@ -5803,7 +5830,7 @@
1751
1752 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc and mbstate_t are properly declared" >&5
1753 $as_echo_n "checking whether mbrtowc and mbstate_t are properly declared... " >&6; }
1754-if test "${gl_cv_func_mbrtowc+set}" = set; then :
1755+if ${gl_cv_func_mbrtowc+:} false; then :
1756 $as_echo_n "(cached) " >&6
1757 else
1758 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1759@@ -5887,7 +5914,7 @@
1760
1761 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C/C++ restrict keyword" >&5
1762 $as_echo_n "checking for C/C++ restrict keyword... " >&6; }
1763-if test "${ac_cv_c_restrict+set}" = set; then :
1764+if ${ac_cv_c_restrict+:} false; then :
1765 $as_echo_n "(cached) " >&6
1766 else
1767 ac_cv_c_restrict=no
1768@@ -5956,7 +5983,7 @@
1769
1770 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ssize_t" >&5
1771 $as_echo_n "checking for ssize_t... " >&6; }
1772-if test "${gt_cv_ssize_t+set}" = set; then :
1773+if ${gt_cv_ssize_t+:} false; then :
1774 $as_echo_n "(cached) " >&6
1775 else
1776 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1777@@ -5990,7 +6017,7 @@
1778
1779 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdbool.h that conforms to C99" >&5
1780 $as_echo_n "checking for stdbool.h that conforms to C99... " >&6; }
1781-if test "${ac_cv_header_stdbool_h+set}" = set; then :
1782+if ${ac_cv_header_stdbool_h+:} false; then :
1783 $as_echo_n "(cached) " >&6
1784 else
1785 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1786@@ -6081,7 +6108,7 @@
1787 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdbool_h" >&5
1788 $as_echo "$ac_cv_header_stdbool_h" >&6; }
1789 ac_fn_c_check_type "$LINENO" "_Bool" "ac_cv_type__Bool" "$ac_includes_default"
1790-if test "x$ac_cv_type__Bool" = x""yes; then :
1791+if test "x$ac_cv_type__Bool" = xyes; then :
1792
1793 cat >>confdefs.h <<_ACEOF
1794 #define HAVE__BOOL 1
1795@@ -6098,7 +6125,7 @@
1796
1797 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long int" >&5
1798 $as_echo_n "checking for unsigned long long int... " >&6; }
1799-if test "${ac_cv_type_unsigned_long_long_int+set}" = set; then :
1800+if ${ac_cv_type_unsigned_long_long_int+:} false; then :
1801 $as_echo_n "(cached) " >&6
1802 else
1803 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1804@@ -6156,7 +6183,7 @@
1805
1806 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the preprocessor supports include_next" >&5
1807 $as_echo_n "checking whether the preprocessor supports include_next... " >&6; }
1808-if test "${gl_cv_have_include_next+set}" = set; then :
1809+if ${gl_cv_have_include_next+:} false; then :
1810 $as_echo_n "(cached) " >&6
1811 else
1812 rm -rf conftestd1 conftestd2
1813@@ -6239,7 +6266,7 @@
1814 else
1815 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strerror function" >&5
1816 $as_echo_n "checking for working strerror function... " >&6; }
1817-if test "${gl_cv_func_working_strerror+set}" = set; then :
1818+if ${gl_cv_func_working_strerror+:} false; then :
1819 $as_echo_n "(cached) " >&6
1820 else
1821 if test "$cross_compiling" = yes; then :
1822@@ -6305,7 +6332,7 @@
1823 else
1824 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <string.h>" >&5
1825 $as_echo_n "checking absolute name of <string.h>... " >&6; }
1826-if test "${gl_cv_next_string_h+set}" = set; then :
1827+if ${gl_cv_next_string_h+:} false; then :
1828 $as_echo_n "(cached) " >&6
1829 else
1830
1831@@ -6336,7 +6363,7 @@
1832
1833
1834 ac_fn_c_check_decl "$LINENO" "strnlen" "ac_cv_have_decl_strnlen" "$ac_includes_default"
1835-if test "x$ac_cv_have_decl_strnlen" = x""yes; then :
1836+if test "x$ac_cv_have_decl_strnlen" = xyes; then :
1837 ac_have_decl=1
1838 else
1839 ac_have_decl=0
1840@@ -6358,7 +6385,7 @@
1841
1842 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <time.h>" >&5
1843 $as_echo_n "checking for struct timespec in <time.h>... " >&6; }
1844-if test "${gl_cv_sys_struct_timespec_in_time_h+set}" = set; then :
1845+if ${gl_cv_sys_struct_timespec_in_time_h+:} false; then :
1846 $as_echo_n "(cached) " >&6
1847 else
1848 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1849@@ -6390,7 +6417,7 @@
1850 else
1851 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <sys/time.h>" >&5
1852 $as_echo_n "checking for struct timespec in <sys/time.h>... " >&6; }
1853-if test "${gl_cv_sys_struct_timespec_in_sys_time_h+set}" = set; then :
1854+if ${gl_cv_sys_struct_timespec_in_sys_time_h+:} false; then :
1855 $as_echo_n "(cached) " >&6
1856 else
1857 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1858@@ -6434,7 +6461,7 @@
1859 else
1860 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <time.h>" >&5
1861 $as_echo_n "checking absolute name of <time.h>... " >&6; }
1862-if test "${gl_cv_next_time_h+set}" = set; then :
1863+if ${gl_cv_next_time_h+:} false; then :
1864 $as_echo_n "(cached) " >&6
1865 else
1866
1867@@ -6477,7 +6504,7 @@
1868
1869 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wint_t" >&5
1870 $as_echo_n "checking for wint_t... " >&6; }
1871-if test "${gt_cv_c_wint_t+set}" = set; then :
1872+if ${gt_cv_c_wint_t+:} false; then :
1873 $as_echo_n "(cached) " >&6
1874 else
1875 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1876@@ -6518,7 +6545,7 @@
1877
1878 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5
1879 $as_echo_n "checking for wchar_t... " >&6; }
1880-if test "${gt_cv_c_wchar_t+set}" = set; then :
1881+if ${gt_cv_c_wchar_t+:} false; then :
1882 $as_echo_n "(cached) " >&6
1883 else
1884 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1885@@ -6579,7 +6606,7 @@
1886 if test $ac_cv_working_alloca_h = yes; then
1887 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca as a compiler built-in" >&5
1888 $as_echo_n "checking for alloca as a compiler built-in... " >&6; }
1889-if test "${gl_cv_rpl_alloca+set}" = set; then :
1890+if ${gl_cv_rpl_alloca+:} false; then :
1891 $as_echo_n "(cached) " >&6
1892 else
1893
1894@@ -6645,7 +6672,7 @@
1895
1896 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for d_type member in directory struct" >&5
1897 $as_echo_n "checking for d_type member in directory struct... " >&6; }
1898-if test "${jm_cv_struct_dirent_d_type+set}" = set; then :
1899+if ${jm_cv_struct_dirent_d_type+:} false; then :
1900 $as_echo_n "(cached) " >&6
1901 else
1902 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1903@@ -6694,7 +6721,7 @@
1904
1905 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for error_at_line" >&5
1906 $as_echo_n "checking for error_at_line... " >&6; }
1907-if test "${ac_cv_lib_error_at_line+set}" = set; then :
1908+if ${ac_cv_lib_error_at_line+:} false; then :
1909 $as_echo_n "(cached) " >&6
1910 else
1911 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1912@@ -6755,7 +6782,7 @@
1913 FNMATCH_H=
1914 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU fnmatch" >&5
1915 $as_echo_n "checking for working GNU fnmatch... " >&6; }
1916-if test "${ac_cv_func_fnmatch_gnu+set}" = set; then :
1917+if ${ac_cv_func_fnmatch_gnu+:} false; then :
1918 $as_echo_n "(cached) " >&6
1919 else
1920 if test "$cross_compiling" = yes; then :
1921@@ -6831,7 +6858,7 @@
1922 else
1923 ac_fn_c_check_decl "$LINENO" "isblank" "ac_cv_have_decl_isblank" "#include <ctype.h>
1924 "
1925-if test "x$ac_cv_have_decl_isblank" = x""yes; then :
1926+if test "x$ac_cv_have_decl_isblank" = xyes; then :
1927 ac_have_decl=1
1928 else
1929 ac_have_decl=0
1930@@ -6909,7 +6936,7 @@
1931
1932 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler generally respects inline" >&5
1933 $as_echo_n "checking whether the compiler generally respects inline... " >&6; }
1934-if test "${gl_cv_c_inline_effective+set}" = set; then :
1935+if ${gl_cv_c_inline_effective+:} false; then :
1936 $as_echo_n "(cached) " >&6
1937 else
1938 if test $ac_cv_c_inline = no; then
1939@@ -6995,7 +7022,7 @@
1940 for ac_func in memchr
1941 do :
1942 ac_fn_c_check_func "$LINENO" "memchr" "ac_cv_func_memchr"
1943-if test "x$ac_cv_func_memchr" = x""yes; then :
1944+if test "x$ac_cv_func_memchr" = xyes; then :
1945 cat >>confdefs.h <<_ACEOF
1946 #define HAVE_MEMCHR 1
1947 _ACEOF
1948@@ -7013,7 +7040,7 @@
1949 for ac_header in bp-sym.h
1950 do :
1951 ac_fn_c_check_header_mongrel "$LINENO" "bp-sym.h" "ac_cv_header_bp_sym_h" "$ac_includes_default"
1952-if test "x$ac_cv_header_bp_sym_h" = x""yes; then :
1953+if test "x$ac_cv_header_bp_sym_h" = xyes; then :
1954 cat >>confdefs.h <<_ACEOF
1955 #define HAVE_BP_SYM_H 1
1956 _ACEOF
1957@@ -7041,7 +7068,7 @@
1958 for ac_func in mempcpy
1959 do :
1960 ac_fn_c_check_func "$LINENO" "mempcpy" "ac_cv_func_mempcpy"
1961-if test "x$ac_cv_func_mempcpy" = x""yes; then :
1962+if test "x$ac_cv_func_mempcpy" = xyes; then :
1963 cat >>confdefs.h <<_ACEOF
1964 #define HAVE_MEMPCPY 1
1965 _ACEOF
1966@@ -7077,7 +7104,7 @@
1967
1968 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for obstacks" >&5
1969 $as_echo_n "checking for obstacks... " >&6; }
1970-if test "${ac_cv_func_obstack+set}" = set; then :
1971+if ${ac_cv_func_obstack+:} false; then :
1972 $as_echo_n "(cached) " >&6
1973 else
1974 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1975@@ -7166,7 +7193,7 @@
1976
1977 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ssize_t" >&5
1978 $as_echo_n "checking for ssize_t... " >&6; }
1979-if test "${gt_cv_ssize_t+set}" = set; then :
1980+if ${gt_cv_ssize_t+:} false; then :
1981 $as_echo_n "(cached) " >&6
1982 else
1983 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1984@@ -7204,7 +7231,7 @@
1985 ac_fn_c_check_member "$LINENO" "struct stat" "st_atim.tv_nsec" "ac_cv_member_struct_stat_st_atim_tv_nsec" "#include <sys/types.h>
1986 #include <sys/stat.h>
1987 "
1988-if test "x$ac_cv_member_struct_stat_st_atim_tv_nsec" = x""yes; then :
1989+if test "x$ac_cv_member_struct_stat_st_atim_tv_nsec" = xyes; then :
1990
1991 cat >>confdefs.h <<_ACEOF
1992 #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
1993@@ -7212,7 +7239,7 @@
1994
1995 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct stat.st_atim is of type struct timespec" >&5
1996 $as_echo_n "checking whether struct stat.st_atim is of type struct timespec... " >&6; }
1997-if test "${ac_cv_typeof_struct_stat_st_atim_is_struct_timespec+set}" = set; then :
1998+if ${ac_cv_typeof_struct_stat_st_atim_is_struct_timespec+:} false; then :
1999 $as_echo_n "(cached) " >&6
2000 else
2001 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2002@@ -7255,7 +7282,7 @@
2003 ac_fn_c_check_member "$LINENO" "struct stat" "st_atimespec.tv_nsec" "ac_cv_member_struct_stat_st_atimespec_tv_nsec" "#include <sys/types.h>
2004 #include <sys/stat.h>
2005 "
2006-if test "x$ac_cv_member_struct_stat_st_atimespec_tv_nsec" = x""yes; then :
2007+if test "x$ac_cv_member_struct_stat_st_atimespec_tv_nsec" = xyes; then :
2008
2009 cat >>confdefs.h <<_ACEOF
2010 #define HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC 1
2011@@ -7266,7 +7293,7 @@
2012 ac_fn_c_check_member "$LINENO" "struct stat" "st_atimensec" "ac_cv_member_struct_stat_st_atimensec" "#include <sys/types.h>
2013 #include <sys/stat.h>
2014 "
2015-if test "x$ac_cv_member_struct_stat_st_atimensec" = x""yes; then :
2016+if test "x$ac_cv_member_struct_stat_st_atimensec" = xyes; then :
2017
2018 cat >>confdefs.h <<_ACEOF
2019 #define HAVE_STRUCT_STAT_ST_ATIMENSEC 1
2020@@ -7277,7 +7304,7 @@
2021 ac_fn_c_check_member "$LINENO" "struct stat" "st_atim.st__tim.tv_nsec" "ac_cv_member_struct_stat_st_atim_st__tim_tv_nsec" "#include <sys/types.h>
2022 #include <sys/stat.h>
2023 "
2024-if test "x$ac_cv_member_struct_stat_st_atim_st__tim_tv_nsec" = x""yes; then :
2025+if test "x$ac_cv_member_struct_stat_st_atim_st__tim_tv_nsec" = xyes; then :
2026
2027 cat >>confdefs.h <<_ACEOF
2028 #define HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC 1
2029@@ -7300,7 +7327,7 @@
2030 ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtimespec.tv_nsec" "ac_cv_member_struct_stat_st_birthtimespec_tv_nsec" "#include <sys/types.h>
2031 #include <sys/stat.h>
2032 "
2033-if test "x$ac_cv_member_struct_stat_st_birthtimespec_tv_nsec" = x""yes; then :
2034+if test "x$ac_cv_member_struct_stat_st_birthtimespec_tv_nsec" = xyes; then :
2035
2036 cat >>confdefs.h <<_ACEOF
2037 #define HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC 1
2038@@ -7311,7 +7338,7 @@
2039 ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtimensec" "ac_cv_member_struct_stat_st_birthtimensec" "#include <sys/types.h>
2040 #include <sys/stat.h>
2041 "
2042-if test "x$ac_cv_member_struct_stat_st_birthtimensec" = x""yes; then :
2043+if test "x$ac_cv_member_struct_stat_st_birthtimensec" = xyes; then :
2044
2045 cat >>confdefs.h <<_ACEOF
2046 #define HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC 1
2047@@ -7322,7 +7349,7 @@
2048 ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtim.tv_nsec" "ac_cv_member_struct_stat_st_birthtim_tv_nsec" "#include <sys/types.h>
2049 #include <sys/stat.h>
2050 "
2051-if test "x$ac_cv_member_struct_stat_st_birthtim_tv_nsec" = x""yes; then :
2052+if test "x$ac_cv_member_struct_stat_st_birthtim_tv_nsec" = xyes; then :
2053
2054 cat >>confdefs.h <<_ACEOF
2055 #define HAVE_STRUCT_STAT_ST_BIRTHTIM_TV_NSEC 1
2056@@ -7396,7 +7423,7 @@
2057 else
2058 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdint.h>" >&5
2059 $as_echo_n "checking absolute name of <stdint.h>... " >&6; }
2060-if test "${gl_cv_next_stdint_h+set}" = set; then :
2061+if ${gl_cv_next_stdint_h+:} false; then :
2062 $as_echo_n "(cached) " >&6
2063 else
2064
2065@@ -7435,7 +7462,7 @@
2066 if test $ac_cv_header_stdint_h = yes; then
2067 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stdint.h conforms to C99" >&5
2068 $as_echo_n "checking whether stdint.h conforms to C99... " >&6; }
2069-if test "${gl_cv_header_working_stdint_h+set}" = set; then :
2070+if ${gl_cv_header_working_stdint_h+:} false; then :
2071 $as_echo_n "(cached) " >&6
2072 else
2073 gl_cv_header_working_stdint_h=no
2074@@ -7617,8 +7644,7 @@
2075 do :
2076 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
2077 ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
2078-eval as_val=\$$as_ac_Header
2079- if test "x$as_val" = x""yes; then :
2080+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
2081 cat >>confdefs.h <<_ACEOF
2082 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
2083 _ACEOF
2084@@ -7648,7 +7674,7 @@
2085 for gltype in ptrdiff_t sig_atomic_t size_t wchar_t wint_t ; do
2086 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5
2087 $as_echo_n "checking for bit size of $gltype... " >&6; }
2088-if { as_var=gl_cv_bitsizeof_${gltype}; eval "test \"\${$as_var+set}\" = set"; }; then :
2089+if eval \${gl_cv_bitsizeof_${gltype}+:} false; then :
2090 $as_echo_n "(cached) " >&6
2091 else
2092 if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" "
2093@@ -7692,7 +7718,7 @@
2094 for gltype in sig_atomic_t wchar_t wint_t ; do
2095 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gltype is signed" >&5
2096 $as_echo_n "checking whether $gltype is signed... " >&6; }
2097-if { as_var=gl_cv_type_${gltype}_signed; eval "test \"\${$as_var+set}\" = set"; }; then :
2098+if eval \${gl_cv_type_${gltype}_signed+:} false; then :
2099 $as_echo_n "(cached) " >&6
2100 else
2101 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2102@@ -7750,7 +7776,7 @@
2103 for gltype in ptrdiff_t sig_atomic_t size_t wchar_t wint_t ; do
2104 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5
2105 $as_echo_n "checking for $gltype integer literal suffix... " >&6; }
2106-if { as_var=gl_cv_type_${gltype}_suffix; eval "test \"\${$as_var+set}\" = set"; }; then :
2107+if eval \${gl_cv_type_${gltype}_suffix+:} false; then :
2108 $as_echo_n "(cached) " >&6
2109 else
2110 eval gl_cv_type_${gltype}_suffix=no
2111@@ -7833,7 +7859,7 @@
2112 else
2113 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdlib.h>" >&5
2114 $as_echo_n "checking absolute name of <stdlib.h>... " >&6; }
2115-if test "${gl_cv_next_stdlib_h+set}" = set; then :
2116+if ${gl_cv_next_stdlib_h+:} false; then :
2117 $as_echo_n "(cached) " >&6
2118 else
2119
2120@@ -7877,7 +7903,7 @@
2121 for ac_func in strchrnul
2122 do :
2123 ac_fn_c_check_func "$LINENO" "strchrnul" "ac_cv_func_strchrnul"
2124-if test "x$ac_cv_func_strchrnul" = x""yes; then :
2125+if test "x$ac_cv_func_strchrnul" = xyes; then :
2126 cat >>confdefs.h <<_ACEOF
2127 #define HAVE_STRCHRNUL 1
2128 _ACEOF
2129@@ -7934,13 +7960,17 @@
2130 HAVE_DECL_STRNLEN=0
2131 fi
2132
2133- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strnlen" >&5
2134+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strnlen" >&5
2135 $as_echo_n "checking for working strnlen... " >&6; }
2136-if test "${ac_cv_func_strnlen_working+set}" = set; then :
2137+if ${ac_cv_func_strnlen_working+:} false; then :
2138 $as_echo_n "(cached) " >&6
2139 else
2140 if test "$cross_compiling" = yes; then :
2141- ac_cv_func_strnlen_working=no
2142+ # Guess no on AIX systems, yes otherwise.
2143+ case "$host_os" in
2144+ aix*) ac_cv_func_strnlen_working=no;;
2145+ *) ac_cv_func_strnlen_working=yes;;
2146+ esac
2147 else
2148 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2149 /* end confdefs.h. */
2150@@ -8024,7 +8054,7 @@
2151 else
2152 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <unistd.h>" >&5
2153 $as_echo_n "checking absolute name of <unistd.h>... " >&6; }
2154-if test "${gl_cv_next_unistd_h+set}" = set; then :
2155+if ${gl_cv_next_unistd_h+:} false; then :
2156 $as_echo_n "(cached) " >&6
2157 else
2158
2159@@ -8066,7 +8096,7 @@
2160
2161 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <wchar.h> is standalone" >&5
2162 $as_echo_n "checking whether <wchar.h> is standalone... " >&6; }
2163-if test "${gl_cv_header_wchar_h_standalone+set}" = set; then :
2164+if ${gl_cv_header_wchar_h_standalone+:} false; then :
2165 $as_echo_n "(cached) " >&6
2166 else
2167 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2168@@ -8104,7 +8134,7 @@
2169 else
2170 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <wchar.h>" >&5
2171 $as_echo_n "checking absolute name of <wchar.h>... " >&6; }
2172-if test "${gl_cv_next_wchar_h+set}" = set; then :
2173+if ${gl_cv_next_wchar_h+:} false; then :
2174 $as_echo_n "(cached) " >&6
2175 else
2176
2177@@ -8168,7 +8198,7 @@
2178 else
2179 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <wctype.h>" >&5
2180 $as_echo_n "checking absolute name of <wctype.h>... " >&6; }
2181-if test "${gl_cv_next_wctype_h+set}" = set; then :
2182+if ${gl_cv_next_wctype_h+:} false; then :
2183 $as_echo_n "(cached) " >&6
2184 else
2185
2186@@ -8228,7 +8258,7 @@
2187 #include <wchar.h>
2188
2189 "
2190-if test "x$ac_cv_have_decl_wcwidth" = x""yes; then :
2191+if test "x$ac_cv_have_decl_wcwidth" = xyes; then :
2192 ac_have_decl=1
2193 else
2194 ac_have_decl=0
2195@@ -8247,7 +8277,7 @@
2196 else
2197 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether wcwidth works reasonably in UTF-8 locales" >&5
2198 $as_echo_n "checking whether wcwidth works reasonably in UTF-8 locales... " >&6; }
2199-if test "${gl_cv_func_wcwidth_works+set}" = set; then :
2200+if ${gl_cv_func_wcwidth_works+:} false; then :
2201 $as_echo_n "(cached) " >&6
2202 else
2203
2204@@ -8404,7 +8434,7 @@
2205 set dummy msgfmt; ac_word=$2
2206 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2207 $as_echo_n "checking for $ac_word... " >&6; }
2208-if test "${ac_cv_path_MSGFMT+set}" = set; then :
2209+if ${ac_cv_path_MSGFMT+:} false; then :
2210 $as_echo_n "(cached) " >&6
2211 else
2212 case "$MSGFMT" in
2213@@ -8445,7 +8475,7 @@
2214 set dummy gmsgfmt; ac_word=$2
2215 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2216 $as_echo_n "checking for $ac_word... " >&6; }
2217-if test "${ac_cv_path_GMSGFMT+set}" = set; then :
2218+if ${ac_cv_path_GMSGFMT+:} false; then :
2219 $as_echo_n "(cached) " >&6
2220 else
2221 case $GMSGFMT in
2222@@ -8527,7 +8557,7 @@
2223 set dummy xgettext; ac_word=$2
2224 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2225 $as_echo_n "checking for $ac_word... " >&6; }
2226-if test "${ac_cv_path_XGETTEXT+set}" = set; then :
2227+if ${ac_cv_path_XGETTEXT+:} false; then :
2228 $as_echo_n "(cached) " >&6
2229 else
2230 case "$XGETTEXT" in
2231@@ -8605,7 +8635,7 @@
2232 set dummy msgmerge; ac_word=$2
2233 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2234 $as_echo_n "checking for $ac_word... " >&6; }
2235-if test "${ac_cv_path_MSGMERGE+set}" = set; then :
2236+if ${ac_cv_path_MSGMERGE+:} false; then :
2237 $as_echo_n "(cached) " >&6
2238 else
2239 case "$MSGMERGE" in
2240@@ -8727,7 +8757,7 @@
2241 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
2242 $as_echo_n "checking for non-GNU ld... " >&6; }
2243 fi
2244-if test "${acl_cv_path_LD+set}" = set; then :
2245+if ${acl_cv_path_LD+:} false; then :
2246 $as_echo_n "(cached) " >&6
2247 else
2248 if test -z "$LD"; then
2249@@ -8761,10 +8791,10 @@
2250 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2251 $as_echo "no" >&6; }
2252 fi
2253-test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5
2254+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
2255 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
2256 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
2257-if test "${acl_cv_prog_gnu_ld+set}" = set; then :
2258+if ${acl_cv_prog_gnu_ld+:} false; then :
2259 $as_echo_n "(cached) " >&6
2260 else
2261 # I'd rather use --version here, but apparently some GNU ld's only accept -v.
2262@@ -8784,7 +8814,7 @@
2263
2264 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5
2265 $as_echo_n "checking for shared library run path origin... " >&6; }
2266-if test "${acl_cv_rpath+set}" = set; then :
2267+if ${acl_cv_rpath+:} false; then :
2268 $as_echo_n "(cached) " >&6
2269 else
2270
2271@@ -9298,7 +9328,7 @@
2272
2273 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5
2274 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; }
2275-if test "${gt_cv_func_CFPreferencesCopyAppValue+set}" = set; then :
2276+if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then :
2277 $as_echo_n "(cached) " >&6
2278 else
2279 gt_save_LIBS="$LIBS"
2280@@ -9332,7 +9362,7 @@
2281 fi
2282 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5
2283 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; }
2284-if test "${gt_cv_func_CFLocaleCopyCurrent+set}" = set; then :
2285+if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then :
2286 $as_echo_n "(cached) " >&6
2287 else
2288 gt_save_LIBS="$LIBS"
2289@@ -9408,7 +9438,7 @@
2290
2291 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5
2292 $as_echo_n "checking for GNU gettext in libc... " >&6; }
2293-if { as_var=$gt_func_gnugettext_libc; eval "test \"\${$as_var+set}\" = set"; }; then :
2294+if eval \${$gt_func_gnugettext_libc+:} false; then :
2295 $as_echo_n "(cached) " >&6
2296 else
2297 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2298@@ -9471,7 +9501,7 @@
2299
2300 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
2301 $as_echo_n "checking for iconv... " >&6; }
2302-if test "${am_cv_func_iconv+set}" = set; then :
2303+if ${am_cv_func_iconv+:} false; then :
2304 $as_echo_n "(cached) " >&6
2305 else
2306
2307@@ -9528,7 +9558,7 @@
2308 if test "$am_cv_func_iconv" = yes; then
2309 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5
2310 $as_echo_n "checking for working iconv... " >&6; }
2311-if test "${am_cv_func_iconv_works+set}" = set; then :
2312+if ${am_cv_func_iconv_works+:} false; then :
2313 $as_echo_n "(cached) " >&6
2314 else
2315
2316@@ -10079,7 +10109,7 @@
2317
2318 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5
2319 $as_echo_n "checking for GNU gettext in libintl... " >&6; }
2320-if { as_var=$gt_func_gnugettext_libintl; eval "test \"\${$as_var+set}\" = set"; }; then :
2321+if eval \${$gt_func_gnugettext_libintl+:} false; then :
2322 $as_echo_n "(cached) " >&6
2323 else
2324 gt_save_CPPFLAGS="$CPPFLAGS"
2325@@ -10273,7 +10303,7 @@
2326 # -lseq on Dynix/PTX, -lgen on Unixware.
2327 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing getmntent" >&5
2328 $as_echo_n "checking for library containing getmntent... " >&6; }
2329-if test "${ac_cv_search_getmntent+set}" = set; then :
2330+if ${ac_cv_search_getmntent+:} false; then :
2331 $as_echo_n "(cached) " >&6
2332 else
2333 ac_func_search_save_LIBS=$LIBS
2334@@ -10307,11 +10337,11 @@
2335 fi
2336 rm -f core conftest.err conftest.$ac_objext \
2337 conftest$ac_exeext
2338- if test "${ac_cv_search_getmntent+set}" = set; then :
2339+ if ${ac_cv_search_getmntent+:} false; then :
2340 break
2341 fi
2342 done
2343-if test "${ac_cv_search_getmntent+set}" = set; then :
2344+if ${ac_cv_search_getmntent+:} false; then :
2345
2346 else
2347 ac_cv_search_getmntent=no
2348@@ -10344,7 +10374,7 @@
2349
2350 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
2351 $as_echo_n "checking for special C compiler options needed for large files... " >&6; }
2352-if test "${ac_cv_sys_largefile_CC+set}" = set; then :
2353+if ${ac_cv_sys_largefile_CC+:} false; then :
2354 $as_echo_n "(cached) " >&6
2355 else
2356 ac_cv_sys_largefile_CC=no
2357@@ -10395,7 +10425,7 @@
2358
2359 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
2360 $as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
2361-if test "${ac_cv_sys_file_offset_bits+set}" = set; then :
2362+if ${ac_cv_sys_file_offset_bits+:} false; then :
2363 $as_echo_n "(cached) " >&6
2364 else
2365 while :; do
2366@@ -10464,7 +10494,7 @@
2367 if test $ac_cv_sys_file_offset_bits = unknown; then
2368 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
2369 $as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; }
2370-if test "${ac_cv_sys_large_files+set}" = set; then :
2371+if ${ac_cv_sys_large_files+:} false; then :
2372 $as_echo_n "(cached) " >&6
2373 else
2374 while :; do
2375@@ -10536,7 +10566,7 @@
2376
2377 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mounted filesystem table in /proc" >&5
2378 $as_echo_n "checking for mounted filesystem table in /proc... " >&6; }
2379-if test "${mitr_cv_sys_proc_mounts+set}" = set; then :
2380+if ${mitr_cv_sys_proc_mounts+:} false; then :
2381 $as_echo_n "(cached) " >&6
2382 else
2383 mitr_cv_sys_proc_mounts=no
2384@@ -10566,7 +10596,7 @@
2385 if test "$GCC" = yes ; then
2386 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for available GCC warning flags" >&5
2387 $as_echo_n "checking for available GCC warning flags... " >&6; }
2388-if test "${mitr_cv_prog_gcc_warnings+set}" = set; then :
2389+if ${mitr_cv_prog_gcc_warnings+:} false; then :
2390 $as_echo_n "(cached) " >&6
2391 else
2392 mitr_cv_prog_gcc_warnings=""
2393@@ -10676,10 +10706,21 @@
2394 :end' >>confcache
2395 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
2396 if test -w "$cache_file"; then
2397- test "x$cache_file" != "x/dev/null" &&
2398+ if test "x$cache_file" != "x/dev/null"; then
2399 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
2400 $as_echo "$as_me: updating cache $cache_file" >&6;}
2401- cat confcache >$cache_file
2402+ if test ! -f "$cache_file" || test -h "$cache_file"; then
2403+ cat confcache >"$cache_file"
2404+ else
2405+ case $cache_file in #(
2406+ */* | ?:*)
2407+ mv -f confcache "$cache_file"$$ &&
2408+ mv -f "$cache_file"$$ "$cache_file" ;; #(
2409+ *)
2410+ mv -f confcache "$cache_file" ;;
2411+ esac
2412+ fi
2413+ fi
2414 else
2415 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
2416 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
2417@@ -10695,6 +10736,7 @@
2418
2419 ac_libobjs=
2420 ac_ltlibobjs=
2421+U=
2422 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
2423 # 1. Remove the extension, and $U if already installed.
2424 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
2425@@ -10718,15 +10760,15 @@
2426 fi
2427
2428 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
2429- as_fn_error "conditional \"AMDEP\" was never defined.
2430+ as_fn_error $? "conditional \"AMDEP\" was never defined.
2431 Usually this means the macro was only invoked conditionally." "$LINENO" 5
2432 fi
2433 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
2434- as_fn_error "conditional \"am__fastdepCC\" was never defined.
2435+ as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
2436 Usually this means the macro was only invoked conditionally." "$LINENO" 5
2437 fi
2438 if test -z "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then
2439- as_fn_error "conditional \"GL_COND_LIBTOOL\" was never defined.
2440+ as_fn_error $? "conditional \"GL_COND_LIBTOOL\" was never defined.
2441 Usually this means the macro was only invoked conditionally." "$LINENO" 5
2442 fi
2443 test "X$DEFS" = X-DHAVE_CONFIG_H && DEFS=
2444@@ -10747,7 +10789,7 @@
2445
2446
2447
2448-: ${CONFIG_STATUS=./config.status}
2449+: "${CONFIG_STATUS=./config.status}"
2450 ac_write_fail=0
2451 ac_clean_files_save=$ac_clean_files
2452 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
2453@@ -10848,6 +10890,7 @@
2454 IFS=" "" $as_nl"
2455
2456 # Find who we are. Look in the path if we contain no directory separator.
2457+as_myself=
2458 case $0 in #((
2459 *[\\/]* ) as_myself=$0 ;;
2460 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2461@@ -10893,19 +10936,19 @@
2462 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
2463
2464
2465-# as_fn_error ERROR [LINENO LOG_FD]
2466-# ---------------------------------
2467+# as_fn_error STATUS ERROR [LINENO LOG_FD]
2468+# ----------------------------------------
2469 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
2470 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
2471-# script with status $?, using 1 if that was 0.
2472+# script with STATUS, using 1 if that was 0.
2473 as_fn_error ()
2474 {
2475- as_status=$?; test $as_status -eq 0 && as_status=1
2476- if test "$3"; then
2477- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2478- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
2479+ as_status=$1; test $as_status -eq 0 && as_status=1
2480+ if test "$4"; then
2481+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2482+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
2483 fi
2484- $as_echo "$as_me: error: $1" >&2
2485+ $as_echo "$as_me: error: $2" >&2
2486 as_fn_exit $as_status
2487 } # as_fn_error
2488
2489@@ -11101,7 +11144,7 @@
2490 test -d "$as_dir" && break
2491 done
2492 test -z "$as_dirs" || eval "mkdir $as_dirs"
2493- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
2494+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
2495
2496
2497 } # as_fn_mkdir_p
2498@@ -11154,8 +11197,8 @@
2499 # report actual input values of CONFIG_FILES etc. instead of their
2500 # values after options handling.
2501 ac_log="
2502-This file was extended by mlocate $as_me 0.23.1, which was
2503-generated by GNU Autoconf 2.65. Invocation command line was
2504+This file was extended by mlocate $as_me 0.25, which was
2505+generated by GNU Autoconf 2.68. Invocation command line was
2506
2507 CONFIG_FILES = $CONFIG_FILES
2508 CONFIG_HEADERS = $CONFIG_HEADERS
2509@@ -11221,11 +11264,11 @@
2510 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2511 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2512 ac_cs_version="\\
2513-mlocate config.status 0.23.1
2514-configured by $0, generated by GNU Autoconf 2.65,
2515+mlocate config.status 0.25
2516+configured by $0, generated by GNU Autoconf 2.68,
2517 with options \\"\$ac_cs_config\\"
2518
2519-Copyright (C) 2009 Free Software Foundation, Inc.
2520+Copyright (C) 2010 Free Software Foundation, Inc.
2521 This config.status script is free software; the Free Software Foundation
2522 gives unlimited permission to copy, distribute and modify it."
2523
2524@@ -11243,11 +11286,16 @@
2525 while test $# != 0
2526 do
2527 case $1 in
2528- --*=*)
2529+ --*=?*)
2530 ac_option=`expr "X$1" : 'X\([^=]*\)='`
2531 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
2532 ac_shift=:
2533 ;;
2534+ --*=)
2535+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
2536+ ac_optarg=
2537+ ac_shift=:
2538+ ;;
2539 *)
2540 ac_option=$1
2541 ac_optarg=$2
2542@@ -11269,6 +11317,7 @@
2543 $ac_shift
2544 case $ac_optarg in
2545 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
2546+ '') as_fn_error $? "missing file argument" ;;
2547 esac
2548 as_fn_append CONFIG_FILES " '$ac_optarg'"
2549 ac_need_defaults=false;;
2550@@ -11281,7 +11330,7 @@
2551 ac_need_defaults=false;;
2552 --he | --h)
2553 # Conflict between --help and --header
2554- as_fn_error "ambiguous option: \`$1'
2555+ as_fn_error $? "ambiguous option: \`$1'
2556 Try \`$0 --help' for more information.";;
2557 --help | --hel | -h )
2558 $as_echo "$ac_cs_usage"; exit ;;
2559@@ -11290,7 +11339,7 @@
2560 ac_cs_silent=: ;;
2561
2562 # This is an error.
2563- -*) as_fn_error "unrecognized option: \`$1'
2564+ -*) as_fn_error $? "unrecognized option: \`$1'
2565 Try \`$0 --help' for more information." ;;
2566
2567 *) as_fn_append ac_config_targets " $1"
2568@@ -11360,7 +11409,7 @@
2569 "gnulib/lib/Makefile") CONFIG_FILES="$CONFIG_FILES gnulib/lib/Makefile" ;;
2570 "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
2571
2572- *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
2573+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
2574 esac
2575 done
2576
2577@@ -11383,9 +11432,10 @@
2578 # after its creation but before its name has been assigned to `$tmp'.
2579 $debug ||
2580 {
2581- tmp=
2582+ tmp= ac_tmp=
2583 trap 'exit_status=$?
2584- { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
2585+ : "${ac_tmp:=$tmp}"
2586+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
2587 ' 0
2588 trap 'as_fn_exit 1' 1 2 13 15
2589 }
2590@@ -11393,12 +11443,13 @@
2591
2592 {
2593 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
2594- test -n "$tmp" && test -d "$tmp"
2595+ test -d "$tmp"
2596 } ||
2597 {
2598 tmp=./conf$$-$RANDOM
2599 (umask 077 && mkdir "$tmp")
2600-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
2601+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
2602+ac_tmp=$tmp
2603
2604 # Set up the scripts for CONFIG_FILES section.
2605 # No need to generate them if there are no CONFIG_FILES.
2606@@ -11415,12 +11466,12 @@
2607 fi
2608 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
2609 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
2610- ac_cs_awk_cr='\r'
2611+ ac_cs_awk_cr='\\r'
2612 else
2613 ac_cs_awk_cr=$ac_cr
2614 fi
2615
2616-echo 'BEGIN {' >"$tmp/subs1.awk" &&
2617+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
2618 _ACEOF
2619
2620
2621@@ -11429,18 +11480,18 @@
2622 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
2623 echo "_ACEOF"
2624 } >conf$$subs.sh ||
2625- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
2626-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
2627+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
2628+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
2629 ac_delim='%!_!# '
2630 for ac_last_try in false false false false false :; do
2631 . ./conf$$subs.sh ||
2632- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
2633+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
2634
2635 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
2636 if test $ac_delim_n = $ac_delim_num; then
2637 break
2638 elif $ac_last_try; then
2639- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
2640+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
2641 else
2642 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
2643 fi
2644@@ -11448,7 +11499,7 @@
2645 rm -f conf$$subs.sh
2646
2647 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2648-cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
2649+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
2650 _ACEOF
2651 sed -n '
2652 h
2653@@ -11496,7 +11547,7 @@
2654 rm -f conf$$subs.awk
2655 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2656 _ACAWK
2657-cat >>"\$tmp/subs1.awk" <<_ACAWK &&
2658+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
2659 for (key in S) S_is_set[key] = 1
2660 FS = ""
2661
2662@@ -11528,21 +11579,29 @@
2663 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
2664 else
2665 cat
2666-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
2667- || as_fn_error "could not setup config files machinery" "$LINENO" 5
2668+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
2669+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
2670 _ACEOF
2671
2672-# VPATH may cause trouble with some makes, so we remove $(srcdir),
2673-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
2674+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
2675+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
2676 # trailing colons and then remove the whole line if VPATH becomes empty
2677 # (actually we leave an empty line to preserve line numbers).
2678 if test "x$srcdir" = x.; then
2679- ac_vpsub='/^[ ]*VPATH[ ]*=/{
2680-s/:*\$(srcdir):*/:/
2681-s/:*\${srcdir}:*/:/
2682-s/:*@srcdir@:*/:/
2683-s/^\([^=]*=[ ]*\):*/\1/
2684+ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
2685+h
2686+s///
2687+s/^/:/
2688+s/[ ]*$/:/
2689+s/:\$(srcdir):/:/g
2690+s/:\${srcdir}:/:/g
2691+s/:@srcdir@:/:/g
2692+s/^:*//
2693 s/:*$//
2694+x
2695+s/\(=[ ]*\).*/\1/
2696+G
2697+s/\n//
2698 s/^[^=]*=[ ]*$//
2699 }'
2700 fi
2701@@ -11554,7 +11613,7 @@
2702 # No need to generate them if there are no CONFIG_HEADERS.
2703 # This happens for instance with `./config.status Makefile'.
2704 if test -n "$CONFIG_HEADERS"; then
2705-cat >"$tmp/defines.awk" <<\_ACAWK ||
2706+cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
2707 BEGIN {
2708 _ACEOF
2709
2710@@ -11566,11 +11625,11 @@
2711 # handling of long lines.
2712 ac_delim='%!_!# '
2713 for ac_last_try in false false :; do
2714- ac_t=`sed -n "/$ac_delim/p" confdefs.h`
2715- if test -z "$ac_t"; then
2716+ ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
2717+ if test -z "$ac_tt"; then
2718 break
2719 elif $ac_last_try; then
2720- as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5
2721+ as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
2722 else
2723 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
2724 fi
2725@@ -11655,7 +11714,7 @@
2726 _ACAWK
2727 _ACEOF
2728 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2729- as_fn_error "could not setup config headers machinery" "$LINENO" 5
2730+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
2731 fi # test -n "$CONFIG_HEADERS"
2732
2733
2734@@ -11668,7 +11727,7 @@
2735 esac
2736 case $ac_mode$ac_tag in
2737 :[FHL]*:*);;
2738- :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
2739+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
2740 :[FH]-) ac_tag=-:-;;
2741 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
2742 esac
2743@@ -11687,7 +11746,7 @@
2744 for ac_f
2745 do
2746 case $ac_f in
2747- -) ac_f="$tmp/stdin";;
2748+ -) ac_f="$ac_tmp/stdin";;
2749 *) # Look for the file first in the build tree, then in the source tree
2750 # (if the path is not absolute). The absolute path cannot be DOS-style,
2751 # because $ac_f cannot contain `:'.
2752@@ -11696,7 +11755,7 @@
2753 [\\/$]*) false;;
2754 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
2755 esac ||
2756- as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
2757+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
2758 esac
2759 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
2760 as_fn_append ac_file_inputs " '$ac_f'"
2761@@ -11722,8 +11781,8 @@
2762 esac
2763
2764 case $ac_tag in
2765- *:-:* | *:-) cat >"$tmp/stdin" \
2766- || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
2767+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
2768+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
2769 esac
2770 ;;
2771 esac
2772@@ -11859,23 +11918,24 @@
2773 s&@MKDIR_P@&$ac_MKDIR_P&;t t
2774 $ac_datarootdir_hack
2775 "
2776-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
2777- || as_fn_error "could not create $ac_file" "$LINENO" 5
2778+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
2779+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
2780
2781 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
2782- { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
2783- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
2784+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
2785+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
2786+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
2787 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
2788-which seems to be undefined. Please make sure it is defined." >&5
2789+which seems to be undefined. Please make sure it is defined" >&5
2790 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
2791-which seems to be undefined. Please make sure it is defined." >&2;}
2792+which seems to be undefined. Please make sure it is defined" >&2;}
2793
2794- rm -f "$tmp/stdin"
2795+ rm -f "$ac_tmp/stdin"
2796 case $ac_file in
2797- -) cat "$tmp/out" && rm -f "$tmp/out";;
2798- *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
2799+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
2800+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
2801 esac \
2802- || as_fn_error "could not create $ac_file" "$LINENO" 5
2803+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
2804 ;;
2805 :H)
2806 #
2807@@ -11884,21 +11944,21 @@
2808 if test x"$ac_file" != x-; then
2809 {
2810 $as_echo "/* $configure_input */" \
2811- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
2812- } >"$tmp/config.h" \
2813- || as_fn_error "could not create $ac_file" "$LINENO" 5
2814- if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
2815+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
2816+ } >"$ac_tmp/config.h" \
2817+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
2818+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
2819 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
2820 $as_echo "$as_me: $ac_file is unchanged" >&6;}
2821 else
2822 rm -f "$ac_file"
2823- mv "$tmp/config.h" "$ac_file" \
2824- || as_fn_error "could not create $ac_file" "$LINENO" 5
2825+ mv "$ac_tmp/config.h" "$ac_file" \
2826+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
2827 fi
2828 else
2829 $as_echo "/* $configure_input */" \
2830- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
2831- || as_fn_error "could not create -" "$LINENO" 5
2832+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
2833+ || as_fn_error $? "could not create -" "$LINENO" 5
2834 fi
2835 # Compute "$ac_file"'s index in $config_headers.
2836 _am_arg="$ac_file"
2837@@ -11946,7 +12006,7 @@
2838 "./atconfig":C) cat >./atconfig <<ATEOF
2839 # Configurable variable values for building test suites.
2840 # Generated by $0.
2841-# Copyright (C) 2009 Free Software Foundation, Inc.
2842+# Copyright (C) 2010 Free Software Foundation, Inc.
2843
2844 # The test suite will define top_srcdir=$at_top_srcdir/../.. etc.
2845 at_testdir='.'
2846@@ -12184,7 +12244,7 @@
2847 ac_clean_files=$ac_clean_files_save
2848
2849 test $ac_write_fail = 0 ||
2850- as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
2851+ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
2852
2853
2854 # configure is writing to config.log, and then calls config.status.
2855@@ -12205,7 +12265,7 @@
2856 exec 5>>config.log
2857 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
2858 # would make configure fail if this is the last instruction.
2859- $ac_cs_success || as_fn_exit $?
2860+ $ac_cs_success || as_fn_exit 1
2861 fi
2862 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
2863 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
2864
2865=== modified file 'configure.ac'
2866--- configure.ac 2010-10-12 16:34:36 +0000
2867+++ configure.ac 2012-07-27 05:18:19 +0000
2868@@ -1,5 +1,5 @@
2869 # Process this file with autoconf to produce a configure script.
2870-AC_INIT([mlocate], [0.23.1], [mitr@redhat.com], ,
2871+AC_INIT([mlocate], [0.25], [mitr@redhat.com], ,
2872 [https://fedorahosted.org/mlocate/])
2873 AC_COPYRIGHT(
2874 [Copyright (C) 2005, 2006, 2007, 2009, 2010 Red Hat, Inc. All rights reserved.
2875
2876=== modified file 'debian/changelog'
2877--- debian/changelog 2011-08-17 14:07:51 +0000
2878+++ debian/changelog 2012-07-27 05:18:19 +0000
2879@@ -1,3 +1,9 @@
2880+mlocate (0.25-0ubuntu1) quantal; urgency=low
2881+
2882+ * New upstream release.
2883+
2884+ -- Logan Rosen <logatronico@gmail.com> Fri, 27 Jul 2012 01:15:56 -0400
2885+
2886 mlocate (0.23.1-1ubuntu2) oneiric; urgency=low
2887
2888 * Add /home/.ecryptfs to PRUNEPATHS (LP: #827841).
2889
2890=== modified file 'doc/locate.1.in'
2891--- doc/locate.1.in 2008-11-03 00:21:36 +0000
2892+++ doc/locate.1.in 2012-07-27 05:18:19 +0000
2893@@ -1,6 +1,6 @@
2894 .\" A man page for locate(1). -*- nroff -*-
2895 .\"
2896-.\" Copyright (C) 2007 Red Hat, Inc. All rights reserved.
2897+.\" Copyright (C) 2011 Red Hat, Inc. All rights reserved.
2898 .\"
2899 .\" This copyrighted material is made available to anyone wishing to use,
2900 .\" modify, copy, or redistribute it subject to the terms and conditions of the
2901@@ -16,7 +16,7 @@
2902 .\" 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2903 .\"
2904 .\" Author: Miloslav Trmac <mitr@redhat.com>
2905-.TH locate 1 "Jul 2005" mlocate
2906+.TH locate 1 "Aug 2011" mlocate
2907
2908 .SH NAME
2909 locate \- find files by name
2910@@ -44,7 +44,9 @@
2911
2912 By default,
2913 .B locate
2914-does not check whether files found in database still exist.
2915+does not check whether files found in database still exist
2916+(but it does require all parent directories to exist
2917+if the database was built with \fB\-\-require\-visibility no\fR).
2918 .B locate
2919 can never report files created after the most recent update of the relevant
2920 database.
2921@@ -189,7 +191,7 @@
2922
2923 .TP
2924 \fB\-V\fR, \fB\-\-version\fR
2925-Write information about the version and licence of
2926+Write information about the version and license of
2927 .B locate
2928 on standard output and exit successfully.
2929
2930
2931=== modified file 'doc/updatedb.8.in'
2932--- doc/updatedb.8.in 2009-11-03 22:43:19 +0000
2933+++ doc/updatedb.8.in 2012-07-27 05:18:19 +0000
2934@@ -152,7 +152,7 @@
2935
2936 .TP
2937 \fB\-V\fR, \fB\-\-version\fR
2938-Write information about the version and licence of
2939+Write information about the version and license of
2940 .B locate
2941 on standard output and exit successfully.
2942
2943
2944=== modified file 'po/LINGUAS'
2945--- po/LINGUAS 2010-10-12 16:34:36 +0000
2946+++ po/LINGUAS 2012-07-27 05:18:19 +0000
2947@@ -1,6 +1,7 @@
2948 # To regenerate: (cd po; ls | sed -n 's/\.po$//p'). Then remove languages with
2949 # no translations.
2950 ar
2951+as
2952 ast
2953 bg
2954 bs
2955@@ -11,13 +12,18 @@
2956 el
2957 en_GB
2958 es
2959+et
2960 fa
2961+fi
2962 fr
2963+gu
2964 hu
2965 it
2966 ja
2967 ko
2968+lv
2969 ms
2970+nds
2971 nl
2972 pl
2973 pt
2974@@ -26,6 +32,8 @@
2975 sr
2976 sr@latin
2977 sv
2978+ta
2979+tr
2980 uk
2981 zh_CN
2982 zh_TW
2983
2984=== modified file 'po/ar.gmo'
2985Binary files po/ar.gmo 2010-09-25 08:15:12 +0000 and po/ar.gmo 2012-07-27 05:18:19 +0000 differ
2986=== modified file 'po/ar.po'
2987--- po/ar.po 2010-09-25 08:15:12 +0000
2988+++ po/ar.po 2012-07-27 05:18:19 +0000
2989@@ -1,23 +1,24 @@
2990-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2991+# SOME DESCRIPTIVE TITLE.
2992+# Copyright (C) YEAR Red Hat, Inc
2993 # This file is distributed under the same license as the PACKAGE package.
2994 #
2995-# Amjad Saad <moltaheb@hotmail.com>, 2010.
2996-# Munzir Taha (منذر طه) <munzirtaha@gmail.com>, 2010.
2997+# Translators:
2998+# mitr <mitr@volny.cz>, 2011.
2999+# Munzir Taha <munzirtaha@gmail.com>, 2011.
3000 msgid ""
3001 msgstr ""
3002-"Project-Id-Version: \n"
3003+"Project-Id-Version: mlocate\n"
3004 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
3005-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
3006-"PO-Revision-Date: 2010-07-21 14:57+0300\n"
3007-"Last-Translator: Munzir Taha (منذر طه) <munzirtaha@gmail.com>\n"
3008-"Language-Team: Arabic <trans-ar@lists.fedoraproject.org.>\n"
3009+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
3010+"PO-Revision-Date: 2012-02-14 08:16+0000\n"
3011+"Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
3012+"Language-Team: Arabic <trans-ar@lists.fedoraproject.org>\n"
3013 "Language: ar\n"
3014 "MIME-Version: 1.0\n"
3015 "Content-Type: text/plain; charset=UTF-8\n"
3016 "Content-Transfer-Encoding: 8bit\n"
3017 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
3018-"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
3019-"X-Generator: Lokalize 1.1\n"
3020+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
3021
3022 #: src/conf.c:241
3023 msgid "warning: Line number overflow"
3024@@ -27,7 +28,7 @@
3025 msgid "missing closing `\"'"
3026 msgstr "علامة تنصيص الإغلاق مفقودة `\"'"
3027
3028-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
3029+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
3030 #, c-format
3031 msgid "can not open `%s'"
3032 msgstr "غير قادر على فتح `%s'"
3033@@ -63,7 +64,7 @@
3034 msgid "unexpected data after variable value"
3035 msgstr "بيانات غير متوقعة بعد قيمة المتغير"
3036
3037-#: src/conf.c:419 src/lib.c:244
3038+#: src/conf.c:419 src/lib.c:266
3039 #, c-format
3040 msgid "I/O error reading `%s'"
3041 msgstr "خطأ في قراءة وحدة الإدخال والإخراج `%s'"
3042@@ -162,27 +163,27 @@
3043 msgid "unexpected operand on command line"
3044 msgstr "عامل غير متوقع على سطر الأوامر"
3045
3046-#: src/lib.c:177
3047+#: src/lib.c:199
3048 #, c-format
3049 msgid "`%s' does not seem to be a mlocate database"
3050 msgstr "`%s' لا تبدوا أنها قاعدة بيانات من نوع mlocate"
3051
3052-#: src/lib.c:184
3053+#: src/lib.c:206
3054 #, c-format
3055 msgid "`%s' has unknown version %u"
3056 msgstr "`%s' لديها إصدار غير معروف %u"
3057
3058-#: src/lib.c:191
3059+#: src/lib.c:213
3060 #, c-format
3061 msgid "`%s' has unknown visibility flag %u"
3062 msgstr "`%s' إشارة الوضوح %u غير معروفة"
3063
3064-#: src/lib.c:246
3065+#: src/lib.c:268
3066 #, c-format
3067 msgid "unexpected EOF reading `%s'"
3068 msgstr "نهاية ملف غير متوقعة`%s'"
3069
3070-#: src/lib.c:341
3071+#: src/lib.c:363
3072 #, c-format
3073 msgid "I/O error seeking in `%s'"
3074 msgstr "بحث خاطئ في وحدة الإدخال والإخراج`%s'"
3075@@ -328,65 +329,70 @@
3076 msgid "can not read two databases from standard input"
3077 msgstr "لا يمكن قراءة قاعدتي بيانات من الإدخال القياسي"
3078
3079-#: src/locate.c:959 src/locate.c:974 src/updatedb.c:1096
3080+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
3081 #, c-format
3082 msgid "can not stat () `%s'"
3083 msgstr "لا يمكن stat () `%s'"
3084
3085-#: src/locate.c:1034 src/updatedb.c:1120
3086+#: src/locate.c:1034 src/updatedb.c:1004
3087 msgid "I/O error while writing to standard output"
3088 msgstr "خطأ في المدخلات والمخرجات بجميع الكتابة في المخرجات الأساسية"
3089
3090-#: src/updatedb.c:682 src/updatedb.c:780
3091+#: src/updatedb.c:556 src/updatedb.c:663
3092 #, c-format
3093 msgid "file name length %zu is too large"
3094 msgstr "طول الاسم %zu طويل جداً"
3095
3096-#: src/updatedb.c:1002
3097+#: src/updatedb.c:655
3098+#, c-format
3099+msgid "file system error: zero-length file name in directory %s"
3100+msgstr ""
3101+
3102+#: src/updatedb.c:886
3103 #, c-format
3104 msgid "can not open a temporary file for `%s'"
3105 msgstr "لا يمكن فتح الملف المؤقت لـ `%s'"
3106
3107-#: src/updatedb.c:1015
3108+#: src/updatedb.c:899
3109 msgid "configuration is too large"
3110 msgstr "التهيئة كبيرة جداً"
3111
3112-#: src/updatedb.c:1036
3113+#: src/updatedb.c:920
3114 #, c-format
3115 msgid "can not find group `%s'"
3116 msgstr "لا يستطيع إيجاد مجموعة`%s'"
3117
3118-#: src/updatedb.c:1039
3119+#: src/updatedb.c:923
3120 #, c-format
3121 msgid "can not change group of file `%s' to `%s'"
3122 msgstr "لا يستطيع تغيير ملف مجموعة `%s' to `%s'"
3123
3124-#: src/updatedb.c:1053
3125+#: src/updatedb.c:937
3126 #, c-format
3127 msgid "can not change permissions of file `%s'"
3128 msgstr "لا تستطيع تغيير الصلاحيات للملف `%s'"
3129
3130-#: src/updatedb.c:1083
3131+#: src/updatedb.c:968
3132 #, c-format
3133 msgid "`%s' is locked (probably by an earlier updatedb)"
3134 msgstr "`%s' مغلق (احتمال بيواسطة التحديث الحالي)"
3135
3136-#: src/updatedb.c:1086
3137+#: src/updatedb.c:970
3138 #, c-format
3139 msgid "can not lock `%s'"
3140 msgstr "لا تستطيع قفل`%s'"
3141
3142-#: src/updatedb.c:1093
3143+#: src/updatedb.c:977
3144 #, c-format
3145 msgid "can not change directory to `%s'"
3146 msgstr "لا تستطيع تغيير المجلد لـ `%s'"
3147
3148-#: src/updatedb.c:1102
3149+#: src/updatedb.c:986
3150 #, c-format
3151 msgid "I/O error while writing to `%s'"
3152 msgstr "حدث خطأ في وسيلة الإدخال والإخراج أثناء الكتابة في `%s'"
3153
3154-#: src/updatedb.c:1106
3155+#: src/updatedb.c:990
3156 #, c-format
3157 msgid "error replacing `%s'"
3158 msgstr "خطأ استبدال%s'"
3159
3160=== added file 'po/as.gmo'
3161Binary files po/as.gmo 1970-01-01 00:00:00 +0000 and po/as.gmo 2012-07-27 05:18:19 +0000 differ
3162=== added file 'po/as.po'
3163--- po/as.po 1970-01-01 00:00:00 +0000
3164+++ po/as.po 2012-07-27 05:18:19 +0000
3165@@ -0,0 +1,382 @@
3166+# SOME DESCRIPTIVE TITLE.
3167+# Copyright (C) YEAR Red Hat, Inc
3168+# This file is distributed under the same license as the PACKAGE package.
3169+#
3170+# Translators:
3171+# ngoswami <ngoswami@redhat.com>, 2011.
3172+# Nilamdyuti Goswami <ngoswami@redhat.com>, 2012.
3173+msgid ""
3174+msgstr ""
3175+"Project-Id-Version: mlocate\n"
3176+"Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
3177+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
3178+"PO-Revision-Date: 2012-02-15 12:54+0000\n"
3179+"Last-Translator: ngoswami <ngoswami@redhat.com>\n"
3180+"Language-Team: Assamese (http://www.transifex.net/projects/p/fedora/language/"
3181+"as/)\n"
3182+"Language: as\n"
3183+"MIME-Version: 1.0\n"
3184+"Content-Type: text/plain; charset=UTF-8\n"
3185+"Content-Transfer-Encoding: 8bit\n"
3186+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
3187+
3188+#: src/conf.c:241
3189+msgid "warning: Line number overflow"
3190+msgstr "সতৰ্কবাৰ্তা: শাৰী নম্বৰ উপচি পৰিছে"
3191+
3192+#: src/conf.c:259
3193+msgid "missing closing `\"'"
3194+msgstr "বন্ধ কৰা `\"' সন্ধানহীন"
3195+
3196+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
3197+#, c-format
3198+msgid "can not open `%s'"
3199+msgstr "`%s' খুলিব নোৱাৰি"
3200+
3201+#: src/conf.c:353
3202+#, c-format
3203+msgid "unknown variable `%s'"
3204+msgstr "অজ্ঞাত চলক `%s'"
3205+
3206+#: src/conf.c:358
3207+msgid "variable name expected"
3208+msgstr "চলক নাম আশা কৰা হৈছে"
3209+
3210+#: src/conf.c:364
3211+#, c-format
3212+msgid "variable `%s' was already defined"
3213+msgstr "চলক `%s' ইতিমধ্যে বৰ্ণিত"
3214+
3215+#: src/conf.c:373
3216+msgid "`=' expected after variable name"
3217+msgstr "চলক নামৰ পিচত `=' আশা কৰা হৈছে"
3218+
3219+#: src/conf.c:380
3220+msgid "value in quotes expected after `='"
3221+msgstr "`=' -ৰ পিছত কৌট্চত মান আশা কৰা হৈছে"
3222+
3223+#: src/conf.c:388
3224+#, c-format
3225+msgid "invalid value `%s' of PRUNE_BIND_MOUNTS"
3226+msgstr "PRUNE_BIND_MOUNTS -ৰ অবৈধ মান `%s'"
3227+
3228+#: src/conf.c:405
3229+msgid "unexpected data after variable value"
3230+msgstr "চলক মানৰ পিছত অপ্ৰত্যাশিত তথ্য"
3231+
3232+#: src/conf.c:419 src/lib.c:266
3233+#, c-format
3234+msgid "I/O error reading `%s'"
3235+msgstr "I/O পঢ়া ত্ৰুটি `%s'"
3236+
3237+#: src/conf.c:437
3238+#, c-format
3239+msgid ""
3240+"Usage: updatedb [OPTION]...\n"
3241+"Update a mlocate database.\n"
3242+"\n"
3243+" -f, --add-prunefs FS omit also FS\n"
3244+" -n, --add-prunenames NAMES omit also NAMES\n"
3245+" -e, --add-prunepaths PATHS omit also PATHS\n"
3246+" -U, --database-root PATH the subtree to store in database (default "
3247+"\"/\")\n"
3248+" -h, --help print this help\n"
3249+" -o, --output FILE database to update (default\n"
3250+" `%s')\n"
3251+" --prune-bind-mounts FLAG omit bind mounts (default \"no\")\n"
3252+" --prunefs FS filesystems to omit from database\n"
3253+" --prunenames NAMES directory names to omit from database\n"
3254+" --prunepaths PATHS paths to omit from database\n"
3255+" -l, --require-visibility FLAG check visibility before reporting files\n"
3256+" (default \"yes\")\n"
3257+" -v, --verbose print paths of files as they are found\n"
3258+" -V, --version print version information\n"
3259+"\n"
3260+"The configuration defaults to values read from\n"
3261+"`%s'.\n"
3262+msgstr ""
3263+"ব্যৱহাৰ: updatedb [বিকল্প]...\n"
3264+"এটা mlocate ডাটাবেইচ আপডেইট কৰক\n"
3265+"\n"
3266+" -f, --add-prunefs FS FS -কো বাদ দিয়ক\n"
3267+" -n, --add-prunenames NAMES NAMES -কো বাদ দিয়ক\n"
3268+" -e, --add-prunepaths PATHS PATHS -কো বাদ দিয়ক\n"
3269+" -U, --database-root PATH ডাটাবেইচত সঞ্চয় কৰিব লগিয়া সাবট্ৰি (default "
3270+"\"/\")\n"
3271+" -h, --help এই সহায় প্ৰিন্ট কৰক\n"
3272+" -o, --output FILE আপডেইট কৰিবলে ডাটাবেইচ (default\n"
3273+" `%s')\n"
3274+" --prune-bind-mounts FLAG বন্দা মাউন্টসমূহ বাদ দিয়ক (অবিকল্পিত \"no\")\n"
3275+" --prunefs FS ডাটাবেইচৰ পৰা বাদ দিব লগা নথিপত্ৰপ্ৰণালী\n"
3276+" --prunenames NAMES ডাটাবেইচৰ পৰা বাদ দিব লগা ডাইৰেকটৰি নামসমূহ\n"
3277+" --prunepaths PATHS ডাটাবেইচৰ পৰা বাদ দিব লগা পথসমূহ\n"
3278+" -l, --require-visibility FLAG নথিপত্ৰসমূহ সংবাদন কৰাৰ আগতে দৃশ্যমানতা নিৰিক্ষণ "
3279+"কৰক\n"
3280+" (অবিকল্পিত \"yes\")\n"
3281+" -v, --verbose নথিপত্ৰসমূহৰ পথ প্ৰিন্ট কৰে যেতিয়া পোৱা যায়\n"
3282+" -V, --version সংস্কৰণ তথ্য প্ৰিন্ট কৰিব\n"
3283+"\n"
3284+"মানসমূহ পঢ়িবলে সংৰূপ অবিকল্পিতসমূহ\n"
3285+"`%s'.\n"
3286+
3287+#: src/conf.c:464 src/locate.c:642
3288+#, c-format
3289+msgid ""
3290+"\n"
3291+"Report bugs to %s.\n"
3292+msgstr ""
3293+"\n"
3294+"বাগসমূহ %s লে সংবাদন কৰক.\n"
3295+
3296+#: src/conf.c:482
3297+msgid "can not get current working directory"
3298+msgstr "বৰ্তমান কাৰ্যৰত ডাইৰেকটৰি পোৱা নগল"
3299+
3300+#: src/conf.c:540 src/conf.c:551 src/conf.c:561 src/conf.c:571
3301+#: src/locate.c:697 src/locate.c:706 src/locate.c:732 src/locate.c:790
3302+#, c-format
3303+msgid "--%s would override earlier command-line argument"
3304+msgstr "--%s -এ পুৰ্বৰ কমান্ড-লাইন তৰ্ক পুনৰ লিখি দিব"
3305+
3306+#: src/conf.c:544 src/conf.c:584 src/conf.c:617 src/locate.c:769
3307+#, c-format
3308+msgid "invalid value `%s' of --%s"
3309+msgstr "--%s -ৰ অবৈধ মান `%s'"
3310+
3311+#: src/conf.c:580 src/conf.c:613 src/conf.c:628 src/locate.c:763
3312+#, c-format
3313+msgid "--%s specified twice"
3314+msgstr "--%s দুবাৰ ধাৰ্য্য কৰা হৈছে"
3315+
3316+#: src/conf.c:590 src/locate.c:722
3317+msgid ""
3318+"Copyright (C) 2007 Red Hat, Inc. All rights reserved.\n"
3319+"This software is distributed under the GPL v.2.\n"
3320+"\n"
3321+"This program is provided with NO WARRANTY, to the extent permitted by law."
3322+msgstr ""
3323+"স্বত্বাধিকাৰ (C) 2007 Red Hat, Inc. সকলো অধিকাৰ সংৰক্ষীত।\n"
3324+"এই চফ্টওৱেৰ GPL v.2 -ৰ অন্তৰ্গত বিলোৱা হৈছে।\n"
3325+"\n"
3326+"এই প্ৰগ্ৰামৰ লগত কোনো ওৱাৰেন্টি নাহে, আইন অনুমোদিত বিস্তাৰ লৈকে।"
3327+
3328+#: src/conf.c:646
3329+msgid "unexpected operand on command line"
3330+msgstr "কমান্ড লাইনত অপ্ৰত্যাশীত কাৰ্য্যকাৰক"
3331+
3332+#: src/lib.c:199
3333+#, c-format
3334+msgid "`%s' does not seem to be a mlocate database"
3335+msgstr "`%s' এটা mlocate ডাটাবেইচ যেন নালাগে"
3336+
3337+#: src/lib.c:206
3338+#, c-format
3339+msgid "`%s' has unknown version %u"
3340+msgstr "`%s' -ৰ এটা অজ্ঞাত সংস্কৰণ %u আছে"
3341+
3342+#: src/lib.c:213
3343+#, c-format
3344+msgid "`%s' has unknown visibility flag %u"
3345+msgstr "`%s' -ৰ এটা অজ্ঞাত দৃশ্যমান ফ্লেগ %u আছে"
3346+
3347+#: src/lib.c:268
3348+#, c-format
3349+msgid "unexpected EOF reading `%s'"
3350+msgstr "`%s' পঢ়ি থাকোতে এটা অপ্ৰত্যাশীত EOFষ "
3351+
3352+#: src/lib.c:363
3353+#, c-format
3354+msgid "I/O error seeking in `%s'"
3355+msgstr "`%s' বিচাৰোতে এটা I/O ত্ৰুটি"
3356+
3357+#: src/locate.c:335
3358+#, c-format
3359+msgid "Database %s:\n"
3360+msgstr "ডাটাবেইচ %s:\n"
3361+
3362+#: src/locate.c:338
3363+#, c-format
3364+msgid "\t%'ju directory\n"
3365+msgid_plural "\t%'ju directories\n"
3366+msgstr[0] "\t%'ju ডাইৰেকটৰি\n"
3367+msgstr[1] "\t%'ju ডাইৰেকটৰিসমূহ\n"
3368+
3369+#: src/locate.c:340
3370+#, c-format
3371+msgid "\t%'ju file\n"
3372+msgid_plural "\t%'ju files\n"
3373+msgstr[0] "\t%'ju নথিপত্ৰ\n"
3374+msgstr[1] "\t%'ju নথিপত্ৰসমূহ\n"
3375+
3376+#: src/locate.c:342
3377+#, c-format
3378+msgid "\t%'ju byte in file names\n"
3379+msgid_plural "\t%'ju bytes in file names\n"
3380+msgstr[0] "\t নথিপত্ৰৰ নামসমূহত %'ju বাইট\n"
3381+msgstr[1] "\tনথিপত্ৰৰ নামসমূহত %'ju বাইটসমূহ\n"
3382+
3383+#: src/locate.c:344
3384+#, c-format
3385+msgid "\t%'ju byte used to store database\n"
3386+msgid_plural "\t%'ju bytes used to store database\n"
3387+msgstr[0] "\tডাটাবেইচ সঞ্চয় কৰিবলে ব্যৱহৃত %'ju বাইট\n"
3388+msgstr[1] "\tডাটাবেইচ সঞ্চয় কৰিবলে ব্যৱহৃত %'ju বাইটসমূহ\n"
3389+
3390+#: src/locate.c:473
3391+#, c-format
3392+msgid "invalid empty directory name in `%s'"
3393+msgstr "`%s' -ত অবৈধ ৰিক্ত ডাইৰেকটৰি নাম"
3394+
3395+#: src/locate.c:500
3396+#, c-format
3397+msgid "file name length %zu in `%s' is too large"
3398+msgstr "নথিপত্ৰ নামৰ দৈৰ্ঘ %zu `%s' -ৰ বাবে অতি ডাঙৰ"
3399+
3400+#: src/locate.c:607
3401+#, c-format
3402+msgid ""
3403+"Usage: locate [OPTION]... [PATTERN]...\n"
3404+"Search for entries in a mlocate database.\n"
3405+"\n"
3406+" -b, --basename match only the base name of path names\n"
3407+" -c, --count only print number of found entries\n"
3408+" -d, --database DBPATH use DBPATH instead of default database (which is\n"
3409+" %s)\n"
3410+" -e, --existing only print entries for currently existing files\n"
3411+" -L, --follow follow trailing symbolic links when checking file\n"
3412+" existence (default)\n"
3413+" -h, --help print this help\n"
3414+" -i, --ignore-case ignore case distinctions when matching patterns\n"
3415+" -l, --limit, -n LIMIT limit output (or counting) to LIMIT entries\n"
3416+" -m, --mmap ignored, for backward compatibility\n"
3417+" -P, --nofollow, -H don't follow trailing symbolic links when checking "
3418+"file\n"
3419+" existence\n"
3420+" -0, --null separate entries with NUL on output\n"
3421+" -S, --statistics don't search for entries, print statistics about "
3422+"each\n"
3423+" used database\n"
3424+" -q, --quiet report no error messages about reading databases\n"
3425+" -r, --regexp REGEXP search for basic regexp REGEXP instead of patterns\n"
3426+" --regex patterns are extended regexps\n"
3427+" -s, --stdio ignored, for backward compatibility\n"
3428+" -V, --version print version information\n"
3429+" -w, --wholename match whole path name (default)\n"
3430+msgstr ""
3431+"ব্যৱহাৰ: locate [বিকল্প]... [বিন্যাস]...\n"
3432+"এটা mlocate ডাটাবেইচত প্ৰবিষ্টিসমূহ বিচাৰক।\n"
3433+"\n"
3434+" -b, --basename পথসমূহৰ নামৰ ভিত্তি নাম মিলাই চাব\n"
3435+" -c, --count কেৱল বিচাৰি পোৱা প্ৰবিষ্টিৰ সংখ্যা প্ৰিন্ট কৰিব\n"
3436+" -d, --database DBPATH অবিকল্পিত ডাটাবেইচৰ সলনি DBPATH ব্যৱহাৰ কৰক (যোনটো\n"
3437+" %s)\n"
3438+" -e, --existing কেৱল বৰ্তমানে স্থায়ী নথিপত্ৰৰ বাবে অহা প্ৰবিষ্টকে প্ৰিন্ট "
3439+"কৰিব\n"
3440+" -L, --follow নথিপত্ৰৰ অস্তিত্ব বিচাৰোতে সাংকেতিক লিংকসমূহ অনুসৰন কৰক\n"
3441+" (অবিকল্পিত)\n"
3442+" -h, --help এই সহায় প্ৰিন্ট কৰক\n"
3443+" -i, --ignore-case বিন্যাস মিলাওতে কেইস ভিন্নতা উপেক্সা কৰক\n"
3444+" -l, --limit, -n LIMIT আউটপুট সীমিত কৰক (অথবা গণীত) সীমিত প্ৰবিষ্টিসমূহলে\n"
3445+" -m, --mmap পিছহোৱা সংগতিৰ কাৰণে উপেক্ষীত\n"
3446+" -P, --nofollow, -H নথিপত্ৰৰ অস্তিত্ব বিচাৰোতে সাংকেতিক লিংকসমূহ অনুসৰন "
3447+"নকৰিব\n"
3448+" (অবিকল্পিত)\n"
3449+" -0, --null NUL থকা প্ৰবিষ্টিসমূহ আউটপুটত বেলেগ কৰে\n"
3450+" -S, --statistics প্ৰবিষ্টিসমূহ নিবিচাৰিব, প্ৰতিটো ব্যৱহৃত ডাটাবেইচৰ কাৰণে\n"
3451+" পৰিসংখ্যা প্ৰিন্ট কৰক\n"
3452+" -q, --quiet ডাটাবেইচসমূহ পঢ়োতে কোনো ত্ৰুটি বাৰ্তা পোৱা নগল\n"
3453+" -r, --regexp REGEXP বিন্যাসসমূহৰ পৰিৱৰ্তে সাধাৰন regexp REGEXP বিচাৰক\n"
3454+" --regex বিন্যাসসমূহ প্ৰসাৰীত regexps\n"
3455+" -s, --stdio পিছহোৱা সংগতিৰ কাৰণে উপেক্ষীত\n"
3456+" -V, --version সংস্কৰণ তথ্য প্ৰিন্ট কৰক\n"
3457+" -w, --wholename সমপূৰ্ণ পথৰ নাম মিলাই চাওক (অবিকল্পিত)\n"
3458+
3459+#: src/locate.c:806
3460+#, c-format
3461+msgid "non-option arguments are not allowed with --%s"
3462+msgstr "--%s -ৰ সৈতে বিকল্প নোহোৱা তৰ্কসমূহৰ অনুমতি আছে"
3463+
3464+#: src/locate.c:819
3465+msgid "no pattern to search for specified"
3466+msgstr "ধাৰ্য্য কৰাৰ কাৰণে বিচাৰিবলে কোনো বিন্যাস নাই"
3467+
3468+#: src/locate.c:846
3469+#, c-format
3470+msgid "invalid regexp `%s': %s"
3471+msgstr "অবৈধ regexp `%s': %s"
3472+
3473+#: src/locate.c:932
3474+msgid "can not drop privileges"
3475+msgstr "সুবিধাসমূহ এৰিব নোৱাৰি"
3476+
3477+#: src/locate.c:947
3478+msgid "can not read two databases from standard input"
3479+msgstr "প্ৰামানিক ইনপুটৰ পৰা দুটা ডাটাবেইচ পঢ়িব নোৱাৰি"
3480+
3481+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
3482+#, c-format
3483+msgid "can not stat () `%s'"
3484+msgstr "stat () `%s' কৰিব নোৱাৰি"
3485+
3486+#: src/locate.c:1034 src/updatedb.c:1004
3487+msgid "I/O error while writing to standard output"
3488+msgstr "প্ৰামানিক ইনপুটলে লিখতে I/O ত্ৰুটি"
3489+
3490+#: src/updatedb.c:556 src/updatedb.c:663
3491+#, c-format
3492+msgid "file name length %zu is too large"
3493+msgstr "নথিপত্ৰ নাম দৈৰ্ঘ %zu অতি ডাঙৰ"
3494+
3495+#: src/updatedb.c:655
3496+#, c-format
3497+msgid "file system error: zero-length file name in directory %s"
3498+msgstr "নথিপত্ৰ প্ৰনালী ত্ৰুটি: ডাইৰেকটৰি %s ত শূন্য-দৈৰ্ঘ্য নথিপত্ৰ নাম"
3499+
3500+#: src/updatedb.c:886
3501+#, c-format
3502+msgid "can not open a temporary file for `%s'"
3503+msgstr "`%s' -ৰ বাবে এটা অস্থায়ী নথিপত্ৰ খুলিব নোৱাৰি"
3504+
3505+#: src/updatedb.c:899
3506+msgid "configuration is too large"
3507+msgstr "সংৰূপ অতি ডাঙৰ"
3508+
3509+#: src/updatedb.c:920
3510+#, c-format
3511+msgid "can not find group `%s'"
3512+msgstr "দল `%s' বিচাৰি পোৱা নাযায়"
3513+
3514+#: src/updatedb.c:923
3515+#, c-format
3516+msgid "can not change group of file `%s' to `%s'"
3517+msgstr "নথিপত্ৰ `%s' -ৰ দল `%s' লে সলাব নোৱাৰি"
3518+
3519+#: src/updatedb.c:937
3520+#, c-format
3521+msgid "can not change permissions of file `%s'"
3522+msgstr "নথিপত্ৰ `%s' -ৰ অনুমতিসমূহ সলাব নোৱাৰি"
3523+
3524+#: src/updatedb.c:968
3525+#, c-format
3526+msgid "`%s' is locked (probably by an earlier updatedb)"
3527+msgstr "`%s' লক্ড (সম্ভবত এটা পুৰ্বৰ updatedb দ্বাৰা)"
3528+
3529+#: src/updatedb.c:970
3530+#, c-format
3531+msgid "can not lock `%s'"
3532+msgstr "`%s' লক কৰিব নোৱাৰি"
3533+
3534+#: src/updatedb.c:977
3535+#, c-format
3536+msgid "can not change directory to `%s'"
3537+msgstr "ডাইৰেকটৰিক `%s' লে সলাব নোৱাৰি"
3538+
3539+#: src/updatedb.c:986
3540+#, c-format
3541+msgid "I/O error while writing to `%s'"
3542+msgstr "`%s' -লে লিখোতে এটা I/O ত্ৰুটি"
3543+
3544+#: src/updatedb.c:990
3545+#, c-format
3546+msgid "error replacing `%s'"
3547+msgstr "`%s' সলাওতে ত্ৰুটি"
3548
3549=== modified file 'po/ast.gmo'
3550Binary files po/ast.gmo 2010-09-25 08:15:12 +0000 and po/ast.gmo 2012-07-27 05:18:19 +0000 differ
3551=== modified file 'po/ast.po'
3552--- po/ast.po 2010-09-25 08:15:12 +0000
3553+++ po/ast.po 2012-07-27 05:18:19 +0000
3554@@ -1,25 +1,23 @@
3555-# Asturian translation of mlocate.
3556-# This file is distributed under the same license as the mlocate package.
3557-# Astur <malditoastur@gmail.com>, 2009.
3558-#
3559-#
3560+# SOME DESCRIPTIVE TITLE.
3561+# Copyright (C) YEAR Red Hat, Inc
3562+# This file is distributed under the same license as the PACKAGE package.
3563+#
3564+# Translators:
3565+# mitr <mitr@volny.cz>, 2011.
3566 msgid ""
3567 msgstr ""
3568 "Project-Id-Version: mlocate\n"
3569 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
3570-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
3571-"PO-Revision-Date: 2009-10-25 11:40+0100\n"
3572-"Last-Translator: Marcos Alvarez Costales <marcos.alvarez.costales@gmail."
3573-"com>\n"
3574-"Language-Team: Asturian <alministradores@softastur.org>\n"
3575+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
3576+"PO-Revision-Date: 2012-02-14 08:16+0000\n"
3577+"Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
3578+"Language-Team: Asturian (http://www.transifex.net/projects/p/fedora/language/"
3579+"ast/)\n"
3580 "Language: ast\n"
3581 "MIME-Version: 1.0\n"
3582 "Content-Type: text/plain; charset=UTF-8\n"
3583 "Content-Transfer-Encoding: 8bit\n"
3584-"X-Poedit-Language: Asturian\n"
3585-"X-Poedit-Country: spain\n"
3586-"X-Poedit-SourceCharset: utf-8\n"
3587-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
3588+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
3589
3590 #: src/conf.c:241
3591 msgid "warning: Line number overflow"
3592@@ -29,7 +27,7 @@
3593 msgid "missing closing `\"'"
3594 msgstr "falta zarrar `\"'"
3595
3596-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
3597+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
3598 #, c-format
3599 msgid "can not open `%s'"
3600 msgstr "nun pudo abrise `%s'"
3601@@ -65,7 +63,7 @@
3602 msgid "unexpected data after variable value"
3603 msgstr "datos nun esperaos dempués del valor de la variable"
3604
3605-#: src/conf.c:419 src/lib.c:244
3606+#: src/conf.c:419 src/lib.c:266
3607 #, c-format
3608 msgid "I/O error reading `%s'"
3609 msgstr "Fallu E/S al lleer `%s'"
3610@@ -167,27 +165,27 @@
3611 msgid "unexpected operand on command line"
3612 msgstr "operador inesperáu en llinia de comandos"
3613
3614-#: src/lib.c:177
3615+#: src/lib.c:199
3616 #, c-format
3617 msgid "`%s' does not seem to be a mlocate database"
3618 msgstr "`%s' nun parez ser una base de datos de mlocate"
3619
3620-#: src/lib.c:184
3621+#: src/lib.c:206
3622 #, c-format
3623 msgid "`%s' has unknown version %u"
3624 msgstr "`%s' tien una version desconocida de %u"
3625
3626-#: src/lib.c:191
3627+#: src/lib.c:213
3628 #, c-format
3629 msgid "`%s' has unknown visibility flag %u"
3630 msgstr "`%s' tien un señalador de visibilidá desconocíu %u"
3631
3632-#: src/lib.c:246
3633+#: src/lib.c:268
3634 #, c-format
3635 msgid "unexpected EOF reading `%s'"
3636 msgstr "final de ficheru inesperáu al lleer `%s'"
3637
3638-#: src/lib.c:341
3639+#: src/lib.c:363
3640 #, c-format
3641 msgid "I/O error seeking in `%s'"
3642 msgstr "fallu d'E/S al guetar en `%s'"
3643@@ -321,65 +319,70 @@
3644 msgid "can not read two databases from standard input"
3645 msgstr "nun pudieron lleese dos bases de datos cola entrada patrón"
3646
3647-#: src/locate.c:959 src/locate.c:974 src/updatedb.c:1096
3648+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
3649 #, c-format
3650 msgid "can not stat () `%s'"
3651 msgstr "nun pudo facese stat () `%s'"
3652
3653-#: src/locate.c:1034 src/updatedb.c:1120
3654+#: src/locate.c:1034 src/updatedb.c:1004
3655 msgid "I/O error while writing to standard output"
3656 msgstr "fallu d'E/S al intentar escribir sobro la entrada patrón "
3657
3658-#: src/updatedb.c:682 src/updatedb.c:780
3659+#: src/updatedb.c:556 src/updatedb.c:663
3660 #, c-format
3661 msgid "file name length %zu is too large"
3662 msgstr "el nome del ficheru %zu ye enforma llargu"
3663
3664-#: src/updatedb.c:1002
3665+#: src/updatedb.c:655
3666+#, c-format
3667+msgid "file system error: zero-length file name in directory %s"
3668+msgstr ""
3669+
3670+#: src/updatedb.c:886
3671 #, c-format
3672 msgid "can not open a temporary file for `%s'"
3673 msgstr "nun pudo abrise un ficheru temporal pa `%s'"
3674
3675-#: src/updatedb.c:1015
3676+#: src/updatedb.c:899
3677 msgid "configuration is too large"
3678 msgstr "la configuración ye mui estensa"
3679
3680-#: src/updatedb.c:1036
3681+#: src/updatedb.c:920
3682 #, c-format
3683 msgid "can not find group `%s'"
3684 msgstr "nun pudo alcontrase'l grupu `%s'"
3685
3686-#: src/updatedb.c:1039
3687+#: src/updatedb.c:923
3688 #, c-format
3689 msgid "can not change group of file `%s' to `%s'"
3690 msgstr "nun pudo camudase'l grupu del ficheru `%s' pa `%s'"
3691
3692-#: src/updatedb.c:1053
3693+#: src/updatedb.c:937
3694 #, c-format
3695 msgid "can not change permissions of file `%s'"
3696 msgstr "nun pudo camudase los permisos del ficheru `%s'"
3697
3698-#: src/updatedb.c:1083
3699+#: src/updatedb.c:968
3700 #, c-format
3701 msgid "`%s' is locked (probably by an earlier updatedb)"
3702 msgstr "`%s' ta bloquiáu (dablemente a causa d'un updatedb anterior)"
3703
3704-#: src/updatedb.c:1086
3705+#: src/updatedb.c:970
3706 #, c-format
3707 msgid "can not lock `%s'"
3708 msgstr "nun pudo bloquiase `%s'"
3709
3710-#: src/updatedb.c:1093
3711+#: src/updatedb.c:977
3712 #, c-format
3713 msgid "can not change directory to `%s'"
3714 msgstr "nun pudo camudase'l direutoriu a `%s'"
3715
3716-#: src/updatedb.c:1102
3717+#: src/updatedb.c:986
3718 #, c-format
3719 msgid "I/O error while writing to `%s'"
3720 msgstr "fallu d'E/S al escribir sobro `%s'"
3721
3722-#: src/updatedb.c:1106
3723+#: src/updatedb.c:990
3724 #, c-format
3725 msgid "error replacing `%s'"
3726 msgstr "fallu al camudar `%s'"
3727
3728=== modified file 'po/bg.gmo'
3729Binary files po/bg.gmo 2010-10-12 16:34:36 +0000 and po/bg.gmo 2012-07-27 05:18:19 +0000 differ
3730=== modified file 'po/bg.po'
3731--- po/bg.po 2010-10-12 16:34:36 +0000
3732+++ po/bg.po 2012-07-27 05:18:19 +0000
3733@@ -1,23 +1,23 @@
3734-# Bulgarian translation of mlocate.
3735-# Copyright (C) 2008 THE mlocate'S COPYRIGHT HOLDER
3736-# This file is distributed under the same license as the mlocate package.
3737-# Alexander Todorov <atodorov@redhat.com>, 2008.
3738-# , fuzzy
3739-#
3740-#
3741+# SOME DESCRIPTIVE TITLE.
3742+# Copyright (C) YEAR Red Hat, Inc
3743+# This file is distributed under the same license as the PACKAGE package.
3744+#
3745+# Translators:
3746+# mitr <mitr@volny.cz>, 2011.
3747+# Valentin Laskov <laskov@festa.bg>, 2011.
3748 msgid ""
3749 msgstr ""
3750-"Project-Id-Version: mlocate VERSION\n"
3751+"Project-Id-Version: mlocate\n"
3752 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
3753-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
3754-"PO-Revision-Date: 2008-03-20 17:32+0100\n"
3755-"Last-Translator: Alexander Todorov <atodorov@redhat.com>\n"
3756-"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
3757+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
3758+"PO-Revision-Date: 2012-02-14 08:16+0000\n"
3759+"Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
3760+"Language-Team: Bulgarian <trans-bg@lists.fedoraproject.org>\n"
3761 "Language: bg\n"
3762 "MIME-Version: 1.0\n"
3763 "Content-Type: text/plain; charset=UTF-8\n"
3764 "Content-Transfer-Encoding: 8bit\n"
3765-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
3766+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
3767
3768 #: src/conf.c:241
3769 msgid "warning: Line number overflow"
3770@@ -27,7 +27,7 @@
3771 msgid "missing closing `\"'"
3772 msgstr "липсва затваряща `\"'"
3773
3774-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
3775+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
3776 #, c-format
3777 msgid "can not open `%s'"
3778 msgstr "не може да бъде отворен `%s'"
3779@@ -63,7 +63,7 @@
3780 msgid "unexpected data after variable value"
3781 msgstr "неочаквани данни след стойността на променлива"
3782
3783-#: src/conf.c:419 src/lib.c:244
3784+#: src/conf.c:419 src/lib.c:266
3785 #, c-format
3786 msgid "I/O error reading `%s'"
3787 msgstr "Вх/Изх грешка при четене на `%s'"
3788@@ -94,6 +94,28 @@
3789 "The configuration defaults to values read from\n"
3790 "`%s'.\n"
3791 msgstr ""
3792+"Usage: updatedb [OPTION]...\n"
3793+"Update a mlocate database.\n"
3794+"\n"
3795+" -f, --add-prunefs FS omit also FS\n"
3796+" -n, --add-prunenames NAMES omit also NAMES\n"
3797+" -e, --add-prunepaths PATHS omit also PATHS\n"
3798+" -U, --database-root PATH the subtree to store in database (default "
3799+"\"/\")\n"
3800+" -h, --help print this help\n"
3801+" -o, --output FILE database to update (default\n"
3802+" `%s')\n"
3803+" --prune-bind-mounts FLAG omit bind mounts (default \"no\")\n"
3804+" --prunefs FS filesystems to omit from database\n"
3805+" --prunenames NAMES directory names to omit from database\n"
3806+" --prunepaths PATHS paths to omit from database\n"
3807+" -l, --require-visibility FLAG check visibility before reporting files\n"
3808+" (default \"yes\")\n"
3809+" -v, --verbose print paths of files as they are found\n"
3810+" -V, --version print version information\n"
3811+"\n"
3812+"The configuration defaults to values read from\n"
3813+"`%s'.\n"
3814
3815 #: src/conf.c:464 src/locate.c:642
3816 #, c-format
3817@@ -140,27 +162,27 @@
3818 msgid "unexpected operand on command line"
3819 msgstr "неочакван операнд на командния ред"
3820
3821-#: src/lib.c:177
3822+#: src/lib.c:199
3823 #, c-format
3824 msgid "`%s' does not seem to be a mlocate database"
3825 msgstr "`%s' не изглежда да е база данни на mlocate"
3826
3827-#: src/lib.c:184
3828+#: src/lib.c:206
3829 #, c-format
3830 msgid "`%s' has unknown version %u"
3831 msgstr "`%s'·е с неизвестна версия·%u"
3832
3833-#: src/lib.c:191
3834+#: src/lib.c:213
3835 #, c-format
3836 msgid "`%s' has unknown visibility flag %u"
3837 msgstr "`%s'·е с неизвестен флаг·%u"
3838
3839-#: src/lib.c:246
3840+#: src/lib.c:268
3841 #, c-format
3842 msgid "unexpected EOF reading `%s'"
3843 msgstr "неочакван край на файл при четене на `%s'"
3844
3845-#: src/lib.c:341
3846+#: src/lib.c:363
3847 #, c-format
3848 msgid "I/O error seeking in `%s'"
3849 msgstr "Вх/Изх грешка при търсене в `%s'"
3850@@ -239,6 +261,33 @@
3851 " -V, --version print version information\n"
3852 " -w, --wholename match whole path name (default)\n"
3853 msgstr ""
3854+"Usage: locate [OPTION]... [PATTERN]...\n"
3855+"Search for entries in a mlocate database.\n"
3856+"\n"
3857+" -b, --basename match only the base name of path names\n"
3858+" -c, --count only print number of found entries\n"
3859+" -d, --database DBPATH use DBPATH instead of default database (which is\n"
3860+" %s)\n"
3861+" -e, --existing only print entries for currently existing files\n"
3862+" -L, --follow follow trailing symbolic links when checking file\n"
3863+" existence (default)\n"
3864+" -h, --help print this help\n"
3865+" -i, --ignore-case ignore case distinctions when matching patterns\n"
3866+" -l, --limit, -n LIMIT limit output (or counting) to LIMIT entries\n"
3867+" -m, --mmap ignored, for backward compatibility\n"
3868+" -P, --nofollow, -H don't follow trailing symbolic links when checking "
3869+"file\n"
3870+" existence\n"
3871+" -0, --null separate entries with NUL on output\n"
3872+" -S, --statistics don't search for entries, print statistics about "
3873+"each\n"
3874+" used database\n"
3875+" -q, --quiet report no error messages about reading databases\n"
3876+" -r, --regexp REGEXP search for basic regexp REGEXP instead of patterns\n"
3877+" --regex patterns are extended regexps\n"
3878+" -s, --stdio ignored, for backward compatibility\n"
3879+" -V, --version print version information\n"
3880+" -w, --wholename match whole path name (default)\n"
3881
3882 #: src/locate.c:806
3883 #, c-format
3884@@ -262,65 +311,70 @@
3885 msgid "can not read two databases from standard input"
3886 msgstr "не е възможно да бъдат прочетени две бази данни от стандартния вход"
3887
3888-#: src/locate.c:959 src/locate.c:974 src/updatedb.c:1096
3889+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
3890 #, c-format
3891 msgid "can not stat () `%s'"
3892 msgstr "не може да се изпълни stat () за `%s'"
3893
3894-#: src/locate.c:1034 src/updatedb.c:1120
3895+#: src/locate.c:1034 src/updatedb.c:1004
3896 msgid "I/O error while writing to standard output"
3897 msgstr "Вх/Изх грешка при запис на стандартния изход"
3898
3899-#: src/updatedb.c:682 src/updatedb.c:780
3900+#: src/updatedb.c:556 src/updatedb.c:663
3901 #, c-format
3902 msgid "file name length %zu is too large"
3903 msgstr "дължина %zu·на името на файл е прекалено голяма"
3904
3905-#: src/updatedb.c:1002
3906+#: src/updatedb.c:655
3907+#, c-format
3908+msgid "file system error: zero-length file name in directory %s"
3909+msgstr ""
3910+
3911+#: src/updatedb.c:886
3912 #, c-format
3913 msgid "can not open a temporary file for `%s'"
3914 msgstr "не може да бъде отворен временен файл за `%s'"
3915
3916-#: src/updatedb.c:1015
3917+#: src/updatedb.c:899
3918 msgid "configuration is too large"
3919 msgstr "конфигурацията е прекалено голяма"
3920
3921-#: src/updatedb.c:1036
3922+#: src/updatedb.c:920
3923 #, c-format
3924 msgid "can not find group `%s'"
3925 msgstr "не може да бъде намерена група `%s'"
3926
3927-#: src/updatedb.c:1039
3928+#: src/updatedb.c:923
3929 #, c-format
3930 msgid "can not change group of file `%s' to `%s'"
3931 msgstr "не може да бъде променена групата на файл `%s'·на·`%s'"
3932
3933-#: src/updatedb.c:1053
3934+#: src/updatedb.c:937
3935 #, c-format
3936 msgid "can not change permissions of file `%s'"
3937 msgstr "не могат да бъдат променени позволенията на файл `%s'"
3938
3939-#: src/updatedb.c:1083
3940+#: src/updatedb.c:968
3941 #, c-format
3942 msgid "`%s' is locked (probably by an earlier updatedb)"
3943-msgstr ""
3944+msgstr "`%s' е заключен (вероятно от друг updatedb процес)"
3945
3946-#: src/updatedb.c:1086
3947-#, fuzzy, c-format
3948+#: src/updatedb.c:970
3949+#, c-format
3950 msgid "can not lock `%s'"
3951-msgstr "не може да бъде отворен `%s'"
3952+msgstr "не мога да заключа `%s'"
3953
3954-#: src/updatedb.c:1093
3955+#: src/updatedb.c:977
3956 #, c-format
3957 msgid "can not change directory to `%s'"
3958 msgstr "не може да бъде променена директорията на `%s'"
3959
3960-#: src/updatedb.c:1102
3961+#: src/updatedb.c:986
3962 #, c-format
3963 msgid "I/O error while writing to `%s'"
3964 msgstr "Вх/Изх грешка при запис до `%s'"
3965
3966-#: src/updatedb.c:1106
3967+#: src/updatedb.c:990
3968 #, c-format
3969 msgid "error replacing `%s'"
3970 msgstr "грешка при заместване на `%s'"
3971
3972=== modified file 'po/bs.gmo'
3973Binary files po/bs.gmo 2010-09-25 08:15:12 +0000 and po/bs.gmo 2012-07-27 05:18:19 +0000 differ
3974=== modified file 'po/bs.po'
3975--- po/bs.po 2010-09-25 08:15:12 +0000
3976+++ po/bs.po 2012-07-27 05:18:19 +0000
3977@@ -1,24 +1,25 @@
3978-# Bosnian translations for mlocate
3979-# Copyright (C) 2008 Red Hat, Inc.
3980-# This file is distributed under the same license as the mlocate package.
3981-# Nikola Pajtić <salgeras@gmail.com>, 2008.
3982-# Miloš Komarčević <kmilos@gmail.com>, 2008.
3983-# Edmon Begoli <ebegoli@fedoraproject.org>, 2010
3984+# SOME DESCRIPTIVE TITLE.
3985+# Copyright (C) YEAR Red Hat, Inc
3986+# This file is distributed under the same license as the PACKAGE package.
3987 #
3988+# Translators:
3989+# Arnes <arnes99@gmail.com>, 2011.
3990+# mitr <mitr@volny.cz>, 2011.
3991 msgid ""
3992 msgstr ""
3993 "Project-Id-Version: mlocate\n"
3994 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
3995-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
3996-"PO-Revision-Date: 2010-04-17 14:36-0500\n"
3997-"Last-Translator: Edmon Begoli <ebegoli@fedoraproject.com>\n"
3998-"Language-Team: Bosnian (bs) <fedora-trans-bs@redhat.com>\n"
3999+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
4000+"PO-Revision-Date: 2012-02-14 08:16+0000\n"
4001+"Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
4002+"Language-Team: Bosnian (http://www.transifex.net/projects/p/fedora/language/"
4003+"bs/)\n"
4004 "Language: bs\n"
4005 "MIME-Version: 1.0\n"
4006 "Content-Type: text/plain; charset=UTF-8\n"
4007 "Content-Transfer-Encoding: 8bit\n"
4008 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
4009-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
4010+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
4011
4012 #: src/conf.c:241
4013 msgid "warning: Line number overflow"
4014@@ -28,7 +29,7 @@
4015 msgid "missing closing `\"'"
4016 msgstr "nedostaje završno „\"“"
4017
4018-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
4019+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
4020 #, c-format
4021 msgid "can not open `%s'"
4022 msgstr "ne mogu da otvorim „%s“"
4023@@ -64,7 +65,7 @@
4024 msgid "unexpected data after variable value"
4025 msgstr "neočekivan podatak poslije vrijednosti promijenljive"
4026
4027-#: src/conf.c:419 src/lib.c:244
4028+#: src/conf.c:419 src/lib.c:266
4029 #, c-format
4030 msgid "I/O error reading `%s'"
4031 msgstr "U/I greška pri čitanju „%s“"
4032@@ -172,27 +173,27 @@
4033 msgid "unexpected operand on command line"
4034 msgstr "neočekivani operator komandne linije"
4035
4036-#: src/lib.c:177
4037+#: src/lib.c:199
4038 #, c-format
4039 msgid "`%s' does not seem to be a mlocate database"
4040 msgstr "„%s“ izgleda da nije mlocate baza podataka"
4041
4042-#: src/lib.c:184
4043+#: src/lib.c:206
4044 #, c-format
4045 msgid "`%s' has unknown version %u"
4046 msgstr "„%s“ ima nepoznatu verziju %u"
4047
4048-#: src/lib.c:191
4049+#: src/lib.c:213
4050 #, c-format
4051 msgid "`%s' has unknown visibility flag %u"
4052 msgstr "„%s“ ima nepoznati pokazatelj vidljivosti %u"
4053
4054-#: src/lib.c:246
4055+#: src/lib.c:268
4056 #, c-format
4057 msgid "unexpected EOF reading `%s'"
4058 msgstr "neočekivani završetak datoteke (EOF ) pri čitanju „%s“"
4059
4060-#: src/lib.c:341
4061+#: src/lib.c:363
4062 #, c-format
4063 msgid "I/O error seeking in `%s'"
4064 msgstr "U/I greška pri traženju u „%s“"
4065@@ -206,33 +207,36 @@
4066 #, c-format
4067 msgid "\t%'ju directory\n"
4068 msgid_plural "\t%'ju directories\n"
4069-msgstr[0] "\t%'ju direktorij\n"
4070-msgstr[1] "\t%'ju direktorijuma\n"
4071-msgstr[2] "\t%'ju direktorijuma\n"
4072+msgstr[0] ""
4073+"<span class=\"whitespace other\" title=\"Tab\">»</span>%'ju direktorij\n"
4074+msgstr[1] ""
4075+"<span class=\"whitespace other\" title=\"Tab\">»</span>%'ju directories\n"
4076+msgstr[2] ""
4077+"<span class=\"whitespace other\" title=\"Tab\">»</span>%'ju directories\n"
4078
4079 #: src/locate.c:340
4080 #, c-format
4081 msgid "\t%'ju file\n"
4082 msgid_plural "\t%'ju files\n"
4083-msgstr[0] "\t%'ju datoteka\n"
4084-msgstr[1] "\t%'ju datoteke\n"
4085-msgstr[2] "\t%'ju datoteka\n"
4086+msgstr[0] ""
4087+msgstr[1] ""
4088+msgstr[2] ""
4089
4090 #: src/locate.c:342
4091 #, c-format
4092 msgid "\t%'ju byte in file names\n"
4093 msgid_plural "\t%'ju bytes in file names\n"
4094-msgstr[0] "\t%'ju bajt u nazivima datoteke\n"
4095-msgstr[1] "\t%'ju bajta u nazivima datoteke\n"
4096-msgstr[2] "\t%'ju bajtova u nazivima datoteke\n"
4097+msgstr[0] ""
4098+msgstr[1] ""
4099+msgstr[2] ""
4100
4101 #: src/locate.c:344
4102 #, c-format
4103 msgid "\t%'ju byte used to store database\n"
4104 msgid_plural "\t%'ju bytes used to store database\n"
4105-msgstr[0] "\t%'ju bajt upotrebljen za čuvanje baze podataka\n"
4106-msgstr[1] "\t%'ju bajta upotrebljena za čuvanje baze podataka\n"
4107-msgstr[2] "\t%'ju bajtova upotrebljeno za čuvanje baze podataka\n"
4108+msgstr[0] ""
4109+msgstr[1] ""
4110+msgstr[2] ""
4111
4112 #: src/locate.c:473
4113 #, c-format
4114@@ -330,65 +334,70 @@
4115 msgid "can not read two databases from standard input"
4116 msgstr "ne moze da pročita dvije baze podataka sa standardnog ulaza"
4117
4118-#: src/locate.c:959 src/locate.c:974 src/updatedb.c:1096
4119+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
4120 #, c-format
4121 msgid "can not stat () `%s'"
4122 msgstr "ne moze da izvrši funkciju stat () nad „%s“"
4123
4124-#: src/locate.c:1034 src/updatedb.c:1120
4125+#: src/locate.c:1034 src/updatedb.c:1004
4126 msgid "I/O error while writing to standard output"
4127 msgstr "U/I greška pri čitanju sa standardnog izlaza"
4128
4129-#: src/updatedb.c:682 src/updatedb.c:780
4130+#: src/updatedb.c:556 src/updatedb.c:663
4131 #, c-format
4132 msgid "file name length %zu is too large"
4133 msgstr "dužina %zu naziva datoteke je prevelika"
4134
4135-#: src/updatedb.c:1002
4136+#: src/updatedb.c:655
4137+#, c-format
4138+msgid "file system error: zero-length file name in directory %s"
4139+msgstr ""
4140+
4141+#: src/updatedb.c:886
4142 #, c-format
4143 msgid "can not open a temporary file for `%s'"
4144 msgstr "ne moze da otvori privremenu datoteku za „%s“"
4145
4146-#: src/updatedb.c:1015
4147+#: src/updatedb.c:899
4148 msgid "configuration is too large"
4149 msgstr "podešavanje je preveliko"
4150
4151-#: src/updatedb.c:1036
4152+#: src/updatedb.c:920
4153 #, c-format
4154 msgid "can not find group `%s'"
4155 msgstr "ne moze da pronađe grupu „%s“"
4156
4157-#: src/updatedb.c:1039
4158+#: src/updatedb.c:923
4159 #, c-format
4160 msgid "can not change group of file `%s' to `%s'"
4161 msgstr "ne moze da promijeni grupu datoteke „%s“ u „%s“"
4162
4163-#: src/updatedb.c:1053
4164+#: src/updatedb.c:937
4165 #, c-format
4166 msgid "can not change permissions of file `%s'"
4167 msgstr "ne moze da promijeni dozvole datoteke „%s“"
4168
4169-#: src/updatedb.c:1083
4170+#: src/updatedb.c:968
4171 #, c-format
4172 msgid "`%s' is locked (probably by an earlier updatedb)"
4173 msgstr "„%s“ je zaključana (vjerovatno ranijom updatedb operacijom)"
4174
4175-#: src/updatedb.c:1086
4176+#: src/updatedb.c:970
4177 #, c-format
4178 msgid "can not lock `%s'"
4179 msgstr "ne mogu da zaključam „%s“"
4180
4181-#: src/updatedb.c:1093
4182+#: src/updatedb.c:977
4183 #, c-format
4184 msgid "can not change directory to `%s'"
4185 msgstr "ne moze se promijeniti direktorij na „%s“"
4186
4187-#: src/updatedb.c:1102
4188+#: src/updatedb.c:986
4189 #, c-format
4190 msgid "I/O error while writing to `%s'"
4191 msgstr "U/I greška pri pisanju u „%s“"
4192
4193-#: src/updatedb.c:1106
4194+#: src/updatedb.c:990
4195 #, c-format
4196 msgid "error replacing `%s'"
4197 msgstr "greška pri zamjeni „%s“"
4198
4199=== modified file 'po/ca.gmo'
4200Binary files po/ca.gmo 2010-09-25 08:15:12 +0000 and po/ca.gmo 2012-07-27 05:18:19 +0000 differ
4201=== modified file 'po/ca.po'
4202--- po/ca.po 2010-09-25 08:15:12 +0000
4203+++ po/ca.po 2012-07-27 05:18:19 +0000
4204@@ -1,33 +1,22 @@
4205-# Catalan translation of mlocate.
4206-# Copyright (C) 2008 THE mlocate'S COPYRIGHT HOLDER
4207-# This file is distributed under the same license as the mlocate package.
4208-# Xavier Queralt Mateu <xqueralt@gmail.com>, 2008.
4209-#
4210-# This file is translated according to the glossary and style guide of
4211-# Softcatalà. If you plan to modify this file, please read first the page
4212-# of the Catalan translation team for the Fedora project at:
4213-# http://www.softcatala.org/projectes/fedora/
4214-# and contact the previous translator
4215-#
4216-# Aquest fitxer s'ha de traduir d'acord amb el recull de termes i la guia
4217-# d'estil de Softcatalà. Si voleu modificar aquest fitxer, llegiu si
4218-# us plau la pàgina de catalanització del projecte Fedora a:
4219-# http://www.softcatala.org/projectes/fedora/
4220-# i contacteu l'anterior traductor/a.
4221-#
4222+# SOME DESCRIPTIVE TITLE.
4223+# Copyright (C) YEAR Red Hat, Inc
4224+# This file is distributed under the same license as the PACKAGE package.
4225+#
4226+# Translators:
4227+# mitr <mitr@volny.cz>, 2011.
4228 msgid ""
4229 msgstr ""
4230-"Project-Id-Version: mlocate \n"
4231+"Project-Id-Version: mlocate\n"
4232 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
4233-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
4234-"PO-Revision-Date: 2009-09-12 13:12+0200\n"
4235-"Last-Translator: Xavier Queralt Mateu <xqueralt@gmail.com>\n"
4236+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
4237+"PO-Revision-Date: 2012-02-14 08:16+0000\n"
4238+"Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
4239 "Language-Team: Catalan <fedora@llistes.softcatala.org>\n"
4240 "Language: ca\n"
4241 "MIME-Version: 1.0\n"
4242 "Content-Type: text/plain; charset=UTF-8\n"
4243 "Content-Transfer-Encoding: 8bit\n"
4244-"Plural-Forms: nplurals=2; plural=n!=1;\n"
4245+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
4246
4247 #: src/conf.c:241
4248 msgid "warning: Line number overflow"
4249@@ -37,7 +26,7 @@
4250 msgid "missing closing `\"'"
4251 msgstr "falta el caràcter `\"' de tancament"
4252
4253-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
4254+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
4255 #, c-format
4256 msgid "can not open `%s'"
4257 msgstr "no s'ha pogut obrir `%s'"
4258@@ -73,7 +62,7 @@
4259 msgid "unexpected data after variable value"
4260 msgstr "dades no esperades després del nom de la variable"
4261
4262-#: src/conf.c:419 src/lib.c:244
4263+#: src/conf.c:419 src/lib.c:266
4264 #, c-format
4265 msgid "I/O error reading `%s'"
4266 msgstr "S'ha produït un error d'E/S en llegir `%s'"
4267@@ -177,27 +166,27 @@
4268 msgid "unexpected operand on command line"
4269 msgstr "operador invàlid en la línia d'ordres"
4270
4271-#: src/lib.c:177
4272+#: src/lib.c:199
4273 #, c-format
4274 msgid "`%s' does not seem to be a mlocate database"
4275 msgstr "`%s' no sembla ser una base de dades del mlocate"
4276
4277-#: src/lib.c:184
4278+#: src/lib.c:206
4279 #, c-format
4280 msgid "`%s' has unknown version %u"
4281 msgstr "`%s' té una versió %u desconeguda"
4282
4283-#: src/lib.c:191
4284+#: src/lib.c:213
4285 #, c-format
4286 msgid "`%s' has unknown visibility flag %u"
4287 msgstr "`%s' té un senyalador de visibilitat %u desconegut"
4288
4289-#: src/lib.c:246
4290+#: src/lib.c:268
4291 #, c-format
4292 msgid "unexpected EOF reading `%s'"
4293 msgstr "Fi de fitxer inesperat en llegir `%s'"
4294
4295-#: src/lib.c:341
4296+#: src/lib.c:363
4297 #, c-format
4298 msgid "I/O error seeking in `%s'"
4299 msgstr "error d'E/S mentre es cercava en `%s'"
4300@@ -335,65 +324,70 @@
4301 msgid "can not read two databases from standard input"
4302 msgstr "no es poden llegir dues bases de dades des de l'entrada estàndard"
4303
4304-#: src/locate.c:959 src/locate.c:974 src/updatedb.c:1096
4305+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
4306 #, c-format
4307 msgid "can not stat () `%s'"
4308 msgstr "ha fallat la crida stat() a %s"
4309
4310-#: src/locate.c:1034 src/updatedb.c:1120
4311+#: src/locate.c:1034 src/updatedb.c:1004
4312 msgid "I/O error while writing to standard output"
4313 msgstr "error d'E/S quan s'escrivia a la sortida estàndard"
4314
4315-#: src/updatedb.c:682 src/updatedb.c:780
4316+#: src/updatedb.c:556 src/updatedb.c:663
4317 #, c-format
4318 msgid "file name length %zu is too large"
4319 msgstr "la longitud %zu del nom de fitxer és massa llarga"
4320
4321-#: src/updatedb.c:1002
4322+#: src/updatedb.c:655
4323+#, c-format
4324+msgid "file system error: zero-length file name in directory %s"
4325+msgstr ""
4326+
4327+#: src/updatedb.c:886
4328 #, c-format
4329 msgid "can not open a temporary file for `%s'"
4330 msgstr "no es pot obrir un fitxer temporal per a `%s'"
4331
4332-#: src/updatedb.c:1015
4333+#: src/updatedb.c:899
4334 msgid "configuration is too large"
4335 msgstr "la configuració és massa gran"
4336
4337-#: src/updatedb.c:1036
4338+#: src/updatedb.c:920
4339 #, c-format
4340 msgid "can not find group `%s'"
4341 msgstr "no s'ha trobat el grup `%s'"
4342
4343-#: src/updatedb.c:1039
4344+#: src/updatedb.c:923
4345 #, c-format
4346 msgid "can not change group of file `%s' to `%s'"
4347 msgstr "no s'ha pogut canviar el grup del fitxer `%s' a `%s'"
4348
4349-#: src/updatedb.c:1053
4350+#: src/updatedb.c:937
4351 #, c-format
4352 msgid "can not change permissions of file `%s'"
4353 msgstr "no s'han pogut canviar els permisos del fitxer `%s'"
4354
4355-#: src/updatedb.c:1083
4356+#: src/updatedb.c:968
4357 #, c-format
4358 msgid "`%s' is locked (probably by an earlier updatedb)"
4359 msgstr "«%s» està blocat (probablement per un updatedb anterior)"
4360
4361-#: src/updatedb.c:1086
4362+#: src/updatedb.c:970
4363 #, c-format
4364 msgid "can not lock `%s'"
4365 msgstr "no s'ha pogut blocar `%s'"
4366
4367-#: src/updatedb.c:1093
4368+#: src/updatedb.c:977
4369 #, c-format
4370 msgid "can not change directory to `%s'"
4371 msgstr "no s'ha pogut canviar el directori a `%s'"
4372
4373-#: src/updatedb.c:1102
4374+#: src/updatedb.c:986
4375 #, c-format
4376 msgid "I/O error while writing to `%s'"
4377 msgstr "error d'E/S quan s'escrivia a `%s'"
4378
4379-#: src/updatedb.c:1106
4380+#: src/updatedb.c:990
4381 #, c-format
4382 msgid "error replacing `%s'"
4383 msgstr "error en substituir `%s'"
4384
4385=== modified file 'po/cs.gmo'
4386Binary files po/cs.gmo 2010-10-12 16:34:36 +0000 and po/cs.gmo 2012-07-27 05:18:19 +0000 differ
4387=== modified file 'po/cs.po'
4388--- po/cs.po 2010-10-12 16:34:36 +0000
4389+++ po/cs.po 2012-07-27 05:18:19 +0000
4390@@ -1,22 +1,23 @@
4391-# Czech translation of mlocate.
4392-# Copyright (C) 2005, 2006, 2007, 2008 Red Hat, Inc.
4393-# Copyright (C) 2005, 2006, 2007, 2008 Miloslav Trmač <mitr@volny.cz>
4394-# This file is distributed under the same license as the mlocate package.
4395-# Miloslav Trmač <mitr@volny.cz>, 2005, 2006, 2007, 2008.
4396+# SOME DESCRIPTIVE TITLE.
4397+# Copyright (C) YEAR Red Hat, Inc
4398+# This file is distributed under the same license as the PACKAGE package.
4399 #
4400+# Translators:
4401+# mitr <mitr@volny.cz>, 2011.
4402 msgid ""
4403 msgstr ""
4404-"Project-Id-Version: mlocate VERSION\n"
4405+"Project-Id-Version: mlocate\n"
4406 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
4407-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
4408-"PO-Revision-Date: 2008-06-30 01:37+0200\n"
4409+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
4410+"PO-Revision-Date: 2012-03-03 05:54+0100\n"
4411 "Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
4412-"Language-Team: Czech <cs@li.org>\n"
4413+"Language-Team: Czech (http://www.transifex.net/projects/p/fedora/language/"
4414+"cs/)\n"
4415 "Language: cs\n"
4416 "MIME-Version: 1.0\n"
4417 "Content-Type: text/plain; charset=UTF-8\n"
4418 "Content-Transfer-Encoding: 8bit\n"
4419-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
4420+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
4421
4422 #: src/conf.c:241
4423 msgid "warning: Line number overflow"
4424@@ -26,7 +27,7 @@
4425 msgid "missing closing `\"'"
4426 msgstr "chybí uzavírající `\"'"
4427
4428-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
4429+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
4430 #, c-format
4431 msgid "can not open `%s'"
4432 msgstr "nemohu otevřít `%s'"
4433@@ -62,7 +63,7 @@
4434 msgid "unexpected data after variable value"
4435 msgstr "neočekávaná data po hodnotě proměnné"
4436
4437-#: src/conf.c:419 src/lib.c:244
4438+#: src/conf.c:419 src/lib.c:266
4439 #, c-format
4440 msgid "I/O error reading `%s'"
4441 msgstr "chyba I/O při čtení `%s'"
4442@@ -165,27 +166,27 @@
4443 msgid "unexpected operand on command line"
4444 msgstr "neočekávaný parametr na příkazovém řádku"
4445
4446-#: src/lib.c:177
4447+#: src/lib.c:199
4448 #, c-format
4449 msgid "`%s' does not seem to be a mlocate database"
4450 msgstr "`%s' zřejmě není databáze mlocate"
4451
4452-#: src/lib.c:184
4453+#: src/lib.c:206
4454 #, c-format
4455 msgid "`%s' has unknown version %u"
4456 msgstr "`%s' má neznámou verzi %u"
4457
4458-#: src/lib.c:191
4459+#: src/lib.c:213
4460 #, c-format
4461 msgid "`%s' has unknown visibility flag %u"
4462 msgstr "`%s' má neznámý příznak viditelnosti %u"
4463
4464-#: src/lib.c:246
4465+#: src/lib.c:268
4466 #, c-format
4467 msgid "unexpected EOF reading `%s'"
4468 msgstr "neočekávaný konec souboru při čtení `%s'"
4469
4470-#: src/lib.c:341
4471+#: src/lib.c:363
4472 #, c-format
4473 msgid "I/O error seeking in `%s'"
4474 msgstr "chyba I/O při posouvání v `%s'"
4475@@ -320,77 +321,70 @@
4476 msgid "can not read two databases from standard input"
4477 msgstr "nemohu číst dvě databáze ze standardního vstupu"
4478
4479-#: src/locate.c:959 src/locate.c:974 src/updatedb.c:1096
4480+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
4481 #, c-format
4482 msgid "can not stat () `%s'"
4483 msgstr "nemohu stat () `%s'"
4484
4485-#: src/locate.c:1034 src/updatedb.c:1120
4486+#: src/locate.c:1034 src/updatedb.c:1004
4487 msgid "I/O error while writing to standard output"
4488 msgstr "chyba I/O při zápisu na standardní výstup"
4489
4490-#: src/updatedb.c:682 src/updatedb.c:780
4491+#: src/updatedb.c:556 src/updatedb.c:663
4492 #, c-format
4493 msgid "file name length %zu is too large"
4494 msgstr "délka názvu souboru %zu je příliš velká"
4495
4496-#: src/updatedb.c:1002
4497+#: src/updatedb.c:655
4498+#, c-format
4499+msgid "file system error: zero-length file name in directory %s"
4500+msgstr "chyba systému souborů: soubor s názvem nulové délky v adresáři %s"
4501+
4502+#: src/updatedb.c:886
4503 #, c-format
4504 msgid "can not open a temporary file for `%s'"
4505 msgstr "nemohu otevřít dočasný soubor pro `%s'"
4506
4507-#: src/updatedb.c:1015
4508+#: src/updatedb.c:899
4509 msgid "configuration is too large"
4510 msgstr "nastavení je příliš velké"
4511
4512-#: src/updatedb.c:1036
4513+#: src/updatedb.c:920
4514 #, c-format
4515 msgid "can not find group `%s'"
4516 msgstr "nemohu najít skupinu `%s'"
4517
4518-#: src/updatedb.c:1039
4519+#: src/updatedb.c:923
4520 #, c-format
4521 msgid "can not change group of file `%s' to `%s'"
4522 msgstr "nemohu změnit skupinu souboru `%s' na `%s'"
4523
4524-#: src/updatedb.c:1053
4525+#: src/updatedb.c:937
4526 #, c-format
4527 msgid "can not change permissions of file `%s'"
4528 msgstr "nemohu změnit oprávnění souboru `%s'"
4529
4530-#: src/updatedb.c:1083
4531+#: src/updatedb.c:968
4532 #, c-format
4533 msgid "`%s' is locked (probably by an earlier updatedb)"
4534 msgstr "`%s' je uzamčen (pravděpodobně dřívejším updatedb)"
4535
4536-#: src/updatedb.c:1086
4537+#: src/updatedb.c:970
4538 #, c-format
4539 msgid "can not lock `%s'"
4540 msgstr "nemohu zamknout `%s'"
4541
4542-#: src/updatedb.c:1093
4543+#: src/updatedb.c:977
4544 #, c-format
4545 msgid "can not change directory to `%s'"
4546 msgstr "nemohu změnit adresář na `%s'"
4547
4548-#: src/updatedb.c:1102
4549+#: src/updatedb.c:986
4550 #, c-format
4551 msgid "I/O error while writing to `%s'"
4552 msgstr "chyba I/O při zápisu do `%s'"
4553
4554-#: src/updatedb.c:1106
4555+#: src/updatedb.c:990
4556 #, c-format
4557 msgid "error replacing `%s'"
4558 msgstr "chyba při nahrazování `%s'"
4559-
4560-#~ msgid "the argument to --database-root must be an absolute path name"
4561-#~ msgstr "parametr --database-root musí být absolutní cesta"
4562-
4563-#~ msgid "path name length %zu is too large"
4564-#~ msgstr "délka názvu cesty %zu je příliš velká"
4565-
4566-#~ msgid "can not allocate memory"
4567-#~ msgstr "nemohu alokovat paměť"
4568-
4569-#~ msgid "I/O error closing `%s'"
4570-#~ msgstr "chyba I/O při zavírání `%s'"
4571
4572=== modified file 'po/da.gmo'
4573Binary files po/da.gmo 2010-09-25 08:15:12 +0000 and po/da.gmo 2012-07-27 05:18:19 +0000 differ
4574=== modified file 'po/da.po'
4575--- po/da.po 2010-09-25 08:15:12 +0000
4576+++ po/da.po 2012-07-27 05:18:19 +0000
4577@@ -1,21 +1,22 @@
4578-# Danish translation of mlocate
4579-# Copyright (C) 2009 mlocate
4580-# This file is distributed under the same license as the mlocate package.
4581-# Kris Thomsen <lakristho@gmail.com>, 2009.
4582+# SOME DESCRIPTIVE TITLE.
4583+# Copyright (C) YEAR Red Hat, Inc
4584+# This file is distributed under the same license as the PACKAGE package.
4585 #
4586+# Translators:
4587+# mitr <mitr@volny.cz>, 2011.
4588 msgid ""
4589 msgstr ""
4590 "Project-Id-Version: mlocate\n"
4591 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
4592-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
4593-"PO-Revision-Date: 2009-07-15 00:54+0200\n"
4594-"Last-Translator: Kris Thomsen <lakristho@gmail.com>\n"
4595+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
4596+"PO-Revision-Date: 2012-02-14 08:16+0000\n"
4597+"Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
4598 "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
4599 "Language: da\n"
4600 "MIME-Version: 1.0\n"
4601 "Content-Type: text/plain; charset=UTF-8\n"
4602 "Content-Transfer-Encoding: 8bit\n"
4603-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
4604+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
4605
4606 #: src/conf.c:241
4607 msgid "warning: Line number overflow"
4608@@ -25,7 +26,7 @@
4609 msgid "missing closing `\"'"
4610 msgstr "mangler lukkende '\"'"
4611
4612-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
4613+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
4614 #, c-format
4615 msgid "can not open `%s'"
4616 msgstr "kan ikke åbne \"%s\""
4617@@ -61,7 +62,7 @@
4618 msgid "unexpected data after variable value"
4619 msgstr "uventet data efter variabel værdi"
4620
4621-#: src/conf.c:419 src/lib.c:244
4622+#: src/conf.c:419 src/lib.c:266
4623 #, c-format
4624 msgid "I/O error reading `%s'"
4625 msgstr "I/O-fejl ved læsning af \"%s\""
4626@@ -162,27 +163,27 @@
4627 msgid "unexpected operand on command line"
4628 msgstr "uventet operand på kommandolinje"
4629
4630-#: src/lib.c:177
4631+#: src/lib.c:199
4632 #, c-format
4633 msgid "`%s' does not seem to be a mlocate database"
4634 msgstr "\"%s\" ser ikke ud til at være en mlocate-database"
4635
4636-#: src/lib.c:184
4637+#: src/lib.c:206
4638 #, c-format
4639 msgid "`%s' has unknown version %u"
4640 msgstr "\"%s\" har ukendt version %u"
4641
4642-#: src/lib.c:191
4643+#: src/lib.c:213
4644 #, c-format
4645 msgid "`%s' has unknown visibility flag %u"
4646 msgstr "\"%s\" har ukendt synlighedsflag %u"
4647
4648-#: src/lib.c:246
4649+#: src/lib.c:268
4650 #, c-format
4651 msgid "unexpected EOF reading `%s'"
4652 msgstr "ikke forventet EOF ved læsning af \"%s\""
4653
4654-#: src/lib.c:341
4655+#: src/lib.c:363
4656 #, c-format
4657 msgid "I/O error seeking in `%s'"
4658 msgstr "I/O-fejl ved søgning i \"%s\""
4659@@ -315,65 +316,70 @@
4660 msgid "can not read two databases from standard input"
4661 msgstr "kan ikke læse to databaser fra standard input"
4662
4663-#: src/locate.c:959 src/locate.c:974 src/updatedb.c:1096
4664+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
4665 #, c-format
4666 msgid "can not stat () `%s'"
4667 msgstr "kan ikke stat () \"%s\""
4668
4669-#: src/locate.c:1034 src/updatedb.c:1120
4670+#: src/locate.c:1034 src/updatedb.c:1004
4671 msgid "I/O error while writing to standard output"
4672 msgstr "I/O-fejl under skrivning til standardoutput"
4673
4674-#: src/updatedb.c:682 src/updatedb.c:780
4675+#: src/updatedb.c:556 src/updatedb.c:663
4676 #, c-format
4677 msgid "file name length %zu is too large"
4678 msgstr "længden på filnavn %zu er for stor"
4679
4680-#: src/updatedb.c:1002
4681+#: src/updatedb.c:655
4682+#, c-format
4683+msgid "file system error: zero-length file name in directory %s"
4684+msgstr ""
4685+
4686+#: src/updatedb.c:886
4687 #, c-format
4688 msgid "can not open a temporary file for `%s'"
4689 msgstr "kan ikke åbne en midlertidig fil for \"%s\""
4690
4691-#: src/updatedb.c:1015
4692+#: src/updatedb.c:899
4693 msgid "configuration is too large"
4694 msgstr "konfiguration er for stor"
4695
4696-#: src/updatedb.c:1036
4697+#: src/updatedb.c:920
4698 #, c-format
4699 msgid "can not find group `%s'"
4700 msgstr "kan ikke finde gruppe \"%s\""
4701
4702-#: src/updatedb.c:1039
4703+#: src/updatedb.c:923
4704 #, c-format
4705 msgid "can not change group of file `%s' to `%s'"
4706 msgstr "kan ikke ændre gruppe på fil \"%s\" til \"%s\""
4707
4708-#: src/updatedb.c:1053
4709+#: src/updatedb.c:937
4710 #, c-format
4711 msgid "can not change permissions of file `%s'"
4712 msgstr "kan ikke ændre rettigheder på fil \"%s\""
4713
4714-#: src/updatedb.c:1083
4715+#: src/updatedb.c:968
4716 #, c-format
4717 msgid "`%s' is locked (probably by an earlier updatedb)"
4718 msgstr "\"%s\" er låst (sandsynligvis af en tidligere updatedb)"
4719
4720-#: src/updatedb.c:1086
4721+#: src/updatedb.c:970
4722 #, c-format
4723 msgid "can not lock `%s'"
4724 msgstr "kan ikke låse \"%s\""
4725
4726-#: src/updatedb.c:1093
4727+#: src/updatedb.c:977
4728 #, c-format
4729 msgid "can not change directory to `%s'"
4730 msgstr "kan ikke ændre mappe til \"%s\""
4731
4732-#: src/updatedb.c:1102
4733+#: src/updatedb.c:986
4734 #, c-format
4735 msgid "I/O error while writing to `%s'"
4736 msgstr "I/O-fejl under skrivning til \"%s\""
4737
4738-#: src/updatedb.c:1106
4739+#: src/updatedb.c:990
4740 #, c-format
4741 msgid "error replacing `%s'"
4742 msgstr "kunne ikke erstatte \"%s\""
4743
4744=== modified file 'po/de.gmo'
4745Binary files po/de.gmo 2010-10-12 16:34:36 +0000 and po/de.gmo 2012-07-27 05:18:19 +0000 differ
4746=== modified file 'po/de.po'
4747--- po/de.po 2010-10-12 16:34:36 +0000
4748+++ po/de.po 2012-07-27 05:18:19 +0000
4749@@ -1,25 +1,23 @@
4750-# German translation of mlocate.po
4751-# Copyright (C) 2008 Red Hat, Inc.
4752-# This file is distributed under the same license as the mlocate package.
4753-#
4754-# Fabian Affolter <fab@fedoraproject.org>, 2008.
4755-# Thomas Spura <tomspur@fedoraproject.org>, 2008-2009.
4756-# Christian Faulhammer <fauli@gentoo.org>, 2010.
4757-#
4758+# SOME DESCRIPTIVE TITLE.
4759+# Copyright (C) YEAR Red Hat, Inc
4760+# This file is distributed under the same license as the PACKAGE package.
4761+#
4762+# Translators:
4763+# mitr <mitr@volny.cz>, 2011.
4764+# Roman Spirgi <rspirgi@gmail.com>, 2012.
4765 msgid ""
4766 msgstr ""
4767 "Project-Id-Version: mlocate\n"
4768 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
4769-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
4770-"PO-Revision-Date: 2010-04-20 20:16+0200\n"
4771-"Last-Translator: Christian Faulhammer <fauli@gentoo.org>\n"
4772-"Language-Team: German <fedora-trans-de@redhat.com>\n"
4773+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
4774+"PO-Revision-Date: 2012-02-21 07:45+0000\n"
4775+"Last-Translator: Roman Spirgi <bigant@fedoraproject.org>\n"
4776+"Language-Team: German <trans-de@lists.fedoraproject.org>\n"
4777 "Language: de\n"
4778 "MIME-Version: 1.0\n"
4779-"Content-Type: text/plain; charset=utf-8\n"
4780+"Content-Type: text/plain; charset=UTF-8\n"
4781 "Content-Transfer-Encoding: 8bit\n"
4782-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4783-"X-Poedit-Language: German\n"
4784+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
4785
4786 #: src/conf.c:241
4787 msgid "warning: Line number overflow"
4788@@ -29,7 +27,7 @@
4789 msgid "missing closing `\"'"
4790 msgstr "fehlendes schliessendes `\"'"
4791
4792-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
4793+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
4794 #, c-format
4795 msgid "can not open `%s'"
4796 msgstr "kann `%s' nicht öffnen"
4797@@ -65,7 +63,7 @@
4798 msgid "unexpected data after variable value"
4799 msgstr "Unerwartete Daten nach dem Variablen-Wert"
4800
4801-#: src/conf.c:419 src/lib.c:244
4802+#: src/conf.c:419 src/lib.c:266
4803 #, c-format
4804 msgid "I/O error reading `%s'"
4805 msgstr "E/A-Lese-Fehler `%s'"
4806@@ -166,27 +164,27 @@
4807 msgid "unexpected operand on command line"
4808 msgstr "unerwarteter Operator auf der Befehlszeile"
4809
4810-#: src/lib.c:177
4811+#: src/lib.c:199
4812 #, c-format
4813 msgid "`%s' does not seem to be a mlocate database"
4814 msgstr "`%s' scheint keine mlocate-Datenbank zu sein"
4815
4816-#: src/lib.c:184
4817+#: src/lib.c:206
4818 #, c-format
4819 msgid "`%s' has unknown version %u"
4820 msgstr "`%s' hat unbekannte Version %u"
4821
4822-#: src/lib.c:191
4823+#: src/lib.c:213
4824 #, c-format
4825 msgid "`%s' has unknown visibility flag %u"
4826 msgstr "`%s' hat eine unbekannte Sichtbarkeitsmarkierung %u"
4827
4828-#: src/lib.c:246
4829+#: src/lib.c:268
4830 #, c-format
4831 msgid "unexpected EOF reading `%s'"
4832 msgstr "unerwartetes EOF gelesen `%s'"
4833
4834-#: src/lib.c:341
4835+#: src/lib.c:363
4836 #, c-format
4837 msgid "I/O error seeking in `%s'"
4838 msgstr "E/A-Fehler bei Suche in `%s'"
4839@@ -320,65 +318,70 @@
4840 msgid "can not read two databases from standard input"
4841 msgstr "kann nicht zwei Datenbanken von der Standard-Eingabe lesen"
4842
4843-#: src/locate.c:959 src/locate.c:974 src/updatedb.c:1096
4844+#: src/locate.c:959 src/locate.c:974 src/updatedb.c:980
4845 #, c-format
4846 msgid "can not stat () `%s'"
4847 msgstr "kann stat () `%s' nicht durchführen"
4848
4849-#: src/locate.c:1034 src/updatedb.c:1120
4850+#: src/locate.c:1034 src/updatedb.c:1004
4851 msgid "I/O error while writing to standard output"
4852 msgstr "E/A-Fehler während des Schreibens auf Standard-Ausgabe"
4853
4854-#: src/updatedb.c:682 src/updatedb.c:780
4855+#: src/updatedb.c:556 src/updatedb.c:663
4856 #, c-format
4857 msgid "file name length %zu is too large"
4858 msgstr "Dateinamen-Länge %zu ist zu lange"
4859
4860-#: src/updatedb.c:1002
4861+#: src/updatedb.c:655
4862+#, c-format
4863+msgid "file system error: zero-length file name in directory %s"
4864+msgstr "Dateisystem-Fehler: Dateinamen mit Nulllänge im Verzeichnis %s"
4865+
4866+#: src/updatedb.c:886
4867 #, c-format
4868 msgid "can not open a temporary file for `%s'"
4869 msgstr "kann temporäre Datei für `%s' nicht öffnen"
4870
4871-#: src/updatedb.c:1015
4872+#: src/updatedb.c:899
4873 msgid "configuration is too large"
4874 msgstr "Konfiguration ist zu lang"
4875
4876-#: src/updatedb.c:1036
4877+#: src/updatedb.c:920
4878 #, c-format
4879 msgid "can not find group `%s'"
4880 msgstr "kann Gruppe `%s' nicht finden"
4881
4882-#: src/updatedb.c:1039
4883+#: src/updatedb.c:923
4884 #, c-format
4885 msgid "can not change group of file `%s' to `%s'"
4886 msgstr "kann Dateigruppe von `%s' zu `%s' nicht ändern"
4887
4888-#: src/updatedb.c:1053
4889+#: src/updatedb.c:937
4890 #, c-format
4891 msgid "can not change permissions of file `%s'"
4892 msgstr "kann Berechtigungen von Datei `%s' nicht ändern"
4893
4894-#: src/updatedb.c:1083
4895+#: src/updatedb.c:968
4896 #, c-format
4897 msgid "`%s' is locked (probably by an earlier updatedb)"
4898 msgstr "`%s' ist blockiert (wahrscheinlich durch ein früheres updatedb)"
4899
4900-#: src/updatedb.c:1086
4901+#: src/updatedb.c:970
4902 #, c-format
4903 msgid "can not lock `%s'"
4904 msgstr "kann `%s' nicht blockieren"
4905
4906-#: src/updatedb.c:1093
4907+#: src/updatedb.c:977
4908 #, c-format
4909 msgid "can not change directory to `%s'"
4910 msgstr "kann Verzeichnis nicht auf `%s' ändern"
4911
4912-#: src/updatedb.c:1102
4913+#: src/updatedb.c:986
4914 #, c-format
4915 msgid "I/O error while writing to `%s'"
4916 msgstr "E/A-Fehler während des Schreibens auf `%s'"
4917
4918-#: src/updatedb.c:1106
4919+#: src/updatedb.c:990
4920 #, c-format
4921 msgid "error replacing `%s'"
4922 msgstr "Fehler beim Ersetzen von `%s'"
4923
4924=== modified file 'po/el.gmo'
4925Binary files po/el.gmo 2010-09-25 08:15:12 +0000 and po/el.gmo 2012-07-27 05:18:19 +0000 differ
4926=== modified file 'po/el.po'
4927--- po/el.po 2010-09-25 08:15:12 +0000
4928+++ po/el.po 2012-07-27 05:18:19 +0000
4929@@ -1,76 +1,71 @@
4930-# Greek translation of mlocate package.
4931-# Copyright (C) 2010 the Greek Fedora Translation Team
4932-# This file is distributed under the same license as the mlocate package.
4933-# Pierros Papadeas <pierros@papadeas.gr>, 2010.
4934+# SOME DESCRIPTIVE TITLE.
4935+# Copyright (C) YEAR Red Hat, Inc
4936+# This file is distributed under the same license as the PACKAGE package.
4937 #
4938+# Translators:
4939+# mitr <mitr@volny.cz>, 2011.
4940 msgid ""
4941 msgstr ""
4942-"Project-Id-Version: mlocate.tip\n"
4943+"Project-Id-Version: mlocate\n"
4944 "Report-Msgid-Bugs-To: https://fedorahosted.org/mlocate/\n"
4945-"POT-Creation-Date: 2010-09-14 15:56+0200\n"
4946-"PO-Revision-Date: 2010-02-17 00:23+0200\n"
4947-"Last-Translator: Pierros Papadeas <pierros@papadeas.gr>\n"
4948-"Language-Team: Greek <fedora-trans-el@redhat.com>\n"
4949+"POT-Creation-Date: 2012-03-03 06:10+0100\n"
4950+"PO-Revision-Date: 2012-02-14 08:16+0000\n"
4951+"Last-Translator: Miloslav Trmač <mitr@volny.cz>\n"
4952+"Language-Team: Greek <trans-el@lists.fedoraproject.org>\n"
4953 "Language: el\n"
4954 "MIME-Version: 1.0\n"
4955 "Content-Type: text/plain; charset=UTF-8\n"
4956 "Content-Transfer-Encoding: 8bit\n"
4957-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4958+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
4959
4960 #: src/conf.c:241
4961-#, fuzzy
4962 msgid "warning: Line number overflow"
4963-msgstr "Προειδοποίηση: Υπερχείληση αριθμών γραμμής"
4964+msgstr ""
4965
4966 #: src/conf.c:259
4967-#, fuzzy
4968 msgid "missing closing `\"'"
4969-msgstr "Λείπει το tag κλεισίματος `\"'"
4970+msgstr ""
4971
4972-#: src/conf.c:309 src/locate.c:968 src/updatedb.c:1008
4973-#, fuzzy, c-format
4974+#: src/conf.c:309 src/locate.c:968 src/updatedb.c:892
4975+#, c-format
4976 msgid "can not open `%s'"
4977-msgstr "δεν μπορεί να ανοίξει το `%s'"
4978+msgstr ""
4979
4980 #: src/conf.c:353
4981-#, fuzzy, c-format
4982+#, c-format
4983 msgid "unknown variable `%s'"
4984-msgstr "Άγνωστη μεταβλητή `%s'"
4985+msgstr ""
4986
4987 #: src/conf.c:358
4988-#, fuzzy
4989 msgid "variable name expected"
4990-msgstr "Αναμενόταν όνομα μεταβλητής"
4991+msgstr ""
4992
4993 #: src/conf.c:364
4994-#, fuzzy, c-format
4995+#, c-format
4996 msgid "variable `%s' was already defined"
4997-msgstr "Η μεταβλητή `%s' ήταν ήδη ορισμένη"
4998+msgstr ""
4999
5000 #: src/conf.c:373
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: