Commit 04996ad1 04996ad1173c65fb4b35f86b3e90df3c248670c8 by Sergey Poznyakoff

Updated

1 parent 8ea093c8
1 2005-02-24 Sergey Poznyakoff
2
3 Update by gnulib-sync.
4
5 * lib/stdbool.h: New file
6 * m4/unlocked-io.m4: New file
7 * m4/argp.m4: Updated
8 * m4/gnulib.m4: Updated
9 * mailbox/Makefile.am: Updated
10
1 2005-02-23 Sergey Poznyakoff 11 2005-02-23 Sergey Poznyakoff
2 12
3 Synchronized with the recent gnulib. Provide a way to 13 Synchronized with the recent gnulib. Provide a way to
......
...@@ -7,7 +7,7 @@ dnl with or without modifications, as long as this notice is preserved. ...@@ -7,7 +7,7 @@ dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_ARGP], 7 AC_DEFUN([gl_ARGP],
8 [ 8 [
9 AC_REQUIRE([AC_C_INLINE]) 9 AC_REQUIRE([AC_C_INLINE])
10 dnl AC_REQUIRE([gl_FUNC_GLIBC_UNLOCKED_IO]) 10 AC_REQUIRE([gl_FUNC_GLIBC_UNLOCKED_IO])
11 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) 11 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
12 AC_REQUIRE([gl_GETOPT_SUBSTITUTE]) 12 AC_REQUIRE([gl_GETOPT_SUBSTITUTE])
13 AC_CHECK_DECLS([program_invocation_name, program_invocation_short_name],,, 13 AC_CHECK_DECLS([program_invocation_name, program_invocation_short_name],,,
......
...@@ -101,6 +101,9 @@ gl_FUNC_STRNLEN ...@@ -101,6 +101,9 @@ gl_FUNC_STRNLEN
101 # sysexits 101 # sysexits
102 gl_SYSEXITS 102 gl_SYSEXITS
103 103
104 # unlocked-io
105 gl_FUNC_GLIBC_UNLOCKED_IO
106
104 # vasnprintf 107 # vasnprintf
105 gl_FUNC_VASNPRINTF 108 gl_FUNC_VASNPRINTF
106 109
......
...@@ -178,10 +178,12 @@ sysexits.h: sysexit_.h ...@@ -178,10 +178,12 @@ sysexits.h: sysexit_.h
178 mv sysexits.h-t sysexits.h 178 mv sysexits.h-t sysexits.h
179 MOSTLYCLEANFILES += sysexits.h sysexits.h-t 179 MOSTLYCLEANFILES += sysexits.h sysexits.h-t
180 180
181 libmailbox_la_SOURCES += unlocked-io.h
182
181 libmailbox_la_SOURCES += printf-args.h printf-parse.h vasnprintf.h 183 libmailbox_la_SOURCES += printf-args.h printf-parse.h vasnprintf.h
182 184
183 libmailbox_la_SOURCES += vsnprintf.h 185 libmailbox_la_SOURCES += vsnprintf.h
184 186
185 libmailbox_la_SOURCES += xsize.h 187 libmailbox_la_SOURCES += xsize.h
186 188
187 EXTRA_DIST += getline.c getline.c getndelim2.c getndelim2.c getopt.c getopt1.c mempcpy.c mempcpy.h mempcpy.c regex.c strcasecmp.c strncasecmp.c strchrnul.c strndup.c strnlen.c strtok_r.c vasnprintf.c printf-args.c printf-parse.c asnprintf.c vsnprintf.c 189 EXTRA_DIST += regex.c getline.c getline.c getndelim2.c getndelim2.c getopt.c getopt1.c mempcpy.c mempcpy.h mempcpy.c strcasecmp.c strncasecmp.c strchrnul.c strndup.c strnlen.c strtok_r.c vasnprintf.c printf-args.c printf-parse.c asnprintf.c vsnprintf.c
......