Skip to content

Commit e8e6159

Browse files
committed
testdir41: try 2.
1 parent 611e4dc commit e8e6159

17 files changed

Lines changed: 1296 additions & 262 deletions

testdir41/Makefile.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ am__aclocal_m4_deps = $(top_srcdir)/gnulib-m4/00gnulib.m4 \
143143
$(top_srcdir)/gnulib-m4/getcwd-abort-bug.m4 \
144144
$(top_srcdir)/gnulib-m4/getcwd-path-max.m4 \
145145
$(top_srcdir)/gnulib-m4/getcwd.m4 \
146+
$(top_srcdir)/gnulib-m4/getdelim.m4 \
146147
$(top_srcdir)/gnulib-m4/getdtablesize.m4 \
148+
$(top_srcdir)/gnulib-m4/getline.m4 \
147149
$(top_srcdir)/gnulib-m4/getopt.m4 \
148150
$(top_srcdir)/gnulib-m4/getprogname.m4 \
149151
$(top_srcdir)/gnulib-m4/gettext_h.m4 \

testdir41/aclocal.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,9 @@ m4_include([gnulib-m4/ftello.m4])
14051405
m4_include([gnulib-m4/getcwd-abort-bug.m4])
14061406
m4_include([gnulib-m4/getcwd-path-max.m4])
14071407
m4_include([gnulib-m4/getcwd.m4])
1408+
m4_include([gnulib-m4/getdelim.m4])
14081409
m4_include([gnulib-m4/getdtablesize.m4])
1410+
m4_include([gnulib-m4/getline.m4])
14091411
m4_include([gnulib-m4/getopt.m4])
14101412
m4_include([gnulib-m4/getprogname.m4])
14111413
m4_include([gnulib-m4/gettext_h.m4])

testdir41/autogen.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ if ! $skip_gnulib; then
7777
error
7878
read-file
7979
spawn-pipe
80+
getline
8081
wait-process
8182
xlist
8283
array-list

testdir41/config.h.in

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,9 +324,15 @@
324324
/* Define to 1 when the gnulib module getcwd should be tested. */
325325
#undef GNULIB_TEST_GETCWD
326326

327+
/* Define to 1 when the gnulib module getdelim should be tested. */
328+
#undef GNULIB_TEST_GETDELIM
329+
327330
/* Define to 1 when the gnulib module getdtablesize should be tested. */
328331
#undef GNULIB_TEST_GETDTABLESIZE
329332

333+
/* Define to 1 when the gnulib module getline should be tested. */
334+
#undef GNULIB_TEST_GETLINE
335+
330336
/* Define to 1 when the gnulib module getopt-posix should be tested. */
331337
#undef GNULIB_TEST_GETOPT_POSIX
332338

@@ -626,10 +632,22 @@
626632
*/
627633
#undef HAVE_DECL_GETCWD
628634

635+
/* Define to 1 if you have the declaration of 'getc_unlocked', and to 0 if you
636+
don't. */
637+
#undef HAVE_DECL_GETC_UNLOCKED
638+
639+
/* Define to 1 if you have the declaration of 'getdelim', and to 0 if you
640+
don't. */
641+
#undef HAVE_DECL_GETDELIM
642+
629643
/* Define to 1 if you have the declaration of 'getdtablesize', and to 0 if you
630644
don't. */
631645
#undef HAVE_DECL_GETDTABLESIZE
632646

647+
/* Define to 1 if you have the declaration of 'getline', and to 0 if you
648+
don't. */
649+
#undef HAVE_DECL_GETLINE
650+
633651
/* Define to 1 if you have the declaration of 'getw', and to 0 if you don't.
634652
*/
635653
#undef HAVE_DECL_GETW
@@ -735,6 +753,9 @@
735753
/* Define to 1 if you have the <features.h> header file. */
736754
#undef HAVE_FEATURES_H
737755

756+
/* Define to 1 if you have the 'flockfile' function. */
757+
#undef HAVE_FLOCKFILE
758+
738759
/* Define if the 'free' function is guaranteed to preserve errno. */
739760
#undef HAVE_FREE_POSIX
740761

@@ -744,16 +765,25 @@
744765
/* Define to 1 if the system has the ftello function. */
745766
#undef HAVE_FTELLO
746767

768+
/* Define to 1 if you have the 'funlockfile' function. */
769+
#undef HAVE_FUNLOCKFILE
770+
747771
/* Define to 1 if getcwd works, but with shorter paths than is generally
748772
tested with the replacement. */
749773
#undef HAVE_GETCWD_SHORTER
750774

775+
/* Define to 1 if you have the `getdelim' function. */
776+
#undef HAVE_GETDELIM
777+
751778
/* Define to 1 if you have the 'getdtablesize' function. */
752779
#undef HAVE_GETDTABLESIZE
753780

754781
/* Define to 1 if you have the 'getexecname' function. */
755782
#undef HAVE_GETEXECNAME
756783

784+
/* Define to 1 if you have the `getline' function. */
785+
#undef HAVE_GETLINE
786+
757787
/* Define to 1 if you have the <getopt.h> header file. */
758788
#undef HAVE_GETOPT_H
759789

0 commit comments

Comments
 (0)