binutils-gdb/gdb/gnulib/import
Sergio Durigan Junior 6ec2e0f5bd Import "glob" and "getcwd" modules from gnulib
These two modules are necessary because of the rework that will be
done in the "change directory" logic on GDB/gdbserver in the next
commits.

First, we will get rid of the "gdb_dirbuf" global variable and instead
rely on the fact that "getcwd (NULL, 0)", which is a GNU extension,
returns a heap-allocated string with the necessary bytes to hold the
full path.  This is a good practice not only because globals are not
ideal but also because there is no good way to know beforehand the
size of the full pathname allowed in the filesystem ("PATH_MAX" is not
portable and does not reflect all the possible filesystems out there).

We will also have a way to "cd" to a directory also on gdbserver, but
in order to do that uniformly, there must be a way to do tilde
expansion on directories provided by the user.  Currently, GDB uses
"tilde_expand" from readline to do that, but gdbserver doesn't link
against readline and therefore cannot use this function.  The solution
is to use "glob" instead, which can perform tilde expansion as a GNU
extension.  Therefore, we need gnulib's version of "glob".

A special note is necessary for gdb/ser-tcp.c.  It defines "close" as
"closesocket" on Win32 targets.  If we leave the code as is, this
would conflict with gnulib's definition of "close".  Therefore, in
order to keep the same code path from before this import, I decided to
"#undef close" first, and then let the original (re)definition of it
take place.

