diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-05-01 18:00:27 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-05-04 13:33:32 -0400 |
commit | c17253b97437c8dbc778cb0f16aef46693855bf0 (patch) | |
tree | 1195d4249388f791b88670e36268f1791e0c80c9 /gnulib/import/Makefile.am | |
parent | 858c8f2c1b900258c44cebe2798ca0271100a33d (diff) | |
download | gdb-c17253b97437c8dbc778cb0f16aef46693855bf0.zip gdb-c17253b97437c8dbc778cb0f16aef46693855bf0.tar.gz gdb-c17253b97437c8dbc778cb0f16aef46693855bf0.tar.bz2 |
gnulib: import getline
We use getline in sim today which breaks on older systems that are
not compliant with the latest POSIX standard. For example, mingw64
for Windows omits getline so we fail to build there.
Diffstat (limited to 'gnulib/import/Makefile.am')
-rw-r--r-- | gnulib/import/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnulib/import/Makefile.am b/gnulib/import/Makefile.am index a79d6e1..83aff17 100644 --- a/gnulib/import/Makefile.am +++ b/gnulib/import/Makefile.am @@ -42,6 +42,7 @@ # fnmatch-gnu \ # frexpl \ # getcwd \ +# getline \ # gettimeofday \ # gitlog-to-changelog \ # glob \ @@ -691,6 +692,15 @@ EXTRA_libgnu_a_SOURCES += getcwd-lgpl.c ## end gnulib module getcwd-lgpl +## begin gnulib module getdelim + + +EXTRA_DIST += getdelim.c + +EXTRA_libgnu_a_SOURCES += getdelim.c + +## end gnulib module getdelim + ## begin gnulib module getdtablesize @@ -700,6 +710,15 @@ EXTRA_libgnu_a_SOURCES += getdtablesize.c ## end gnulib module getdtablesize +## begin gnulib module getline + + +EXTRA_DIST += getline.c + +EXTRA_libgnu_a_SOURCES += getline.c + +## end gnulib module getline + ## begin gnulib module getlogin_r |