gdb/ChangeLog:
2017-09-22  Sergio Durigan Junior  <sergiodj@redhat.com>

	* gnulib/aclocal.m4: Regenerate.
	* gnulib/config.in: Regenerate.
	* gnulib/configure: Regenerate.
	* gnulib/import/Makefile.am: Regenerate.
	* gnulib/import/Makefile.in: Regenerate.
	* gnulib/import/assure.h: New file.
	* gnulib/import/at-func.c: Likewise
	* gnulib/import/chdir-long.c: New file.
	* gnulib/import/chdir-long.h: New file.
	* gnulib/import/cloexec.c: New file.
	* gnulib/import/cloexec.h: New file.
	* gnulib/import/close.c: New file.
	* gnulib/import/closedir.c: New file.
	* gnulib/import/dirent-private.h: New file.
	* gnulib/import/dup-safer.c: New file.
	* gnulib/import/dup.c: New file.
	* gnulib/import/dup2.c: New file.
	* gnulib/import/error.c: New file.
	* gnulib/import/error.h: New file.
	* gnulib/import/exitfail.c: New file.
	* gnulib/import/exitfail.h: New file.
	* gnulib/import/fchdir.c: New file.
	* gnulib/import/fcntl.c: New file.
	* gnulib/import/fcntl.in.h: New file.
	* gnulib/import/fd-hook.c: New file.
	* gnulib/import/fd-hook.h: New file.
	* gnulib/import/fd-safer.c: New file.
	* gnulib/import/fdopendir.c: New file.
	* gnulib/import/filename.h: New file.
	* gnulib/import/filenamecat-lgpl.c: New file.
	* gnulib/import/filenamecat.h: New file.
	* gnulib/import/fstat.c: New file.
	* gnulib/import/fstatat.c: New file.
	* gnulib/import/getcwd-lgpl.c: New file.
	* gnulib/import/getcwd.c: New file.
	* gnulib/import/getdtablesize.c: New file.
	* gnulib/import/getlogin_r.c: New file.
	* gnulib/import/getprogname.c: New file.
	* gnulib/import/getprogname.h: New file.
	* gnulib/import/gettext.h: New file.
	* gnulib/import/glob-libc.h: New file.
	* gnulib/import/glob.c: New file.
	* gnulib/import/glob.in.h: New file.
	* gnulib/import/intprops.h: New file.
	* gnulib/import/m4/chdir-long.m4: New file.
	* gnulib/import/m4/close.m4: New file.
	* gnulib/import/m4/closedir.m4: New file.
	* gnulib/import/m4/d-ino.m4: New file.
	* gnulib/import/m4/d-type.m4: New file.
	* gnulib/import/m4/dup.m4: New file.
	* gnulib/import/m4/dup2.m4: New file.
	* gnulib/import/m4/error.m4: New file.
	* gnulib/import/m4/fchdir.m4: New file.
	* gnulib/import/m4/fcntl.m4: New file.
	* gnulib/import/m4/fcntl_h.m4: New file.
	* gnulib/import/m4/fdopendir.m4: New file.
	* gnulib/import/m4/filenamecat.m4: New file.
	* gnulib/import/m4/fstat.m4: New file.
	* gnulib/import/m4/fstatat.m4: New file.
	* gnulib/import/m4/getcwd-abort-bug.m4: New file.
	* gnulib/import/m4/getcwd-path-max.m4: New file.
	* gnulib/import/m4/getcwd.m4: New file.
	* gnulib/import/m4/getdtablesize.m4: New file.
	* gnulib/import/m4/getlogin_r.m4: New file.
	* gnulib/import/m4/getprogname.m4: New file.
	* gnulib/import/m4/glob.m4: New file.
	* gnulib/import/m4/gnulib-cache.m4: Regenerate.
	* gnulib/import/m4/gnulib-comp.m4: Regenerate.
	* gnulib/import/m4/mempcpy.m4: New file.
	* gnulib/import/m4/memrchr.m4: New file.
	* gnulib/import/m4/mode_t.m4: New file.
	* gnulib/import/m4/msvc-inval.m4: New file.
	* gnulib/import/m4/msvc-nothrow.m4: New file.
	* gnulib/import/m4/open.m4: New file.
	* gnulib/import/m4/openat.m4: New file.
	* gnulib/import/m4/opendir.m4: New file.
	* gnulib/import/m4/readdir.m4: New file.
	* gnulib/import/m4/realloc.m4: New file.
	* gnulib/import/m4/rewinddir.m4: New file.
	* gnulib/import/m4/save-cwd.m4: New file.
	* gnulib/import/m4/strdup.m4: New file.
	* gnulib/import/m4/strerror.m4: New file.
	* gnulib/import/m4/unistd-safer.m4: New file.
	* gnulib/import/mempcpy.c: New file.
	* gnulib/import/memrchr.c: New file.
	* gnulib/import/msvc-inval.c: New file.
	* gnulib/import/msvc-inval.h: New file.
	* gnulib/import/msvc-nothrow.c: New file.
	* gnulib/import/msvc-nothrow.h: New file.
	* gnulib/import/open.c: New file.
	* gnulib/import/openat-die.c: New file.
	* gnulib/import/openat-priv.h: New file.
	* gnulib/import/openat-proc.c: New file.
	* gnulib/import/openat.c: New file.
	* gnulib/import/openat.h: New file.
	* gnulib/import/opendir.c: New file.
	* gnulib/import/pipe-safer.c: New file.
	* gnulib/import/readdir.c: New file.
	* gnulib/import/realloc.c: New file.
	* gnulib/import/rewinddir.c: New file.
	* gnulib/import/save-cwd.c: New file.
	* gnulib/import/save-cwd.h: New file.
	* gnulib/import/strdup.c: New file.
	* gnulib/import/strerror-override.c: New file.
	* gnulib/import/strerror-override.h: New file.
	* gnulib/import/strerror.c: New file.
	* gnulib/import/unistd--.h: New file.
	* gnulib/import/unistd-safer.h: New file.
	* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
	"getcwd" and "glob".
	* ser-tcp.c: Undefine "close" before redefining it.
2017-09-22 13:28:03 -04:00
..
extra gdb: update gnulib to pull in C++ namespace support fixes 2016-11-15 23:22:37 +00:00
m4 Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
Makefile.am Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
Makefile.in Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
alloca.c
alloca.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
assure.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
at-func.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
basename-lgpl.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
canonicalize-lgpl.c gdb: update gnulib to pull in C++ namespace support fixes 2016-11-15 23:22:37 +00:00
chdir-long.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
chdir-long.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
cloexec.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
cloexec.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
close.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
closedir.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
config.charset Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
dirent-private.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
dirent.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
dirfd.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
dirname-lgpl.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
dirname.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
dosname.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
dup-safer.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
dup.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
dup2.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
errno.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
error.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
error.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
exitfail.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
exitfail.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
fchdir.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
fcntl.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
fcntl.in.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
fd-hook.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
fd-hook.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
fd-safer.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
fdopendir.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
filename.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
filenamecat-lgpl.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
filenamecat.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
flexmember.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
float+.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
float.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
float.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
fnmatch.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
fnmatch.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
fnmatch_loop.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
fpucw.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
frexp.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
frexpl.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
fstat.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
fstatat.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
getcwd-lgpl.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
getcwd.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
getdtablesize.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
getlogin_r.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
getprogname.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
getprogname.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
gettext.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
gettimeofday.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
glob-libc.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
glob.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
glob.in.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
hard-locale.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
hard-locale.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
intprops.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
inttypes.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
isnan.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
isnand-nolibm.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
isnand.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
isnanl-nolibm.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
isnanl.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
itold.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
limits.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
localcharset.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
localcharset.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
lstat.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
malloc.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
malloca.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
malloca.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
malloca.valgrind Import canonicalize-lgpl 2014-11-28 18:38:10 +08:00
math.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
math.in.h gdb: update gnulib to pull in C++ namespace support fixes 2016-11-15 23:22:37 +00:00
mbrtowc.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
mbsinit.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
mbsrtowcs-impl.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
mbsrtowcs-state.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
mbsrtowcs.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
memchr.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
memchr.valgrind
memmem.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
mempcpy.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
memrchr.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
msvc-inval.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
msvc-inval.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
msvc-nothrow.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
msvc-nothrow.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
open.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
openat-die.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
openat-priv.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
openat-proc.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
openat.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
openat.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
opendir.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
pathmax.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
pipe-safer.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
rawmemchr.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
rawmemchr.valgrind Import strchrnul from gnulib and use it 2016-01-28 10:28:56 -05:00
readdir.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
readlink.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
realloc.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
ref-add.sin Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
ref-del.sin Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
rename.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
rewinddir.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
rmdir.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
same-inode.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
save-cwd.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
save-cwd.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
setenv.c Import setenv and unsetenv from gnulib 2017-07-10 13:23:12 +03:00
signal.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
stat.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
stdbool.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
stddef.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
stdint.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
stdio.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
stdlib.in.h gdb: update gnulib to pull in C++ namespace support fixes 2016-11-15 23:22:37 +00:00
str-two-way.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
strchrnul.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
strchrnul.valgrind Import strchrnul from gnulib and use it 2016-01-28 10:28:56 -05:00
strdup.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
streq.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
strerror-override.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
strerror-override.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
strerror.c Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
string.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
stripslash.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
strnlen1.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
strnlen1.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
strstr.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
strtok_r.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
sys_stat.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
sys_time.in.h gdb: update gnulib to pull in C++ namespace support fixes 2016-11-15 23:22:37 +00:00
sys_types.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
time.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
unistd--.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
unistd-safer.h Import "glob" and "getcwd" modules from gnulib 2017-09-22 13:28:03 -04:00
unistd.c Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
unistd.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
unsetenv.c Import setenv and unsetenv from gnulib 2017-07-10 13:23:12 +03:00
verify.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
wchar.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00
wctype-h.c Update gnulib to current HEAD. 2012-12-18 06:00:55 +00:00
wctype.in.h Update gnulib to current upstream master 2016-10-18 17:18:29 +01:00