2019-11-15 08:17:59 +08:00
|
|
|
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
|
|
|
# @configure_input@
|
|
|
|
|
gdbsupport: rename source files to .cc
This patch renames the .c source files in gdbsupport to .cc.
In the gdb directory, there is an argument against renaming the source
files, which is that it makes using some git commands more difficult to
do archeology. Some commands have some kind of "follow" option that
makes git try to follow renames, but it doesn't work in all situations.
Given that we have just moved the gdbsupport directory, that argument
doesn't hold for source files in that directory. I therefore suggest
renaming them to .cc, so that they are automatically recognized as C++
by various tools and editors.
The original motivation behind this is that when building gdbsupport
with clang, I get:
CC agent.o
clang: error: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated [-Werror,-Wdeprecated]
In the gdb/ directory, we make clang happy by passing "-x c++". We
could do this in gdbsupport too, but I think that renaming the files is
a better long-term solution.
gdbserver still does its own build of gdbsupport, so a few changes in
its Makefile are necessary.
gdbsupport/ChangeLog:
* Makefile.am: Rename source files from .c to .cc.
(CC, CFLAGS): Don't override.
(AM_CFLAGS): Rename to ...
(AM_CXXFLAGS): ... this.
* Makefile.in: Re-generate.
* %.c: Rename to %.cc.
gdbserver/ChangeLog:
* Makefile.in: Rename gdbsupport source files from .c to .cc.
2020-02-14 05:27:02 +08:00
|
|
|
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
2019-11-15 08:17:59 +08:00
|
|
|
|
|
|
|
# This Makefile.in is free software; the Free Software Foundation
|
|
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
|
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
# PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
@SET_MAKE@
|
|
|
|
|
2022-04-18 23:44:18 +08:00
|
|
|
# Copyright (C) 2019-2022 Free Software Foundation, Inc.
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
|
|
|
# This file is part of GDB.
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-11-15 08:17:59 +08:00
|
|
|
VPATH = @srcdir@
|
|
|
|
am__is_gnu_make = { \
|
|
|
|
if test -z '$(MAKELEVEL)'; then \
|
|
|
|
false; \
|
|
|
|
elif test -n '$(MAKE_HOST)'; then \
|
|
|
|
true; \
|
|
|
|
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
|
|
|
true; \
|
|
|
|
else \
|
|
|
|
false; \
|
|
|
|
fi; \
|
|
|
|
}
|
|
|
|
am__make_running_with_option = \
|
|
|
|
case $${target_option-} in \
|
|
|
|
?) ;; \
|
|
|
|
*) echo "am__make_running_with_option: internal error: invalid" \
|
|
|
|
"target option '$${target_option-}' specified" >&2; \
|
|
|
|
exit 1;; \
|
|
|
|
esac; \
|
|
|
|
has_opt=no; \
|
|
|
|
sane_makeflags=$$MAKEFLAGS; \
|
|
|
|
if $(am__is_gnu_make); then \
|
|
|
|
sane_makeflags=$$MFLAGS; \
|
|
|
|
else \
|
|
|
|
case $$MAKEFLAGS in \
|
|
|
|
*\\[\ \ ]*) \
|
|
|
|
bs=\\; \
|
|
|
|
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
|
|
|
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
|
|
|
esac; \
|
|
|
|
fi; \
|
|
|
|
skip_next=no; \
|
|
|
|
strip_trailopt () \
|
|
|
|
{ \
|
|
|
|
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
|
|
|
}; \
|
|
|
|
for flg in $$sane_makeflags; do \
|
|
|
|
test $$skip_next = yes && { skip_next=no; continue; }; \
|
|
|
|
case $$flg in \
|
|
|
|
*=*|--*) continue;; \
|
|
|
|
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
|
|
|
-*I?*) strip_trailopt 'I';; \
|
|
|
|
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
|
|
|
-*O?*) strip_trailopt 'O';; \
|
|
|
|
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
|
|
|
-*l?*) strip_trailopt 'l';; \
|
|
|
|
-[dEDm]) skip_next=yes;; \
|
|
|
|
-[JT]) skip_next=yes;; \
|
|
|
|
esac; \
|
|
|
|
case $$flg in \
|
|
|
|
*$$target_option*) has_opt=yes; break;; \
|
|
|
|
esac; \
|
|
|
|
done; \
|
|
|
|
test $$has_opt = yes
|
|
|
|
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
|
|
|
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
|
|
pkgincludedir = $(includedir)/@PACKAGE@
|
|
|
|
pkglibdir = $(libdir)/@PACKAGE@
|
2019-11-17 13:37:06 +08:00
|
|
|
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
2019-11-15 08:17:59 +08:00
|
|
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
|
|
install_sh_DATA = $(install_sh) -c -m 644
|
|
|
|
install_sh_PROGRAM = $(install_sh) -c
|
|
|
|
install_sh_SCRIPT = $(install_sh) -c
|
|
|
|
INSTALL_HEADER = $(INSTALL_DATA)
|
|
|
|
transform = $(program_transform_name)
|
|
|
|
NORMAL_INSTALL = :
|
|
|
|
PRE_INSTALL = :
|
|
|
|
POST_INSTALL = :
|
|
|
|
NORMAL_UNINSTALL = :
|
|
|
|
PRE_UNINSTALL = :
|
|
|
|
POST_UNINSTALL = :
|
|
|
|
build_triplet = @build@
|
|
|
|
host_triplet = @host@
|
|
|
|
target_triplet = @target@
|
|
|
|
subdir = .
|
|
|
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
|
|
am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \
|
|
|
|
$(top_srcdir)/../config/largefile.m4 \
|
|
|
|
$(top_srcdir)/../config/lead-dot.m4 \
|
|
|
|
$(top_srcdir)/../config/override.m4 \
|
|
|
|
$(top_srcdir)/../config/plugins.m4 \
|
|
|
|
$(top_srcdir)/import/m4/00gnulib.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/__inline.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/absolute-header.m4 \
|
|
|
|
$(top_srcdir)/import/m4/alloca.m4 \
|
|
|
|
$(top_srcdir)/import/m4/arpa_inet_h.m4 \
|
2020-08-27 06:37:28 +08:00
|
|
|
$(top_srcdir)/import/m4/btowc.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/builtin-expect.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/canonicalize.m4 \
|
|
|
|
$(top_srcdir)/import/m4/chdir-long.m4 \
|
2021-05-30 00:10:38 +08:00
|
|
|
$(top_srcdir)/import/m4/chown.m4 \
|
2021-01-23 03:55:45 +08:00
|
|
|
$(top_srcdir)/import/m4/clock_time.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/close.m4 \
|
|
|
|
$(top_srcdir)/import/m4/closedir.m4 \
|
|
|
|
$(top_srcdir)/import/m4/codeset.m4 \
|
2022-04-18 23:44:18 +08:00
|
|
|
$(top_srcdir)/import/m4/ctype_h.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/d-ino.m4 \
|
|
|
|
$(top_srcdir)/import/m4/d-type.m4 \
|
|
|
|
$(top_srcdir)/import/m4/dirent_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/dirfd.m4 \
|
|
|
|
$(top_srcdir)/import/m4/double-slash-root.m4 \
|
|
|
|
$(top_srcdir)/import/m4/dup.m4 $(top_srcdir)/import/m4/dup2.m4 \
|
|
|
|
$(top_srcdir)/import/m4/eealloc.m4 \
|
|
|
|
$(top_srcdir)/import/m4/environ.m4 \
|
|
|
|
$(top_srcdir)/import/m4/errno_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/error.m4 \
|
|
|
|
$(top_srcdir)/import/m4/exponentd.m4 \
|
|
|
|
$(top_srcdir)/import/m4/exponentl.m4 \
|
|
|
|
$(top_srcdir)/import/m4/extensions.m4 \
|
|
|
|
$(top_srcdir)/import/m4/extern-inline.m4 \
|
|
|
|
$(top_srcdir)/import/m4/fchdir.m4 \
|
|
|
|
$(top_srcdir)/import/m4/fcntl-o.m4 \
|
|
|
|
$(top_srcdir)/import/m4/fcntl.m4 \
|
|
|
|
$(top_srcdir)/import/m4/fcntl_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/fdopendir.m4 \
|
2021-05-19 10:11:41 +08:00
|
|
|
$(top_srcdir)/import/m4/ffs.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/filenamecat.m4 \
|
|
|
|
$(top_srcdir)/import/m4/flexmember.m4 \
|
|
|
|
$(top_srcdir)/import/m4/float_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/fnmatch.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/fnmatch_h.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/fpieee.m4 \
|
2021-01-23 03:55:45 +08:00
|
|
|
$(top_srcdir)/import/m4/free.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/frexp.m4 \
|
|
|
|
$(top_srcdir)/import/m4/frexpl.m4 \
|
|
|
|
$(top_srcdir)/import/m4/fstat.m4 \
|
|
|
|
$(top_srcdir)/import/m4/fstatat.m4 \
|
|
|
|
$(top_srcdir)/import/m4/getcwd-abort-bug.m4 \
|
|
|
|
$(top_srcdir)/import/m4/getcwd-path-max.m4 \
|
|
|
|
$(top_srcdir)/import/m4/getcwd.m4 \
|
2021-05-02 06:00:27 +08:00
|
|
|
$(top_srcdir)/import/m4/getdelim.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/getdtablesize.m4 \
|
2021-05-02 06:00:27 +08:00
|
|
|
$(top_srcdir)/import/m4/getline.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/getlogin.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/getlogin_r.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/getpagesize.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/getprogname.m4 \
|
2020-08-27 06:37:28 +08:00
|
|
|
$(top_srcdir)/import/m4/getrandom.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/gettimeofday.m4 \
|
|
|
|
$(top_srcdir)/import/m4/glob.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/glob_h.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/gnulib-common.m4 \
|
|
|
|
$(top_srcdir)/import/m4/gnulib-comp.m4 \
|
|
|
|
$(top_srcdir)/import/m4/include_next.m4 \
|
|
|
|
$(top_srcdir)/import/m4/inet_ntop.m4 \
|
|
|
|
$(top_srcdir)/import/m4/inttypes.m4 \
|
2020-08-27 06:37:28 +08:00
|
|
|
$(top_srcdir)/import/m4/isblank.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/isnand.m4 \
|
|
|
|
$(top_srcdir)/import/m4/isnanl.m4 \
|
|
|
|
$(top_srcdir)/import/m4/largefile.m4 \
|
|
|
|
$(top_srcdir)/import/m4/limits-h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/localcharset.m4 \
|
|
|
|
$(top_srcdir)/import/m4/locale-fr.m4 \
|
|
|
|
$(top_srcdir)/import/m4/locale-ja.m4 \
|
|
|
|
$(top_srcdir)/import/m4/locale-zh.m4 \
|
2020-02-23 09:31:54 +08:00
|
|
|
$(top_srcdir)/import/m4/locale_h.m4 \
|
2019-11-07 02:49:52 +08:00
|
|
|
$(top_srcdir)/import/m4/lock.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/lstat.m4 \
|
|
|
|
$(top_srcdir)/import/m4/malloc.m4 \
|
|
|
|
$(top_srcdir)/import/m4/malloca.m4 \
|
|
|
|
$(top_srcdir)/import/m4/math_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mbrtowc.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mbsinit.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mbsrtowcs.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mbstate_t.m4 \
|
2020-08-27 06:37:28 +08:00
|
|
|
$(top_srcdir)/import/m4/mbtowc.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/memchr.m4 \
|
|
|
|
$(top_srcdir)/import/m4/memmem.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mempcpy.m4 \
|
|
|
|
$(top_srcdir)/import/m4/memrchr.m4 \
|
2020-08-27 06:37:28 +08:00
|
|
|
$(top_srcdir)/import/m4/minmax.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/mkdir.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mkdtemp.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mkostemp.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mmap-anon.m4 \
|
|
|
|
$(top_srcdir)/import/m4/mode_t.m4 \
|
|
|
|
$(top_srcdir)/import/m4/msvc-inval.m4 \
|
|
|
|
$(top_srcdir)/import/m4/msvc-nothrow.m4 \
|
|
|
|
$(top_srcdir)/import/m4/multiarch.m4 \
|
2021-05-30 00:48:49 +08:00
|
|
|
$(top_srcdir)/import/m4/netdb_h.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/netinet_in_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/nocrash.m4 \
|
|
|
|
$(top_srcdir)/import/m4/off_t.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/open-cloexec.m4 \
|
|
|
|
$(top_srcdir)/import/m4/open-slash.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/open.m4 \
|
|
|
|
$(top_srcdir)/import/m4/openat.m4 \
|
|
|
|
$(top_srcdir)/import/m4/opendir.m4 \
|
|
|
|
$(top_srcdir)/import/m4/pathmax.m4 \
|
2021-01-23 03:55:45 +08:00
|
|
|
$(top_srcdir)/import/m4/pid_t.m4 \
|
|
|
|
$(top_srcdir)/import/m4/pipe.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/pthread_rwlock_rdlock.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/rawmemchr.m4 \
|
|
|
|
$(top_srcdir)/import/m4/readdir.m4 \
|
|
|
|
$(top_srcdir)/import/m4/readlink.m4 \
|
|
|
|
$(top_srcdir)/import/m4/realloc.m4 \
|
|
|
|
$(top_srcdir)/import/m4/rename.m4 \
|
|
|
|
$(top_srcdir)/import/m4/rewinddir.m4 \
|
|
|
|
$(top_srcdir)/import/m4/rmdir.m4 \
|
|
|
|
$(top_srcdir)/import/m4/save-cwd.m4 \
|
2021-05-30 00:55:39 +08:00
|
|
|
$(top_srcdir)/import/m4/select.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/setenv.m4 \
|
2020-02-23 09:31:54 +08:00
|
|
|
$(top_srcdir)/import/m4/setlocale_null.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/signal_h.m4 \
|
2021-05-30 00:55:39 +08:00
|
|
|
$(top_srcdir)/import/m4/socketlib.m4 \
|
|
|
|
$(top_srcdir)/import/m4/sockets.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/socklen.m4 \
|
|
|
|
$(top_srcdir)/import/m4/sockpfaf.m4 \
|
|
|
|
$(top_srcdir)/import/m4/ssize_t.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/stat-time.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/stat.m4 \
|
2019-11-17 13:37:06 +08:00
|
|
|
$(top_srcdir)/import/m4/std-gnu11.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/stdalign.m4 \
|
|
|
|
$(top_srcdir)/import/m4/stdbool.m4 \
|
|
|
|
$(top_srcdir)/import/m4/stddef_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/stdint.m4 \
|
|
|
|
$(top_srcdir)/import/m4/stdio_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/stdlib_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/strchrnul.m4 \
|
|
|
|
$(top_srcdir)/import/m4/strdup.m4 \
|
|
|
|
$(top_srcdir)/import/m4/strerror.m4 \
|
2019-11-07 02:49:52 +08:00
|
|
|
$(top_srcdir)/import/m4/strerror_r.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/string_h.m4 \
|
2021-05-19 10:11:41 +08:00
|
|
|
$(top_srcdir)/import/m4/strings_h.m4 \
|
2020-08-27 06:37:28 +08:00
|
|
|
$(top_srcdir)/import/m4/strnlen.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/strstr.m4 \
|
|
|
|
$(top_srcdir)/import/m4/strtok_r.m4 \
|
2020-08-27 06:37:28 +08:00
|
|
|
$(top_srcdir)/import/m4/sys_random_h.m4 \
|
2021-05-30 00:55:39 +08:00
|
|
|
$(top_srcdir)/import/m4/sys_select_h.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/sys_socket_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/sys_stat_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/sys_time_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/sys_types_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/sys_uio_h.m4 \
|
2021-05-30 02:14:59 +08:00
|
|
|
$(top_srcdir)/import/m4/sys_wait_h.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/tempname.m4 \
|
2019-11-07 02:49:52 +08:00
|
|
|
$(top_srcdir)/import/m4/threadlib.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/time_h.m4 \
|
2019-11-09 01:25:17 +08:00
|
|
|
$(top_srcdir)/import/m4/time_r.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/unistd-safer.m4 \
|
|
|
|
$(top_srcdir)/import/m4/unistd_h.m4 \
|
2022-04-18 23:44:18 +08:00
|
|
|
$(top_srcdir)/import/m4/vararrays.m4 \
|
2020-02-23 09:31:54 +08:00
|
|
|
$(top_srcdir)/import/m4/visibility.m4 \
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/import/m4/warn-on-use.m4 \
|
|
|
|
$(top_srcdir)/import/m4/wchar_h.m4 \
|
|
|
|
$(top_srcdir)/import/m4/wchar_t.m4 \
|
|
|
|
$(top_srcdir)/import/m4/wctype_h.m4 \
|
2020-02-23 09:31:54 +08:00
|
|
|
$(top_srcdir)/import/m4/wint_t.m4 \
|
2020-08-27 06:37:28 +08:00
|
|
|
$(top_srcdir)/import/m4/wmemchr.m4 \
|
|
|
|
$(top_srcdir)/import/m4/wmempcpy.m4 \
|
2022-04-18 23:44:18 +08:00
|
|
|
$(top_srcdir)/import/m4/year2038.m4 \
|
2020-02-23 09:31:54 +08:00
|
|
|
$(top_srcdir)/import/m4/zzgnulib.m4 $(top_srcdir)/configure.ac
|
2019-11-15 08:17:59 +08:00
|
|
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
|
|
$(ACLOCAL_M4)
|
|
|
|
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
2019-11-16 04:48:27 +08:00
|
|
|
$(am__configure_deps)
|
2019-11-15 08:17:59 +08:00
|
|
|
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
|
|
|
configure.lineno config.status.lineno
|
|
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
|
|
|
|
CONFIG_HEADER = config.h
|
gnulib: Ensure all libraries are used when building gdb/gdbserver
An issue was reported here related to building GDB on MinGW:
https://sourceware.org/pipermail/gdb/2020-September/048927.html
It was suggested here:
https://sourceware.org/pipermail/gdb/2020-September/048931.html
that the solution might be to make use of $(LIB_GETRANDOM), a variable
defined in the gnulib makefile, when linking GDB.
In fact I think the issue is bigger than just LIB_GETRANDOM. When
using the script binutils-gdb/gnulib/update-gnulib.sh to reimport
gnulib there is a lot of output from gnulib's gnulib-tool. Part of
that output is this:
You may need to use the following makefile variables when linking.
Use them in <program>_LDADD when linking a program, or
in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library.
$(FREXPL_LIBM)
$(FREXP_LIBM)
$(INET_NTOP_LIB)
$(LIBTHREAD)
$(LIB_GETLOGIN)
$(LIB_GETRANDOM)
$(LIB_HARD_LOCALE)
$(LIB_MBRTOWC)
$(LIB_SETLOCALE_NULL)
$(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise
What I think this is telling us is that we should be including the
value of all these variables on the link line for gdb and gdbserver.
The problem though is that these variables are define in gnulib's
makefile, but are not (necessarily) defined in GDB's makefile.
One solution would be to recreate the checks that gnulib performs in
order to recreate these variables in both gdb's and gdbserver's
makefile. Though this shouldn't be too hard, most (if not all) of
these checks are in the form macros defined in m4 files in the gnulib
tree, so we could just reference these as needed. However, in this
commit I propose a different solution.
Currently, in the top level makefile, we give gdb and gdbserver a
dependency on gnulib. Once gnulib has finished building gdb and
gdbserver can start, these projects then have a hard coded (relative)
path to the compiled gnulib library in their makefiles.
In this commit I extend the gnulib configure script to install a new
makefile fragment in the gnulib build directory. This new file will
have the usual variable substitutions applied to it, and so can
include the complete list (see above) of all the extra libraries that
are needed when linking against gnulib.
In fact the new makefile fragment defines three variables, these are:
LIBGNU: The path to the archive containing gnulib. Can be used as a
dependency as when this file changes gdb/gdbserver should be
relinked.
LIBGNU_EXTRA_LIBS: A list of linker -l.... flags that should be
included in the link line of gdb/gdbserver. These are
libraries that $(LIBGNU) depends on. This list is taken from
the output of gnulib-tool, which is run by our
gnulib/update-gnulib.sh script.
INCGNU: A list of -I.... include paths that should be passed to the
compiler, these are where the gnulib headers can be found.
Now both gdb and gdbserver can include the makefile fragment and make
use of these variables.
The makefile fragment relies on the variable GNULIB_BUILDDIR being
defined. This is checked for in the fragment, and was already defined
in the makefiles of gdb and gdbserver.
gdb/ChangeLog:
* Makefile.in: Include Makefile.gnulib.inc. Don't define LIBGNU
or INCGNU. Make use of LIBGNU_EXTRA_LIBS when linking.
gdbserver/ChangeLog:
* Makefile.in: Include Makefile.gnulib.inc. Don't define LIBGNU
or INCGNU. Make use of LIBGNU_EXTRA_LIBS when linking.
gnulib/ChangeLog:
* Makefile.gnulib.inc.in: New file.
* Makefile.in: Regenerate.
* configure: Regenerate.
* configure.ac: Install the new file.
2020-10-06 17:09:06 +08:00
|
|
|
CONFIG_CLEAN_FILES = Makefile.gnulib.inc
|
2019-11-15 08:17:59 +08:00
|
|
|
CONFIG_CLEAN_VPATH_FILES =
|
|
|
|
AM_V_P = $(am__v_P_@AM_V@)
|
|
|
|
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
|
|
|
am__v_P_0 = false
|
|
|
|
am__v_P_1 = :
|
|
|
|
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
|
|
|
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
|
|
|
am__v_GEN_0 = @echo " GEN " $@;
|
|
|
|
am__v_GEN_1 =
|
|
|
|
AM_V_at = $(am__v_at_@AM_V@)
|
|
|
|
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|
|
|
am__v_at_0 = @
|
|
|
|
am__v_at_1 =
|
|
|
|
SOURCES =
|
|
|
|
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
|
|
|
ctags-recursive dvi-recursive html-recursive info-recursive \
|
|
|
|
install-data-recursive install-dvi-recursive \
|
|
|
|
install-exec-recursive install-html-recursive \
|
|
|
|
install-info-recursive install-pdf-recursive \
|
|
|
|
install-ps-recursive install-recursive installcheck-recursive \
|
|
|
|
installdirs-recursive pdf-recursive ps-recursive \
|
|
|
|
tags-recursive uninstall-recursive
|
|
|
|
am__can_run_installinfo = \
|
|
|
|
case $$AM_UPDATE_INFO_DIR in \
|
|
|
|
n|no|NO) false;; \
|
|
|
|
*) (install-info --version) >/dev/null 2>&1;; \
|
|
|
|
esac
|
|
|
|
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
|
|
|
distclean-recursive maintainer-clean-recursive
|
|
|
|
am__recursive_targets = \
|
|
|
|
$(RECURSIVE_TARGETS) \
|
|
|
|
$(RECURSIVE_CLEAN_TARGETS) \
|
|
|
|
$(am__extra_recursive_targets)
|
|
|
|
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
2019-11-16 04:48:27 +08:00
|
|
|
cscope
|
2019-11-15 08:17:59 +08:00
|
|
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
|
|
|
$(LISP)config.in
|
|
|
|
# Read a list of newline-separated strings from the standard input,
|
|
|
|
# and print each of them once, without duplicates. Input order is
|
|
|
|
# *not* preserved.
|
|
|
|
am__uniquify_input = $(AWK) '\
|
|
|
|
BEGIN { nonempty = 0; } \
|
|
|
|
{ items[$$0] = 1; nonempty = 1; } \
|
|
|
|
END { if (nonempty) { for (i in items) print i; }; } \
|
|
|
|
'
|
|
|
|
# Make sure the list of sources is unique. This is necessary because,
|
|
|
|
# e.g., the same source file might be shared among _SOURCES variables
|
|
|
|
# for different programs/libraries.
|
|
|
|
am__define_uniq_tagged_files = \
|
|
|
|
list='$(am__tagged_files)'; \
|
|
|
|
unique=`for i in $$list; do \
|
|
|
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
|
|
done | $(am__uniquify_input)`
|
|
|
|
ETAGS = etags
|
|
|
|
CTAGS = ctags
|
|
|
|
CSCOPE = cscope
|
|
|
|
DIST_SUBDIRS = $(SUBDIRS)
|
|
|
|
ACLOCAL = @ACLOCAL@
|
|
|
|
ALLOCA = @ALLOCA@
|
|
|
|
ALLOCA_H = @ALLOCA_H@
|
|
|
|
AMTAR = @AMTAR@
|
|
|
|
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
|
|
|
APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@
|
|
|
|
AR = @AR@
|
|
|
|
ARFLAGS = @ARFLAGS@
|
|
|
|
AUTOCONF = @AUTOCONF@
|
|
|
|
AUTOHEADER = @AUTOHEADER@
|
|
|
|
AUTOMAKE = @AUTOMAKE@
|
|
|
|
AWK = @AWK@
|
|
|
|
BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
|
|
|
|
BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
|
|
|
|
BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
|
|
|
|
BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
|
|
|
|
BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
|
|
|
|
CC = @CC@
|
|
|
|
CCDEPMODE = @CCDEPMODE@
|
|
|
|
CFLAGS = @CFLAGS@
|
2020-02-23 09:31:54 +08:00
|
|
|
CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
|
2019-11-15 08:17:59 +08:00
|
|
|
CPP = @CPP@
|
|
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
CYGPATH_W = @CYGPATH_W@
|
|
|
|
DEFS = @DEFS@
|
|
|
|
DEPDIR = @DEPDIR@
|
|
|
|
ECHO_C = @ECHO_C@
|
|
|
|
ECHO_N = @ECHO_N@
|
|
|
|
ECHO_T = @ECHO_T@
|
|
|
|
EGREP = @EGREP@
|
|
|
|
EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@
|
|
|
|
EMULTIHOP_VALUE = @EMULTIHOP_VALUE@
|
|
|
|
ENOLINK_HIDDEN = @ENOLINK_HIDDEN@
|
|
|
|
ENOLINK_VALUE = @ENOLINK_VALUE@
|
|
|
|
EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@
|
|
|
|
EOVERFLOW_VALUE = @EOVERFLOW_VALUE@
|
|
|
|
ERRNO_H = @ERRNO_H@
|
|
|
|
EXEEXT = @EXEEXT@
|
|
|
|
FLOAT_H = @FLOAT_H@
|
|
|
|
FNMATCH_H = @FNMATCH_H@
|
|
|
|
FREXPL_LIBM = @FREXPL_LIBM@
|
|
|
|
FREXP_LIBM = @FREXP_LIBM@
|
|
|
|
GLOB_H = @GLOB_H@
|
2022-04-18 23:44:18 +08:00
|
|
|
GL_CFLAG_ALLOW_WARNINGS = @GL_CFLAG_ALLOW_WARNINGS@
|
|
|
|
GL_CFLAG_GNULIB_WARNINGS = @GL_CFLAG_GNULIB_WARNINGS@
|
|
|
|
GL_GNULIB_ACCEPT = @GL_GNULIB_ACCEPT@
|
|
|
|
GL_GNULIB_ACCEPT4 = @GL_GNULIB_ACCEPT4@
|
|
|
|
GL_GNULIB_ACCESS = @GL_GNULIB_ACCESS@
|
|
|
|
GL_GNULIB_ACOSF = @GL_GNULIB_ACOSF@
|
|
|
|
GL_GNULIB_ACOSL = @GL_GNULIB_ACOSL@
|
|
|
|
GL_GNULIB_ALIGNED_ALLOC = @GL_GNULIB_ALIGNED_ALLOC@
|
|
|
|
GL_GNULIB_ALPHASORT = @GL_GNULIB_ALPHASORT@
|
|
|
|
GL_GNULIB_ASINF = @GL_GNULIB_ASINF@
|
|
|
|
GL_GNULIB_ASINL = @GL_GNULIB_ASINL@
|
|
|
|
GL_GNULIB_ATAN2F = @GL_GNULIB_ATAN2F@
|
|
|
|
GL_GNULIB_ATANF = @GL_GNULIB_ATANF@
|
|
|
|
GL_GNULIB_ATANL = @GL_GNULIB_ATANL@
|
|
|
|
GL_GNULIB_ATOLL = @GL_GNULIB_ATOLL@
|
|
|
|
GL_GNULIB_BIND = @GL_GNULIB_BIND@
|
|
|
|
GL_GNULIB_BTOWC = @GL_GNULIB_BTOWC@
|
|
|
|
GL_GNULIB_CALLOC_GNU = @GL_GNULIB_CALLOC_GNU@
|
|
|
|
GL_GNULIB_CALLOC_POSIX = @GL_GNULIB_CALLOC_POSIX@
|
|
|
|
GL_GNULIB_CANONICALIZE_FILE_NAME = @GL_GNULIB_CANONICALIZE_FILE_NAME@
|
|
|
|
GL_GNULIB_CBRT = @GL_GNULIB_CBRT@
|
|
|
|
GL_GNULIB_CBRTF = @GL_GNULIB_CBRTF@
|
|
|
|
GL_GNULIB_CBRTL = @GL_GNULIB_CBRTL@
|
|
|
|
GL_GNULIB_CEIL = @GL_GNULIB_CEIL@
|
|
|
|
GL_GNULIB_CEILF = @GL_GNULIB_CEILF@
|
|
|
|
GL_GNULIB_CEILL = @GL_GNULIB_CEILL@
|
|
|
|
GL_GNULIB_CHDIR = @GL_GNULIB_CHDIR@
|
|
|
|
GL_GNULIB_CHOWN = @GL_GNULIB_CHOWN@
|
|
|
|
GL_GNULIB_CLOSE = @GL_GNULIB_CLOSE@
|
|
|
|
GL_GNULIB_CLOSEDIR = @GL_GNULIB_CLOSEDIR@
|
|
|
|
GL_GNULIB_CONNECT = @GL_GNULIB_CONNECT@
|
|
|
|
GL_GNULIB_COPYSIGN = @GL_GNULIB_COPYSIGN@
|
|
|
|
GL_GNULIB_COPYSIGNF = @GL_GNULIB_COPYSIGNF@
|
|
|
|
GL_GNULIB_COPYSIGNL = @GL_GNULIB_COPYSIGNL@
|
|
|
|
GL_GNULIB_COPY_FILE_RANGE = @GL_GNULIB_COPY_FILE_RANGE@
|
|
|
|
GL_GNULIB_COSF = @GL_GNULIB_COSF@
|
|
|
|
GL_GNULIB_COSHF = @GL_GNULIB_COSHF@
|
|
|
|
GL_GNULIB_COSL = @GL_GNULIB_COSL@
|
|
|
|
GL_GNULIB_CREAT = @GL_GNULIB_CREAT@
|
|
|
|
GL_GNULIB_CTIME = @GL_GNULIB_CTIME@
|
|
|
|
GL_GNULIB_DIRFD = @GL_GNULIB_DIRFD@
|
|
|
|
GL_GNULIB_DPRINTF = @GL_GNULIB_DPRINTF@
|
|
|
|
GL_GNULIB_DUP = @GL_GNULIB_DUP@
|
|
|
|
GL_GNULIB_DUP2 = @GL_GNULIB_DUP2@
|
|
|
|
GL_GNULIB_DUP3 = @GL_GNULIB_DUP3@
|
|
|
|
GL_GNULIB_DUPLOCALE = @GL_GNULIB_DUPLOCALE@
|
|
|
|
GL_GNULIB_ENVIRON = @GL_GNULIB_ENVIRON@
|
|
|
|
GL_GNULIB_EUIDACCESS = @GL_GNULIB_EUIDACCESS@
|
|
|
|
GL_GNULIB_EXECL = @GL_GNULIB_EXECL@
|
|
|
|
GL_GNULIB_EXECLE = @GL_GNULIB_EXECLE@
|
|
|
|
GL_GNULIB_EXECLP = @GL_GNULIB_EXECLP@
|
|
|
|
GL_GNULIB_EXECV = @GL_GNULIB_EXECV@
|
|
|
|
GL_GNULIB_EXECVE = @GL_GNULIB_EXECVE@
|
|
|
|
GL_GNULIB_EXECVP = @GL_GNULIB_EXECVP@
|
|
|
|
GL_GNULIB_EXECVPE = @GL_GNULIB_EXECVPE@
|
|
|
|
GL_GNULIB_EXP2 = @GL_GNULIB_EXP2@
|
|
|
|
GL_GNULIB_EXP2F = @GL_GNULIB_EXP2F@
|
|
|
|
GL_GNULIB_EXP2L = @GL_GNULIB_EXP2L@
|
|
|
|
GL_GNULIB_EXPF = @GL_GNULIB_EXPF@
|
|
|
|
GL_GNULIB_EXPL = @GL_GNULIB_EXPL@
|
|
|
|
GL_GNULIB_EXPLICIT_BZERO = @GL_GNULIB_EXPLICIT_BZERO@
|
|
|
|
GL_GNULIB_EXPM1 = @GL_GNULIB_EXPM1@
|
|
|
|
GL_GNULIB_EXPM1F = @GL_GNULIB_EXPM1F@
|
|
|
|
GL_GNULIB_EXPM1L = @GL_GNULIB_EXPM1L@
|
|
|
|
GL_GNULIB_FABSF = @GL_GNULIB_FABSF@
|
|
|
|
GL_GNULIB_FABSL = @GL_GNULIB_FABSL@
|
|
|
|
GL_GNULIB_FACCESSAT = @GL_GNULIB_FACCESSAT@
|
|
|
|
GL_GNULIB_FCHDIR = @GL_GNULIB_FCHDIR@
|
|
|
|
GL_GNULIB_FCHMODAT = @GL_GNULIB_FCHMODAT@
|
|
|
|
GL_GNULIB_FCHOWNAT = @GL_GNULIB_FCHOWNAT@
|
|
|
|
GL_GNULIB_FCLOSE = @GL_GNULIB_FCLOSE@
|
|
|
|
GL_GNULIB_FCNTL = @GL_GNULIB_FCNTL@
|
|
|
|
GL_GNULIB_FDATASYNC = @GL_GNULIB_FDATASYNC@
|
|
|
|
GL_GNULIB_FDOPEN = @GL_GNULIB_FDOPEN@
|
|
|
|
GL_GNULIB_FDOPENDIR = @GL_GNULIB_FDOPENDIR@
|
|
|
|
GL_GNULIB_FFLUSH = @GL_GNULIB_FFLUSH@
|
|
|
|
GL_GNULIB_FFS = @GL_GNULIB_FFS@
|
|
|
|
GL_GNULIB_FFSL = @GL_GNULIB_FFSL@
|
|
|
|
GL_GNULIB_FFSLL = @GL_GNULIB_FFSLL@
|
|
|
|
GL_GNULIB_FGETC = @GL_GNULIB_FGETC@
|
|
|
|
GL_GNULIB_FGETS = @GL_GNULIB_FGETS@
|
|
|
|
GL_GNULIB_FLOOR = @GL_GNULIB_FLOOR@
|
|
|
|
GL_GNULIB_FLOORF = @GL_GNULIB_FLOORF@
|
|
|
|
GL_GNULIB_FLOORL = @GL_GNULIB_FLOORL@
|
|
|
|
GL_GNULIB_FMA = @GL_GNULIB_FMA@
|
|
|
|
GL_GNULIB_FMAF = @GL_GNULIB_FMAF@
|
|
|
|
GL_GNULIB_FMAL = @GL_GNULIB_FMAL@
|
|
|
|
GL_GNULIB_FMOD = @GL_GNULIB_FMOD@
|
|
|
|
GL_GNULIB_FMODF = @GL_GNULIB_FMODF@
|
|
|
|
GL_GNULIB_FMODL = @GL_GNULIB_FMODL@
|
|
|
|
GL_GNULIB_FNMATCH = @GL_GNULIB_FNMATCH@
|
|
|
|
GL_GNULIB_FOPEN = @GL_GNULIB_FOPEN@
|
|
|
|
GL_GNULIB_FOPEN_GNU = @GL_GNULIB_FOPEN_GNU@
|
|
|
|
GL_GNULIB_FPRINTF = @GL_GNULIB_FPRINTF@
|
|
|
|
GL_GNULIB_FPRINTF_POSIX = @GL_GNULIB_FPRINTF_POSIX@
|
|
|
|
GL_GNULIB_FPURGE = @GL_GNULIB_FPURGE@
|
|
|
|
GL_GNULIB_FPUTC = @GL_GNULIB_FPUTC@
|
|
|
|
GL_GNULIB_FPUTS = @GL_GNULIB_FPUTS@
|
|
|
|
GL_GNULIB_FREAD = @GL_GNULIB_FREAD@
|
|
|
|
GL_GNULIB_FREE_POSIX = @GL_GNULIB_FREE_POSIX@
|
|
|
|
GL_GNULIB_FREOPEN = @GL_GNULIB_FREOPEN@
|
|
|
|
GL_GNULIB_FREXP = @GL_GNULIB_FREXP@
|
|
|
|
GL_GNULIB_FREXPF = @GL_GNULIB_FREXPF@
|
|
|
|
GL_GNULIB_FREXPL = @GL_GNULIB_FREXPL@
|
|
|
|
GL_GNULIB_FSCANF = @GL_GNULIB_FSCANF@
|
|
|
|
GL_GNULIB_FSEEK = @GL_GNULIB_FSEEK@
|
|
|
|
GL_GNULIB_FSEEKO = @GL_GNULIB_FSEEKO@
|
|
|
|
GL_GNULIB_FSTAT = @GL_GNULIB_FSTAT@
|
|
|
|
GL_GNULIB_FSTATAT = @GL_GNULIB_FSTATAT@
|
|
|
|
GL_GNULIB_FSYNC = @GL_GNULIB_FSYNC@
|
|
|
|
GL_GNULIB_FTELL = @GL_GNULIB_FTELL@
|
|
|
|
GL_GNULIB_FTELLO = @GL_GNULIB_FTELLO@
|
|
|
|
GL_GNULIB_FTRUNCATE = @GL_GNULIB_FTRUNCATE@
|
|
|
|
GL_GNULIB_FUTIMENS = @GL_GNULIB_FUTIMENS@
|
|
|
|
GL_GNULIB_FWRITE = @GL_GNULIB_FWRITE@
|
|
|
|
GL_GNULIB_GETADDRINFO = @GL_GNULIB_GETADDRINFO@
|
|
|
|
GL_GNULIB_GETC = @GL_GNULIB_GETC@
|
|
|
|
GL_GNULIB_GETCHAR = @GL_GNULIB_GETCHAR@
|
|
|
|
GL_GNULIB_GETCWD = @GL_GNULIB_GETCWD@
|
|
|
|
GL_GNULIB_GETDELIM = @GL_GNULIB_GETDELIM@
|
|
|
|
GL_GNULIB_GETDOMAINNAME = @GL_GNULIB_GETDOMAINNAME@
|
|
|
|
GL_GNULIB_GETDTABLESIZE = @GL_GNULIB_GETDTABLESIZE@
|
|
|
|
GL_GNULIB_GETENTROPY = @GL_GNULIB_GETENTROPY@
|
|
|
|
GL_GNULIB_GETGROUPS = @GL_GNULIB_GETGROUPS@
|
|
|
|
GL_GNULIB_GETHOSTNAME = @GL_GNULIB_GETHOSTNAME@
|
|
|
|
GL_GNULIB_GETLINE = @GL_GNULIB_GETLINE@
|
|
|
|
GL_GNULIB_GETLOADAVG = @GL_GNULIB_GETLOADAVG@
|
|
|
|
GL_GNULIB_GETLOGIN = @GL_GNULIB_GETLOGIN@
|
|
|
|
GL_GNULIB_GETLOGIN_R = @GL_GNULIB_GETLOGIN_R@
|
|
|
|
GL_GNULIB_GETOPT_POSIX = @GL_GNULIB_GETOPT_POSIX@
|
|
|
|
GL_GNULIB_GETPAGESIZE = @GL_GNULIB_GETPAGESIZE@
|
|
|
|
GL_GNULIB_GETPASS = @GL_GNULIB_GETPASS@
|
|
|
|
GL_GNULIB_GETPASS_GNU = @GL_GNULIB_GETPASS_GNU@
|
|
|
|
GL_GNULIB_GETPEERNAME = @GL_GNULIB_GETPEERNAME@
|
|
|
|
GL_GNULIB_GETRANDOM = @GL_GNULIB_GETRANDOM@
|
|
|
|
GL_GNULIB_GETSOCKNAME = @GL_GNULIB_GETSOCKNAME@
|
|
|
|
GL_GNULIB_GETSOCKOPT = @GL_GNULIB_GETSOCKOPT@
|
|
|
|
GL_GNULIB_GETSUBOPT = @GL_GNULIB_GETSUBOPT@
|
|
|
|
GL_GNULIB_GETTIMEOFDAY = @GL_GNULIB_GETTIMEOFDAY@
|
|
|
|
GL_GNULIB_GETUMASK = @GL_GNULIB_GETUMASK@
|
|
|
|
GL_GNULIB_GETUSERSHELL = @GL_GNULIB_GETUSERSHELL@
|
|
|
|
GL_GNULIB_GLOB = @GL_GNULIB_GLOB@
|
|
|
|
GL_GNULIB_GRANTPT = @GL_GNULIB_GRANTPT@
|
|
|
|
GL_GNULIB_GROUP_MEMBER = @GL_GNULIB_GROUP_MEMBER@
|
|
|
|
GL_GNULIB_HYPOT = @GL_GNULIB_HYPOT@
|
|
|
|
GL_GNULIB_HYPOTF = @GL_GNULIB_HYPOTF@
|
|
|
|
GL_GNULIB_HYPOTL = @GL_GNULIB_HYPOTL@
|
|
|
|
GL_GNULIB_ILOGB = @GL_GNULIB_ILOGB@
|
|
|
|
GL_GNULIB_ILOGBF = @GL_GNULIB_ILOGBF@
|
|
|
|
GL_GNULIB_ILOGBL = @GL_GNULIB_ILOGBL@
|
|
|
|
GL_GNULIB_IMAXABS = @GL_GNULIB_IMAXABS@
|
|
|
|
GL_GNULIB_IMAXDIV = @GL_GNULIB_IMAXDIV@
|
|
|
|
GL_GNULIB_INET_NTOP = @GL_GNULIB_INET_NTOP@
|
|
|
|
GL_GNULIB_INET_PTON = @GL_GNULIB_INET_PTON@
|
|
|
|
GL_GNULIB_ISATTY = @GL_GNULIB_ISATTY@
|
|
|
|
GL_GNULIB_ISBLANK = @GL_GNULIB_ISBLANK@
|
|
|
|
GL_GNULIB_ISFINITE = @GL_GNULIB_ISFINITE@
|
|
|
|
GL_GNULIB_ISINF = @GL_GNULIB_ISINF@
|
|
|
|
GL_GNULIB_ISNAN = @GL_GNULIB_ISNAN@
|
|
|
|
GL_GNULIB_ISNAND = @GL_GNULIB_ISNAND@
|
|
|
|
GL_GNULIB_ISNANF = @GL_GNULIB_ISNANF@
|
|
|
|
GL_GNULIB_ISNANL = @GL_GNULIB_ISNANL@
|
|
|
|
GL_GNULIB_ISWBLANK = @GL_GNULIB_ISWBLANK@
|
|
|
|
GL_GNULIB_ISWCTYPE = @GL_GNULIB_ISWCTYPE@
|
|
|
|
GL_GNULIB_ISWDIGIT = @GL_GNULIB_ISWDIGIT@
|
|
|
|
GL_GNULIB_ISWXDIGIT = @GL_GNULIB_ISWXDIGIT@
|
|
|
|
GL_GNULIB_LCHMOD = @GL_GNULIB_LCHMOD@
|
|
|
|
GL_GNULIB_LCHOWN = @GL_GNULIB_LCHOWN@
|
|
|
|
GL_GNULIB_LDEXPF = @GL_GNULIB_LDEXPF@
|
|
|
|
GL_GNULIB_LDEXPL = @GL_GNULIB_LDEXPL@
|
|
|
|
GL_GNULIB_LINK = @GL_GNULIB_LINK@
|
|
|
|
GL_GNULIB_LINKAT = @GL_GNULIB_LINKAT@
|
|
|
|
GL_GNULIB_LISTEN = @GL_GNULIB_LISTEN@
|
|
|
|
GL_GNULIB_LOCALECONV = @GL_GNULIB_LOCALECONV@
|
|
|
|
GL_GNULIB_LOCALENAME = @GL_GNULIB_LOCALENAME@
|
|
|
|
GL_GNULIB_LOCALTIME = @GL_GNULIB_LOCALTIME@
|
|
|
|
GL_GNULIB_LOG = @GL_GNULIB_LOG@
|
|
|
|
GL_GNULIB_LOG10 = @GL_GNULIB_LOG10@
|
|
|
|
GL_GNULIB_LOG10F = @GL_GNULIB_LOG10F@
|
|
|
|
GL_GNULIB_LOG10L = @GL_GNULIB_LOG10L@
|
|
|
|
GL_GNULIB_LOG1P = @GL_GNULIB_LOG1P@
|
|
|
|
GL_GNULIB_LOG1PF = @GL_GNULIB_LOG1PF@
|
|
|
|
GL_GNULIB_LOG1PL = @GL_GNULIB_LOG1PL@
|
|
|
|
GL_GNULIB_LOG2 = @GL_GNULIB_LOG2@
|
|
|
|
GL_GNULIB_LOG2F = @GL_GNULIB_LOG2F@
|
|
|
|
GL_GNULIB_LOG2L = @GL_GNULIB_LOG2L@
|
|
|
|
GL_GNULIB_LOGB = @GL_GNULIB_LOGB@
|
|
|
|
GL_GNULIB_LOGBF = @GL_GNULIB_LOGBF@
|
|
|
|
GL_GNULIB_LOGBL = @GL_GNULIB_LOGBL@
|
|
|
|
GL_GNULIB_LOGF = @GL_GNULIB_LOGF@
|
|
|
|
GL_GNULIB_LOGL = @GL_GNULIB_LOGL@
|
|
|
|
GL_GNULIB_LSEEK = @GL_GNULIB_LSEEK@
|
|
|
|
GL_GNULIB_LSTAT = @GL_GNULIB_LSTAT@
|
|
|
|
GL_GNULIB_MALLOC_GNU = @GL_GNULIB_MALLOC_GNU@
|
|
|
|
GL_GNULIB_MALLOC_POSIX = @GL_GNULIB_MALLOC_POSIX@
|
|
|
|
GL_GNULIB_MBRLEN = @GL_GNULIB_MBRLEN@
|
|
|
|
GL_GNULIB_MBRTOWC = @GL_GNULIB_MBRTOWC@
|
|
|
|
GL_GNULIB_MBSCASECMP = @GL_GNULIB_MBSCASECMP@
|
|
|
|
GL_GNULIB_MBSCASESTR = @GL_GNULIB_MBSCASESTR@
|
|
|
|
GL_GNULIB_MBSCHR = @GL_GNULIB_MBSCHR@
|
|
|
|
GL_GNULIB_MBSCSPN = @GL_GNULIB_MBSCSPN@
|
|
|
|
GL_GNULIB_MBSINIT = @GL_GNULIB_MBSINIT@
|
|
|
|
GL_GNULIB_MBSLEN = @GL_GNULIB_MBSLEN@
|
|
|
|
GL_GNULIB_MBSNCASECMP = @GL_GNULIB_MBSNCASECMP@
|
|
|
|
GL_GNULIB_MBSNLEN = @GL_GNULIB_MBSNLEN@
|
|
|
|
GL_GNULIB_MBSNRTOWCS = @GL_GNULIB_MBSNRTOWCS@
|
|
|
|
GL_GNULIB_MBSPBRK = @GL_GNULIB_MBSPBRK@
|
|
|
|
GL_GNULIB_MBSPCASECMP = @GL_GNULIB_MBSPCASECMP@
|
|
|
|
GL_GNULIB_MBSRCHR = @GL_GNULIB_MBSRCHR@
|
|
|
|
GL_GNULIB_MBSRTOWCS = @GL_GNULIB_MBSRTOWCS@
|
|
|
|
GL_GNULIB_MBSSEP = @GL_GNULIB_MBSSEP@
|
|
|
|
GL_GNULIB_MBSSPN = @GL_GNULIB_MBSSPN@
|
|
|
|
GL_GNULIB_MBSSTR = @GL_GNULIB_MBSSTR@
|
|
|
|
GL_GNULIB_MBSTOK_R = @GL_GNULIB_MBSTOK_R@
|
|
|
|
GL_GNULIB_MBTOWC = @GL_GNULIB_MBTOWC@
|
|
|
|
GL_GNULIB_MDA_ACCESS = @GL_GNULIB_MDA_ACCESS@
|
|
|
|
GL_GNULIB_MDA_CHDIR = @GL_GNULIB_MDA_CHDIR@
|
|
|
|
GL_GNULIB_MDA_CHMOD = @GL_GNULIB_MDA_CHMOD@
|
|
|
|
GL_GNULIB_MDA_CLOSE = @GL_GNULIB_MDA_CLOSE@
|
|
|
|
GL_GNULIB_MDA_CREAT = @GL_GNULIB_MDA_CREAT@
|
|
|
|
GL_GNULIB_MDA_DUP = @GL_GNULIB_MDA_DUP@
|
|
|
|
GL_GNULIB_MDA_DUP2 = @GL_GNULIB_MDA_DUP2@
|
|
|
|
GL_GNULIB_MDA_ECVT = @GL_GNULIB_MDA_ECVT@
|
|
|
|
GL_GNULIB_MDA_EXECL = @GL_GNULIB_MDA_EXECL@
|
|
|
|
GL_GNULIB_MDA_EXECLE = @GL_GNULIB_MDA_EXECLE@
|
|
|
|
GL_GNULIB_MDA_EXECLP = @GL_GNULIB_MDA_EXECLP@
|
|
|
|
GL_GNULIB_MDA_EXECV = @GL_GNULIB_MDA_EXECV@
|
|
|
|
GL_GNULIB_MDA_EXECVE = @GL_GNULIB_MDA_EXECVE@
|
|
|
|
GL_GNULIB_MDA_EXECVP = @GL_GNULIB_MDA_EXECVP@
|
|
|
|
GL_GNULIB_MDA_EXECVPE = @GL_GNULIB_MDA_EXECVPE@
|
|
|
|
GL_GNULIB_MDA_FCLOSEALL = @GL_GNULIB_MDA_FCLOSEALL@
|
|
|
|
GL_GNULIB_MDA_FCVT = @GL_GNULIB_MDA_FCVT@
|
|
|
|
GL_GNULIB_MDA_FDOPEN = @GL_GNULIB_MDA_FDOPEN@
|
|
|
|
GL_GNULIB_MDA_FILENO = @GL_GNULIB_MDA_FILENO@
|
|
|
|
GL_GNULIB_MDA_GCVT = @GL_GNULIB_MDA_GCVT@
|
|
|
|
GL_GNULIB_MDA_GETCWD = @GL_GNULIB_MDA_GETCWD@
|
|
|
|
GL_GNULIB_MDA_GETPID = @GL_GNULIB_MDA_GETPID@
|
|
|
|
GL_GNULIB_MDA_GETW = @GL_GNULIB_MDA_GETW@
|
|
|
|
GL_GNULIB_MDA_ISATTY = @GL_GNULIB_MDA_ISATTY@
|
|
|
|
GL_GNULIB_MDA_J0 = @GL_GNULIB_MDA_J0@
|
|
|
|
GL_GNULIB_MDA_J1 = @GL_GNULIB_MDA_J1@
|
|
|
|
GL_GNULIB_MDA_JN = @GL_GNULIB_MDA_JN@
|
|
|
|
GL_GNULIB_MDA_LSEEK = @GL_GNULIB_MDA_LSEEK@
|
|
|
|
GL_GNULIB_MDA_MEMCCPY = @GL_GNULIB_MDA_MEMCCPY@
|
|
|
|
GL_GNULIB_MDA_MKDIR = @GL_GNULIB_MDA_MKDIR@
|
|
|
|
GL_GNULIB_MDA_MKTEMP = @GL_GNULIB_MDA_MKTEMP@
|
|
|
|
GL_GNULIB_MDA_OPEN = @GL_GNULIB_MDA_OPEN@
|
|
|
|
GL_GNULIB_MDA_PUTENV = @GL_GNULIB_MDA_PUTENV@
|
|
|
|
GL_GNULIB_MDA_PUTW = @GL_GNULIB_MDA_PUTW@
|
|
|
|
GL_GNULIB_MDA_READ = @GL_GNULIB_MDA_READ@
|
|
|
|
GL_GNULIB_MDA_RMDIR = @GL_GNULIB_MDA_RMDIR@
|
|
|
|
GL_GNULIB_MDA_STRDUP = @GL_GNULIB_MDA_STRDUP@
|
|
|
|
GL_GNULIB_MDA_SWAB = @GL_GNULIB_MDA_SWAB@
|
|
|
|
GL_GNULIB_MDA_TEMPNAM = @GL_GNULIB_MDA_TEMPNAM@
|
|
|
|
GL_GNULIB_MDA_TZSET = @GL_GNULIB_MDA_TZSET@
|
|
|
|
GL_GNULIB_MDA_UMASK = @GL_GNULIB_MDA_UMASK@
|
|
|
|
GL_GNULIB_MDA_UNLINK = @GL_GNULIB_MDA_UNLINK@
|
|
|
|
GL_GNULIB_MDA_WCSDUP = @GL_GNULIB_MDA_WCSDUP@
|
|
|
|
GL_GNULIB_MDA_WRITE = @GL_GNULIB_MDA_WRITE@
|
|
|
|
GL_GNULIB_MDA_Y0 = @GL_GNULIB_MDA_Y0@
|
|
|
|
GL_GNULIB_MDA_Y1 = @GL_GNULIB_MDA_Y1@
|
|
|
|
GL_GNULIB_MDA_YN = @GL_GNULIB_MDA_YN@
|
|
|
|
GL_GNULIB_MEMCHR = @GL_GNULIB_MEMCHR@
|
|
|
|
GL_GNULIB_MEMMEM = @GL_GNULIB_MEMMEM@
|
|
|
|
GL_GNULIB_MEMPCPY = @GL_GNULIB_MEMPCPY@
|
|
|
|
GL_GNULIB_MEMRCHR = @GL_GNULIB_MEMRCHR@
|
|
|
|
GL_GNULIB_MKDIR = @GL_GNULIB_MKDIR@
|
|
|
|
GL_GNULIB_MKDIRAT = @GL_GNULIB_MKDIRAT@
|
|
|
|
GL_GNULIB_MKDTEMP = @GL_GNULIB_MKDTEMP@
|
|
|
|
GL_GNULIB_MKFIFO = @GL_GNULIB_MKFIFO@
|
|
|
|
GL_GNULIB_MKFIFOAT = @GL_GNULIB_MKFIFOAT@
|
|
|
|
GL_GNULIB_MKNOD = @GL_GNULIB_MKNOD@
|
|
|
|
GL_GNULIB_MKNODAT = @GL_GNULIB_MKNODAT@
|
|
|
|
GL_GNULIB_MKOSTEMP = @GL_GNULIB_MKOSTEMP@
|
|
|
|
GL_GNULIB_MKOSTEMPS = @GL_GNULIB_MKOSTEMPS@
|
|
|
|
GL_GNULIB_MKSTEMP = @GL_GNULIB_MKSTEMP@
|
|
|
|
GL_GNULIB_MKSTEMPS = @GL_GNULIB_MKSTEMPS@
|
|
|
|
GL_GNULIB_MKTIME = @GL_GNULIB_MKTIME@
|
|
|
|
GL_GNULIB_MODF = @GL_GNULIB_MODF@
|
|
|
|
GL_GNULIB_MODFF = @GL_GNULIB_MODFF@
|
|
|
|
GL_GNULIB_MODFL = @GL_GNULIB_MODFL@
|
|
|
|
GL_GNULIB_NANOSLEEP = @GL_GNULIB_NANOSLEEP@
|
|
|
|
GL_GNULIB_NONBLOCKING = @GL_GNULIB_NONBLOCKING@
|
|
|
|
GL_GNULIB_OBSTACK_PRINTF = @GL_GNULIB_OBSTACK_PRINTF@
|
|
|
|
GL_GNULIB_OBSTACK_PRINTF_POSIX = @GL_GNULIB_OBSTACK_PRINTF_POSIX@
|
|
|
|
GL_GNULIB_OPEN = @GL_GNULIB_OPEN@
|
|
|
|
GL_GNULIB_OPENAT = @GL_GNULIB_OPENAT@
|
|
|
|
GL_GNULIB_OPENDIR = @GL_GNULIB_OPENDIR@
|
|
|
|
GL_GNULIB_OVERRIDES_STRUCT_STAT = @GL_GNULIB_OVERRIDES_STRUCT_STAT@
|
|
|
|
GL_GNULIB_PCLOSE = @GL_GNULIB_PCLOSE@
|
|
|
|
GL_GNULIB_PERROR = @GL_GNULIB_PERROR@
|
|
|
|
GL_GNULIB_PIPE = @GL_GNULIB_PIPE@
|
|
|
|
GL_GNULIB_PIPE2 = @GL_GNULIB_PIPE2@
|
|
|
|
GL_GNULIB_POPEN = @GL_GNULIB_POPEN@
|
|
|
|
GL_GNULIB_POSIX_MEMALIGN = @GL_GNULIB_POSIX_MEMALIGN@
|
|
|
|
GL_GNULIB_POSIX_OPENPT = @GL_GNULIB_POSIX_OPENPT@
|
|
|
|
GL_GNULIB_POWF = @GL_GNULIB_POWF@
|
|
|
|
GL_GNULIB_PREAD = @GL_GNULIB_PREAD@
|
|
|
|
GL_GNULIB_PRINTF = @GL_GNULIB_PRINTF@
|
|
|
|
GL_GNULIB_PRINTF_POSIX = @GL_GNULIB_PRINTF_POSIX@
|
|
|
|
GL_GNULIB_PSELECT = @GL_GNULIB_PSELECT@
|
|
|
|
GL_GNULIB_PTHREAD_SIGMASK = @GL_GNULIB_PTHREAD_SIGMASK@
|
|
|
|
GL_GNULIB_PTSNAME = @GL_GNULIB_PTSNAME@
|
|
|
|
GL_GNULIB_PTSNAME_R = @GL_GNULIB_PTSNAME_R@
|
|
|
|
GL_GNULIB_PUTC = @GL_GNULIB_PUTC@
|
|
|
|
GL_GNULIB_PUTCHAR = @GL_GNULIB_PUTCHAR@
|
|
|
|
GL_GNULIB_PUTENV = @GL_GNULIB_PUTENV@
|
|
|
|
GL_GNULIB_PUTS = @GL_GNULIB_PUTS@
|
|
|
|
GL_GNULIB_PWRITE = @GL_GNULIB_PWRITE@
|
|
|
|
GL_GNULIB_QSORT_R = @GL_GNULIB_QSORT_R@
|
|
|
|
GL_GNULIB_RAISE = @GL_GNULIB_RAISE@
|
|
|
|
GL_GNULIB_RANDOM = @GL_GNULIB_RANDOM@
|
|
|
|
GL_GNULIB_RANDOM_R = @GL_GNULIB_RANDOM_R@
|
|
|
|
GL_GNULIB_RAWMEMCHR = @GL_GNULIB_RAWMEMCHR@
|
|
|
|
GL_GNULIB_READ = @GL_GNULIB_READ@
|
|
|
|
GL_GNULIB_READDIR = @GL_GNULIB_READDIR@
|
|
|
|
GL_GNULIB_READLINK = @GL_GNULIB_READLINK@
|
|
|
|
GL_GNULIB_READLINKAT = @GL_GNULIB_READLINKAT@
|
|
|
|
GL_GNULIB_REALLOCARRAY = @GL_GNULIB_REALLOCARRAY@
|
|
|
|
GL_GNULIB_REALLOC_GNU = @GL_GNULIB_REALLOC_GNU@
|
|
|
|
GL_GNULIB_REALLOC_POSIX = @GL_GNULIB_REALLOC_POSIX@
|
|
|
|
GL_GNULIB_REALPATH = @GL_GNULIB_REALPATH@
|
|
|
|
GL_GNULIB_RECV = @GL_GNULIB_RECV@
|
|
|
|
GL_GNULIB_RECVFROM = @GL_GNULIB_RECVFROM@
|
|
|
|
GL_GNULIB_REMAINDER = @GL_GNULIB_REMAINDER@
|
|
|
|
GL_GNULIB_REMAINDERF = @GL_GNULIB_REMAINDERF@
|
|
|
|
GL_GNULIB_REMAINDERL = @GL_GNULIB_REMAINDERL@
|
|
|
|
GL_GNULIB_REMOVE = @GL_GNULIB_REMOVE@
|
|
|
|
GL_GNULIB_RENAME = @GL_GNULIB_RENAME@
|
|
|
|
GL_GNULIB_RENAMEAT = @GL_GNULIB_RENAMEAT@
|
|
|
|
GL_GNULIB_REWINDDIR = @GL_GNULIB_REWINDDIR@
|
|
|
|
GL_GNULIB_RINT = @GL_GNULIB_RINT@
|
|
|
|
GL_GNULIB_RINTF = @GL_GNULIB_RINTF@
|
|
|
|
GL_GNULIB_RINTL = @GL_GNULIB_RINTL@
|
|
|
|
GL_GNULIB_RMDIR = @GL_GNULIB_RMDIR@
|
|
|
|
GL_GNULIB_ROUND = @GL_GNULIB_ROUND@
|
|
|
|
GL_GNULIB_ROUNDF = @GL_GNULIB_ROUNDF@
|
|
|
|
GL_GNULIB_ROUNDL = @GL_GNULIB_ROUNDL@
|
|
|
|
GL_GNULIB_RPMATCH = @GL_GNULIB_RPMATCH@
|
|
|
|
GL_GNULIB_SCANDIR = @GL_GNULIB_SCANDIR@
|
|
|
|
GL_GNULIB_SCANF = @GL_GNULIB_SCANF@
|
|
|
|
GL_GNULIB_SECURE_GETENV = @GL_GNULIB_SECURE_GETENV@
|
|
|
|
GL_GNULIB_SELECT = @GL_GNULIB_SELECT@
|
|
|
|
GL_GNULIB_SEND = @GL_GNULIB_SEND@
|
|
|
|
GL_GNULIB_SENDTO = @GL_GNULIB_SENDTO@
|
|
|
|
GL_GNULIB_SETENV = @GL_GNULIB_SETENV@
|
|
|
|
GL_GNULIB_SETHOSTNAME = @GL_GNULIB_SETHOSTNAME@
|
|
|
|
GL_GNULIB_SETLOCALE = @GL_GNULIB_SETLOCALE@
|
|
|
|
GL_GNULIB_SETLOCALE_NULL = @GL_GNULIB_SETLOCALE_NULL@
|
|
|
|
GL_GNULIB_SETSOCKOPT = @GL_GNULIB_SETSOCKOPT@
|
|
|
|
GL_GNULIB_SHUTDOWN = @GL_GNULIB_SHUTDOWN@
|
|
|
|
GL_GNULIB_SIGABBREV_NP = @GL_GNULIB_SIGABBREV_NP@
|
|
|
|
GL_GNULIB_SIGACTION = @GL_GNULIB_SIGACTION@
|
|
|
|
GL_GNULIB_SIGDESCR_NP = @GL_GNULIB_SIGDESCR_NP@
|
|
|
|
GL_GNULIB_SIGNAL_H_SIGPIPE = @GL_GNULIB_SIGNAL_H_SIGPIPE@
|
|
|
|
GL_GNULIB_SIGNBIT = @GL_GNULIB_SIGNBIT@
|
|
|
|
GL_GNULIB_SIGPROCMASK = @GL_GNULIB_SIGPROCMASK@
|
|
|
|
GL_GNULIB_SINF = @GL_GNULIB_SINF@
|
|
|
|
GL_GNULIB_SINHF = @GL_GNULIB_SINHF@
|
|
|
|
GL_GNULIB_SINL = @GL_GNULIB_SINL@
|
|
|
|
GL_GNULIB_SLEEP = @GL_GNULIB_SLEEP@
|
|
|
|
GL_GNULIB_SNPRINTF = @GL_GNULIB_SNPRINTF@
|
|
|
|
GL_GNULIB_SOCKET = @GL_GNULIB_SOCKET@
|
|
|
|
GL_GNULIB_SPRINTF_POSIX = @GL_GNULIB_SPRINTF_POSIX@
|
|
|
|
GL_GNULIB_SQRTF = @GL_GNULIB_SQRTF@
|
|
|
|
GL_GNULIB_SQRTL = @GL_GNULIB_SQRTL@
|
|
|
|
GL_GNULIB_STAT = @GL_GNULIB_STAT@
|
|
|
|
GL_GNULIB_STDIO_H_NONBLOCKING = @GL_GNULIB_STDIO_H_NONBLOCKING@
|
|
|
|
GL_GNULIB_STDIO_H_SIGPIPE = @GL_GNULIB_STDIO_H_SIGPIPE@
|
|
|
|
GL_GNULIB_STPCPY = @GL_GNULIB_STPCPY@
|
|
|
|
GL_GNULIB_STPNCPY = @GL_GNULIB_STPNCPY@
|
|
|
|
GL_GNULIB_STRCASESTR = @GL_GNULIB_STRCASESTR@
|
|
|
|
GL_GNULIB_STRCHRNUL = @GL_GNULIB_STRCHRNUL@
|
|
|
|
GL_GNULIB_STRDUP = @GL_GNULIB_STRDUP@
|
|
|
|
GL_GNULIB_STRERROR = @GL_GNULIB_STRERROR@
|
|
|
|
GL_GNULIB_STRERRORNAME_NP = @GL_GNULIB_STRERRORNAME_NP@
|
|
|
|
GL_GNULIB_STRERROR_R = @GL_GNULIB_STRERROR_R@
|
|
|
|
GL_GNULIB_STRFTIME = @GL_GNULIB_STRFTIME@
|
|
|
|
GL_GNULIB_STRNCAT = @GL_GNULIB_STRNCAT@
|
|
|
|
GL_GNULIB_STRNDUP = @GL_GNULIB_STRNDUP@
|
|
|
|
GL_GNULIB_STRNLEN = @GL_GNULIB_STRNLEN@
|
|
|
|
GL_GNULIB_STRPBRK = @GL_GNULIB_STRPBRK@
|
|
|
|
GL_GNULIB_STRPTIME = @GL_GNULIB_STRPTIME@
|
|
|
|
GL_GNULIB_STRSEP = @GL_GNULIB_STRSEP@
|
|
|
|
GL_GNULIB_STRSIGNAL = @GL_GNULIB_STRSIGNAL@
|
|
|
|
GL_GNULIB_STRSTR = @GL_GNULIB_STRSTR@
|
|
|
|
GL_GNULIB_STRTOD = @GL_GNULIB_STRTOD@
|
|
|
|
GL_GNULIB_STRTOIMAX = @GL_GNULIB_STRTOIMAX@
|
|
|
|
GL_GNULIB_STRTOK_R = @GL_GNULIB_STRTOK_R@
|
|
|
|
GL_GNULIB_STRTOL = @GL_GNULIB_STRTOL@
|
|
|
|
GL_GNULIB_STRTOLD = @GL_GNULIB_STRTOLD@
|
|
|
|
GL_GNULIB_STRTOLL = @GL_GNULIB_STRTOLL@
|
|
|
|
GL_GNULIB_STRTOUL = @GL_GNULIB_STRTOUL@
|
|
|
|
GL_GNULIB_STRTOULL = @GL_GNULIB_STRTOULL@
|
|
|
|
GL_GNULIB_STRTOUMAX = @GL_GNULIB_STRTOUMAX@
|
|
|
|
GL_GNULIB_STRVERSCMP = @GL_GNULIB_STRVERSCMP@
|
|
|
|
GL_GNULIB_SYMLINK = @GL_GNULIB_SYMLINK@
|
|
|
|
GL_GNULIB_SYMLINKAT = @GL_GNULIB_SYMLINKAT@
|
|
|
|
GL_GNULIB_SYSTEM_POSIX = @GL_GNULIB_SYSTEM_POSIX@
|
|
|
|
GL_GNULIB_TANF = @GL_GNULIB_TANF@
|
|
|
|
GL_GNULIB_TANHF = @GL_GNULIB_TANHF@
|
|
|
|
GL_GNULIB_TANL = @GL_GNULIB_TANL@
|
|
|
|
GL_GNULIB_TIMEGM = @GL_GNULIB_TIMEGM@
|
|
|
|
GL_GNULIB_TIMESPEC_GET = @GL_GNULIB_TIMESPEC_GET@
|
|
|
|
GL_GNULIB_TIMESPEC_GETRES = @GL_GNULIB_TIMESPEC_GETRES@
|
|
|
|
GL_GNULIB_TIME_R = @GL_GNULIB_TIME_R@
|
|
|
|
GL_GNULIB_TIME_RZ = @GL_GNULIB_TIME_RZ@
|
|
|
|
GL_GNULIB_TMPFILE = @GL_GNULIB_TMPFILE@
|
|
|
|
GL_GNULIB_TOWCTRANS = @GL_GNULIB_TOWCTRANS@
|
|
|
|
GL_GNULIB_TRUNC = @GL_GNULIB_TRUNC@
|
|
|
|
GL_GNULIB_TRUNCATE = @GL_GNULIB_TRUNCATE@
|
|
|
|
GL_GNULIB_TRUNCF = @GL_GNULIB_TRUNCF@
|
|
|
|
GL_GNULIB_TRUNCL = @GL_GNULIB_TRUNCL@
|
|
|
|
GL_GNULIB_TTYNAME_R = @GL_GNULIB_TTYNAME_R@
|
|
|
|
GL_GNULIB_TZSET = @GL_GNULIB_TZSET@
|
|
|
|
GL_GNULIB_UNISTD_H_GETOPT = @GL_GNULIB_UNISTD_H_GETOPT@
|
|
|
|
GL_GNULIB_UNISTD_H_NONBLOCKING = @GL_GNULIB_UNISTD_H_NONBLOCKING@
|
|
|
|
GL_GNULIB_UNISTD_H_SIGPIPE = @GL_GNULIB_UNISTD_H_SIGPIPE@
|
|
|
|
GL_GNULIB_UNLINK = @GL_GNULIB_UNLINK@
|
|
|
|
GL_GNULIB_UNLINKAT = @GL_GNULIB_UNLINKAT@
|
|
|
|
GL_GNULIB_UNLOCKPT = @GL_GNULIB_UNLOCKPT@
|
|
|
|
GL_GNULIB_UNSETENV = @GL_GNULIB_UNSETENV@
|
|
|
|
GL_GNULIB_USLEEP = @GL_GNULIB_USLEEP@
|
|
|
|
GL_GNULIB_UTIMENSAT = @GL_GNULIB_UTIMENSAT@
|
|
|
|
GL_GNULIB_VASPRINTF = @GL_GNULIB_VASPRINTF@
|
|
|
|
GL_GNULIB_VDPRINTF = @GL_GNULIB_VDPRINTF@
|
|
|
|
GL_GNULIB_VFPRINTF = @GL_GNULIB_VFPRINTF@
|
|
|
|
GL_GNULIB_VFPRINTF_POSIX = @GL_GNULIB_VFPRINTF_POSIX@
|
|
|
|
GL_GNULIB_VFSCANF = @GL_GNULIB_VFSCANF@
|
|
|
|
GL_GNULIB_VPRINTF = @GL_GNULIB_VPRINTF@
|
|
|
|
GL_GNULIB_VPRINTF_POSIX = @GL_GNULIB_VPRINTF_POSIX@
|
|
|
|
GL_GNULIB_VSCANF = @GL_GNULIB_VSCANF@
|
|
|
|
GL_GNULIB_VSNPRINTF = @GL_GNULIB_VSNPRINTF@
|
|
|
|
GL_GNULIB_VSPRINTF_POSIX = @GL_GNULIB_VSPRINTF_POSIX@
|
|
|
|
GL_GNULIB_WAITPID = @GL_GNULIB_WAITPID@
|
|
|
|
GL_GNULIB_WCPCPY = @GL_GNULIB_WCPCPY@
|
|
|
|
GL_GNULIB_WCPNCPY = @GL_GNULIB_WCPNCPY@
|
|
|
|
GL_GNULIB_WCRTOMB = @GL_GNULIB_WCRTOMB@
|
|
|
|
GL_GNULIB_WCSCASECMP = @GL_GNULIB_WCSCASECMP@
|
|
|
|
GL_GNULIB_WCSCAT = @GL_GNULIB_WCSCAT@
|
|
|
|
GL_GNULIB_WCSCHR = @GL_GNULIB_WCSCHR@
|
|
|
|
GL_GNULIB_WCSCMP = @GL_GNULIB_WCSCMP@
|
|
|
|
GL_GNULIB_WCSCOLL = @GL_GNULIB_WCSCOLL@
|
|
|
|
GL_GNULIB_WCSCPY = @GL_GNULIB_WCSCPY@
|
|
|
|
GL_GNULIB_WCSCSPN = @GL_GNULIB_WCSCSPN@
|
|
|
|
GL_GNULIB_WCSDUP = @GL_GNULIB_WCSDUP@
|
|
|
|
GL_GNULIB_WCSFTIME = @GL_GNULIB_WCSFTIME@
|
|
|
|
GL_GNULIB_WCSLEN = @GL_GNULIB_WCSLEN@
|
|
|
|
GL_GNULIB_WCSNCASECMP = @GL_GNULIB_WCSNCASECMP@
|
|
|
|
GL_GNULIB_WCSNCAT = @GL_GNULIB_WCSNCAT@
|
|
|
|
GL_GNULIB_WCSNCMP = @GL_GNULIB_WCSNCMP@
|
|
|
|
GL_GNULIB_WCSNCPY = @GL_GNULIB_WCSNCPY@
|
|
|
|
GL_GNULIB_WCSNLEN = @GL_GNULIB_WCSNLEN@
|
|
|
|
GL_GNULIB_WCSNRTOMBS = @GL_GNULIB_WCSNRTOMBS@
|
|
|
|
GL_GNULIB_WCSPBRK = @GL_GNULIB_WCSPBRK@
|
|
|
|
GL_GNULIB_WCSRCHR = @GL_GNULIB_WCSRCHR@
|
|
|
|
GL_GNULIB_WCSRTOMBS = @GL_GNULIB_WCSRTOMBS@
|
|
|
|
GL_GNULIB_WCSSPN = @GL_GNULIB_WCSSPN@
|
|
|
|
GL_GNULIB_WCSSTR = @GL_GNULIB_WCSSTR@
|
|
|
|
GL_GNULIB_WCSTOK = @GL_GNULIB_WCSTOK@
|
|
|
|
GL_GNULIB_WCSWIDTH = @GL_GNULIB_WCSWIDTH@
|
|
|
|
GL_GNULIB_WCSXFRM = @GL_GNULIB_WCSXFRM@
|
|
|
|
GL_GNULIB_WCTOB = @GL_GNULIB_WCTOB@
|
|
|
|
GL_GNULIB_WCTOMB = @GL_GNULIB_WCTOMB@
|
|
|
|
GL_GNULIB_WCTRANS = @GL_GNULIB_WCTRANS@
|
|
|
|
GL_GNULIB_WCTYPE = @GL_GNULIB_WCTYPE@
|
|
|
|
GL_GNULIB_WCWIDTH = @GL_GNULIB_WCWIDTH@
|
|
|
|
GL_GNULIB_WMEMCHR = @GL_GNULIB_WMEMCHR@
|
|
|
|
GL_GNULIB_WMEMCMP = @GL_GNULIB_WMEMCMP@
|
|
|
|
GL_GNULIB_WMEMCPY = @GL_GNULIB_WMEMCPY@
|
|
|
|
GL_GNULIB_WMEMMOVE = @GL_GNULIB_WMEMMOVE@
|
|
|
|
GL_GNULIB_WMEMPCPY = @GL_GNULIB_WMEMPCPY@
|
|
|
|
GL_GNULIB_WMEMSET = @GL_GNULIB_WMEMSET@
|
|
|
|
GL_GNULIB_WRITE = @GL_GNULIB_WRITE@
|
|
|
|
GL_GNULIB__EXIT = @GL_GNULIB__EXIT@
|
|
|
|
GNULIBHEADERS_OVERRIDE_WINT_T = @GNULIBHEADERS_OVERRIDE_WINT_T@
|
2019-11-15 08:17:59 +08:00
|
|
|
GNULIB_GETTIMEOFDAY = @GNULIB_GETTIMEOFDAY@
|
|
|
|
GREP = @GREP@
|
|
|
|
HAVE_ACCEPT4 = @HAVE_ACCEPT4@
|
|
|
|
HAVE_ACOSF = @HAVE_ACOSF@
|
|
|
|
HAVE_ACOSL = @HAVE_ACOSL@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_ALIGNED_ALLOC = @HAVE_ALIGNED_ALLOC@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_ALLOCA_H = @HAVE_ALLOCA_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_ALPHASORT = @HAVE_ALPHASORT@
|
|
|
|
HAVE_ARPA_INET_H = @HAVE_ARPA_INET_H@
|
|
|
|
HAVE_ASINF = @HAVE_ASINF@
|
|
|
|
HAVE_ASINL = @HAVE_ASINL@
|
|
|
|
HAVE_ATAN2F = @HAVE_ATAN2F@
|
|
|
|
HAVE_ATANF = @HAVE_ATANF@
|
|
|
|
HAVE_ATANL = @HAVE_ATANL@
|
|
|
|
HAVE_ATOLL = @HAVE_ATOLL@
|
|
|
|
HAVE_BTOWC = @HAVE_BTOWC@
|
|
|
|
HAVE_C99_STDINT_H = @HAVE_C99_STDINT_H@
|
|
|
|
HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@
|
|
|
|
HAVE_CBRT = @HAVE_CBRT@
|
|
|
|
HAVE_CBRTF = @HAVE_CBRTF@
|
|
|
|
HAVE_CBRTL = @HAVE_CBRTL@
|
|
|
|
HAVE_CHOWN = @HAVE_CHOWN@
|
|
|
|
HAVE_CLOSEDIR = @HAVE_CLOSEDIR@
|
|
|
|
HAVE_COPYSIGN = @HAVE_COPYSIGN@
|
|
|
|
HAVE_COPYSIGNL = @HAVE_COPYSIGNL@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_COPY_FILE_RANGE = @HAVE_COPY_FILE_RANGE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_COSF = @HAVE_COSF@
|
|
|
|
HAVE_COSHF = @HAVE_COSHF@
|
|
|
|
HAVE_COSL = @HAVE_COSL@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_CRTDEFS_H = @HAVE_CRTDEFS_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_ACOSL = @HAVE_DECL_ACOSL@
|
|
|
|
HAVE_DECL_ASINL = @HAVE_DECL_ASINL@
|
|
|
|
HAVE_DECL_ATANL = @HAVE_DECL_ATANL@
|
|
|
|
HAVE_DECL_CBRTF = @HAVE_DECL_CBRTF@
|
|
|
|
HAVE_DECL_CBRTL = @HAVE_DECL_CBRTL@
|
|
|
|
HAVE_DECL_CEILF = @HAVE_DECL_CEILF@
|
|
|
|
HAVE_DECL_CEILL = @HAVE_DECL_CEILL@
|
|
|
|
HAVE_DECL_COPYSIGNF = @HAVE_DECL_COPYSIGNF@
|
|
|
|
HAVE_DECL_COSL = @HAVE_DECL_COSL@
|
|
|
|
HAVE_DECL_DIRFD = @HAVE_DECL_DIRFD@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_DECL_ECVT = @HAVE_DECL_ECVT@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_DECL_EXECVPE = @HAVE_DECL_EXECVPE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_EXP2 = @HAVE_DECL_EXP2@
|
|
|
|
HAVE_DECL_EXP2F = @HAVE_DECL_EXP2F@
|
|
|
|
HAVE_DECL_EXP2L = @HAVE_DECL_EXP2L@
|
|
|
|
HAVE_DECL_EXPL = @HAVE_DECL_EXPL@
|
|
|
|
HAVE_DECL_EXPM1L = @HAVE_DECL_EXPM1L@
|
|
|
|
HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_DECL_FCLOSEALL = @HAVE_DECL_FCLOSEALL@
|
|
|
|
HAVE_DECL_FCVT = @HAVE_DECL_FCVT@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@
|
|
|
|
HAVE_DECL_FDOPENDIR = @HAVE_DECL_FDOPENDIR@
|
|
|
|
HAVE_DECL_FLOORF = @HAVE_DECL_FLOORF@
|
|
|
|
HAVE_DECL_FLOORL = @HAVE_DECL_FLOORL@
|
|
|
|
HAVE_DECL_FPURGE = @HAVE_DECL_FPURGE@
|
2021-05-30 00:48:49 +08:00
|
|
|
HAVE_DECL_FREEADDRINFO = @HAVE_DECL_FREEADDRINFO@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_FREXPL = @HAVE_DECL_FREXPL@
|
|
|
|
HAVE_DECL_FSEEKO = @HAVE_DECL_FSEEKO@
|
|
|
|
HAVE_DECL_FTELLO = @HAVE_DECL_FTELLO@
|
2021-05-30 00:48:49 +08:00
|
|
|
HAVE_DECL_GAI_STRERROR = @HAVE_DECL_GAI_STRERROR@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_DECL_GCVT = @HAVE_DECL_GCVT@
|
2021-05-30 00:48:49 +08:00
|
|
|
HAVE_DECL_GETADDRINFO = @HAVE_DECL_GETADDRINFO@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
|
|
|
|
HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@
|
|
|
|
HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
|
|
|
|
HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_DECL_GETLOGIN = @HAVE_DECL_GETLOGIN@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
|
2021-05-30 00:48:49 +08:00
|
|
|
HAVE_DECL_GETNAMEINFO = @HAVE_DECL_GETNAMEINFO@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@
|
|
|
|
HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@
|
|
|
|
HAVE_DECL_IMAXABS = @HAVE_DECL_IMAXABS@
|
|
|
|
HAVE_DECL_IMAXDIV = @HAVE_DECL_IMAXDIV@
|
|
|
|
HAVE_DECL_INET_NTOP = @HAVE_DECL_INET_NTOP@
|
|
|
|
HAVE_DECL_INET_PTON = @HAVE_DECL_INET_PTON@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_DECL_INITSTATE = @HAVE_DECL_INITSTATE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_LDEXPL = @HAVE_DECL_LDEXPL@
|
|
|
|
HAVE_DECL_LOCALTIME_R = @HAVE_DECL_LOCALTIME_R@
|
|
|
|
HAVE_DECL_LOG10L = @HAVE_DECL_LOG10L@
|
|
|
|
HAVE_DECL_LOG2 = @HAVE_DECL_LOG2@
|
|
|
|
HAVE_DECL_LOG2F = @HAVE_DECL_LOG2F@
|
|
|
|
HAVE_DECL_LOG2L = @HAVE_DECL_LOG2L@
|
|
|
|
HAVE_DECL_LOGB = @HAVE_DECL_LOGB@
|
|
|
|
HAVE_DECL_LOGL = @HAVE_DECL_LOGL@
|
|
|
|
HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
|
|
|
|
HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
|
|
|
|
HAVE_DECL_OBSTACK_PRINTF = @HAVE_DECL_OBSTACK_PRINTF@
|
|
|
|
HAVE_DECL_REMAINDER = @HAVE_DECL_REMAINDER@
|
|
|
|
HAVE_DECL_REMAINDERL = @HAVE_DECL_REMAINDERL@
|
|
|
|
HAVE_DECL_RINTF = @HAVE_DECL_RINTF@
|
|
|
|
HAVE_DECL_ROUND = @HAVE_DECL_ROUND@
|
|
|
|
HAVE_DECL_ROUNDF = @HAVE_DECL_ROUNDF@
|
|
|
|
HAVE_DECL_ROUNDL = @HAVE_DECL_ROUNDL@
|
|
|
|
HAVE_DECL_SETENV = @HAVE_DECL_SETENV@
|
|
|
|
HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_DECL_SETSTATE = @HAVE_DECL_SETSTATE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_SINL = @HAVE_DECL_SINL@
|
|
|
|
HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
|
|
|
|
HAVE_DECL_SQRTL = @HAVE_DECL_SQRTL@
|
|
|
|
HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
|
|
|
|
HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@
|
2021-05-19 10:11:41 +08:00
|
|
|
HAVE_DECL_STRNCASECMP = @HAVE_DECL_STRNCASECMP@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
|
|
|
|
HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
|
|
|
|
HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@
|
|
|
|
HAVE_DECL_STRTOIMAX = @HAVE_DECL_STRTOIMAX@
|
|
|
|
HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
|
|
|
|
HAVE_DECL_STRTOUMAX = @HAVE_DECL_STRTOUMAX@
|
|
|
|
HAVE_DECL_TANL = @HAVE_DECL_TANL@
|
|
|
|
HAVE_DECL_TRUNC = @HAVE_DECL_TRUNC@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_DECL_TRUNCATE = @HAVE_DECL_TRUNCATE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_TRUNCF = @HAVE_DECL_TRUNCF@
|
|
|
|
HAVE_DECL_TRUNCL = @HAVE_DECL_TRUNCL@
|
|
|
|
HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@
|
|
|
|
HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@
|
|
|
|
HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_DECL_WCSDUP = @HAVE_DECL_WCSDUP@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_DECL_WCTOB = @HAVE_DECL_WCTOB@
|
|
|
|
HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
|
|
|
|
HAVE_DIRENT_H = @HAVE_DIRENT_H@
|
|
|
|
HAVE_DPRINTF = @HAVE_DPRINTF@
|
|
|
|
HAVE_DUP3 = @HAVE_DUP3@
|
2020-02-23 09:31:54 +08:00
|
|
|
HAVE_DUPLOCALE = @HAVE_DUPLOCALE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_EUIDACCESS = @HAVE_EUIDACCESS@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_EXECVPE = @HAVE_EXECVPE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_EXPF = @HAVE_EXPF@
|
|
|
|
HAVE_EXPL = @HAVE_EXPL@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_EXPLICIT_BZERO = @HAVE_EXPLICIT_BZERO@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_EXPM1 = @HAVE_EXPM1@
|
|
|
|
HAVE_EXPM1F = @HAVE_EXPM1F@
|
|
|
|
HAVE_FABSF = @HAVE_FABSF@
|
|
|
|
HAVE_FABSL = @HAVE_FABSL@
|
|
|
|
HAVE_FACCESSAT = @HAVE_FACCESSAT@
|
|
|
|
HAVE_FCHDIR = @HAVE_FCHDIR@
|
|
|
|
HAVE_FCHMODAT = @HAVE_FCHMODAT@
|
|
|
|
HAVE_FCHOWNAT = @HAVE_FCHOWNAT@
|
|
|
|
HAVE_FCNTL = @HAVE_FCNTL@
|
|
|
|
HAVE_FDATASYNC = @HAVE_FDATASYNC@
|
|
|
|
HAVE_FDOPENDIR = @HAVE_FDOPENDIR@
|
|
|
|
HAVE_FEATURES_H = @HAVE_FEATURES_H@
|
2021-05-19 10:11:41 +08:00
|
|
|
HAVE_FFS = @HAVE_FFS@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_FFSL = @HAVE_FFSL@
|
|
|
|
HAVE_FFSLL = @HAVE_FFSLL@
|
|
|
|
HAVE_FMA = @HAVE_FMA@
|
|
|
|
HAVE_FMAF = @HAVE_FMAF@
|
|
|
|
HAVE_FMAL = @HAVE_FMAL@
|
|
|
|
HAVE_FMODF = @HAVE_FMODF@
|
|
|
|
HAVE_FMODL = @HAVE_FMODL@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_FNMATCH = @HAVE_FNMATCH@
|
|
|
|
HAVE_FNMATCH_H = @HAVE_FNMATCH_H@
|
2020-02-23 09:31:54 +08:00
|
|
|
HAVE_FREELOCALE = @HAVE_FREELOCALE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_FREXPF = @HAVE_FREXPF@
|
|
|
|
HAVE_FSEEKO = @HAVE_FSEEKO@
|
|
|
|
HAVE_FSTATAT = @HAVE_FSTATAT@
|
|
|
|
HAVE_FSYNC = @HAVE_FSYNC@
|
|
|
|
HAVE_FTELLO = @HAVE_FTELLO@
|
|
|
|
HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
|
|
|
|
HAVE_FUTIMENS = @HAVE_FUTIMENS@
|
|
|
|
HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@
|
2020-08-27 06:37:28 +08:00
|
|
|
HAVE_GETENTROPY = @HAVE_GETENTROPY@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_GETGROUPS = @HAVE_GETGROUPS@
|
|
|
|
HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@
|
|
|
|
HAVE_GETLOGIN = @HAVE_GETLOGIN@
|
|
|
|
HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_GETPASS = @HAVE_GETPASS@
|
2020-08-27 06:37:28 +08:00
|
|
|
HAVE_GETRANDOM = @HAVE_GETRANDOM@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
|
|
|
|
HAVE_GETTIMEOFDAY = @HAVE_GETTIMEOFDAY@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_GETUMASK = @HAVE_GETUMASK@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_GLOB = @HAVE_GLOB@
|
|
|
|
HAVE_GLOB_H = @HAVE_GLOB_H@
|
|
|
|
HAVE_GLOB_PATTERN_P = @HAVE_GLOB_PATTERN_P@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_GRANTPT = @HAVE_GRANTPT@
|
|
|
|
HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@
|
|
|
|
HAVE_HYPOTF = @HAVE_HYPOTF@
|
|
|
|
HAVE_HYPOTL = @HAVE_HYPOTL@
|
|
|
|
HAVE_ILOGB = @HAVE_ILOGB@
|
|
|
|
HAVE_ILOGBF = @HAVE_ILOGBF@
|
|
|
|
HAVE_ILOGBL = @HAVE_ILOGBL@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_IMAXDIV_T = @HAVE_IMAXDIV_T@
|
|
|
|
HAVE_INITSTATE = @HAVE_INITSTATE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
|
2020-08-27 06:37:28 +08:00
|
|
|
HAVE_ISBLANK = @HAVE_ISBLANK@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_ISNAND = @HAVE_ISNAND@
|
|
|
|
HAVE_ISNANF = @HAVE_ISNANF@
|
|
|
|
HAVE_ISNANL = @HAVE_ISNANL@
|
|
|
|
HAVE_ISWBLANK = @HAVE_ISWBLANK@
|
|
|
|
HAVE_ISWCNTRL = @HAVE_ISWCNTRL@
|
|
|
|
HAVE_LCHMOD = @HAVE_LCHMOD@
|
|
|
|
HAVE_LCHOWN = @HAVE_LCHOWN@
|
|
|
|
HAVE_LDEXPF = @HAVE_LDEXPF@
|
|
|
|
HAVE_LINK = @HAVE_LINK@
|
|
|
|
HAVE_LINKAT = @HAVE_LINKAT@
|
|
|
|
HAVE_LOG10F = @HAVE_LOG10F@
|
|
|
|
HAVE_LOG10L = @HAVE_LOG10L@
|
|
|
|
HAVE_LOG1P = @HAVE_LOG1P@
|
|
|
|
HAVE_LOG1PF = @HAVE_LOG1PF@
|
|
|
|
HAVE_LOG1PL = @HAVE_LOG1PL@
|
|
|
|
HAVE_LOGBF = @HAVE_LOGBF@
|
|
|
|
HAVE_LOGBL = @HAVE_LOGBL@
|
|
|
|
HAVE_LOGF = @HAVE_LOGF@
|
|
|
|
HAVE_LOGL = @HAVE_LOGL@
|
|
|
|
HAVE_LSTAT = @HAVE_LSTAT@
|
|
|
|
HAVE_MAX_ALIGN_T = @HAVE_MAX_ALIGN_T@
|
|
|
|
HAVE_MBRLEN = @HAVE_MBRLEN@
|
|
|
|
HAVE_MBRTOWC = @HAVE_MBRTOWC@
|
|
|
|
HAVE_MBSINIT = @HAVE_MBSINIT@
|
|
|
|
HAVE_MBSLEN = @HAVE_MBSLEN@
|
|
|
|
HAVE_MBSNRTOWCS = @HAVE_MBSNRTOWCS@
|
|
|
|
HAVE_MBSRTOWCS = @HAVE_MBSRTOWCS@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_MBTOWC = @HAVE_MBTOWC@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_MEMPCPY = @HAVE_MEMPCPY@
|
|
|
|
HAVE_MKDIRAT = @HAVE_MKDIRAT@
|
|
|
|
HAVE_MKDTEMP = @HAVE_MKDTEMP@
|
|
|
|
HAVE_MKFIFO = @HAVE_MKFIFO@
|
|
|
|
HAVE_MKFIFOAT = @HAVE_MKFIFOAT@
|
|
|
|
HAVE_MKNOD = @HAVE_MKNOD@
|
|
|
|
HAVE_MKNODAT = @HAVE_MKNODAT@
|
|
|
|
HAVE_MKOSTEMP = @HAVE_MKOSTEMP@
|
|
|
|
HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@
|
|
|
|
HAVE_MKSTEMP = @HAVE_MKSTEMP@
|
|
|
|
HAVE_MKSTEMPS = @HAVE_MKSTEMPS@
|
|
|
|
HAVE_MODFF = @HAVE_MODFF@
|
|
|
|
HAVE_MODFL = @HAVE_MODFL@
|
|
|
|
HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@
|
|
|
|
HAVE_NANOSLEEP = @HAVE_NANOSLEEP@
|
2021-05-30 00:48:49 +08:00
|
|
|
HAVE_NETDB_H = @HAVE_NETDB_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
|
2020-02-23 09:31:54 +08:00
|
|
|
HAVE_NEWLOCALE = @HAVE_NEWLOCALE@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_OPENAT = @HAVE_OPENAT@
|
|
|
|
HAVE_OPENDIR = @HAVE_OPENDIR@
|
|
|
|
HAVE_OS_H = @HAVE_OS_H@
|
|
|
|
HAVE_PCLOSE = @HAVE_PCLOSE@
|
|
|
|
HAVE_PIPE = @HAVE_PIPE@
|
|
|
|
HAVE_PIPE2 = @HAVE_PIPE2@
|
|
|
|
HAVE_POPEN = @HAVE_POPEN@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_POSIX_MEMALIGN = @HAVE_POSIX_MEMALIGN@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@
|
|
|
|
HAVE_POSIX_SIGNALBLOCKING = @HAVE_POSIX_SIGNALBLOCKING@
|
|
|
|
HAVE_POWF = @HAVE_POWF@
|
|
|
|
HAVE_PREAD = @HAVE_PREAD@
|
2021-05-30 00:55:39 +08:00
|
|
|
HAVE_PSELECT = @HAVE_PSELECT@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_PTHREAD_SIGMASK = @HAVE_PTHREAD_SIGMASK@
|
|
|
|
HAVE_PTSNAME = @HAVE_PTSNAME@
|
|
|
|
HAVE_PTSNAME_R = @HAVE_PTSNAME_R@
|
|
|
|
HAVE_PWRITE = @HAVE_PWRITE@
|
|
|
|
HAVE_QSORT_R = @HAVE_QSORT_R@
|
|
|
|
HAVE_RAISE = @HAVE_RAISE@
|
|
|
|
HAVE_RANDOM = @HAVE_RANDOM@
|
|
|
|
HAVE_RANDOM_H = @HAVE_RANDOM_H@
|
|
|
|
HAVE_RANDOM_R = @HAVE_RANDOM_R@
|
|
|
|
HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@
|
|
|
|
HAVE_READDIR = @HAVE_READDIR@
|
|
|
|
HAVE_READLINK = @HAVE_READLINK@
|
|
|
|
HAVE_READLINKAT = @HAVE_READLINKAT@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_REALLOCARRAY = @HAVE_REALLOCARRAY@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_REALPATH = @HAVE_REALPATH@
|
|
|
|
HAVE_REMAINDER = @HAVE_REMAINDER@
|
|
|
|
HAVE_REMAINDERF = @HAVE_REMAINDERF@
|
|
|
|
HAVE_RENAMEAT = @HAVE_RENAMEAT@
|
|
|
|
HAVE_REWINDDIR = @HAVE_REWINDDIR@
|
|
|
|
HAVE_RINT = @HAVE_RINT@
|
|
|
|
HAVE_RINTL = @HAVE_RINTL@
|
|
|
|
HAVE_RPMATCH = @HAVE_RPMATCH@
|
|
|
|
HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = @HAVE_SAME_LONG_DOUBLE_AS_DOUBLE@
|
|
|
|
HAVE_SA_FAMILY_T = @HAVE_SA_FAMILY_T@
|
|
|
|
HAVE_SCANDIR = @HAVE_SCANDIR@
|
|
|
|
HAVE_SECURE_GETENV = @HAVE_SECURE_GETENV@
|
|
|
|
HAVE_SETENV = @HAVE_SETENV@
|
|
|
|
HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_SETSTATE = @HAVE_SETSTATE@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_SIGABBREV_NP = @HAVE_SIGABBREV_NP@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_SIGACTION = @HAVE_SIGACTION@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_SIGDESCR_NP = @HAVE_SIGDESCR_NP@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_SIGHANDLER_T = @HAVE_SIGHANDLER_T@
|
|
|
|
HAVE_SIGINFO_T = @HAVE_SIGINFO_T@
|
|
|
|
HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
|
|
|
|
HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
|
|
|
|
HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
|
|
|
|
HAVE_SIGSET_T = @HAVE_SIGSET_T@
|
|
|
|
HAVE_SINF = @HAVE_SINF@
|
|
|
|
HAVE_SINHF = @HAVE_SINHF@
|
|
|
|
HAVE_SINL = @HAVE_SINL@
|
|
|
|
HAVE_SLEEP = @HAVE_SLEEP@
|
|
|
|
HAVE_SQRTF = @HAVE_SQRTF@
|
|
|
|
HAVE_SQRTL = @HAVE_SQRTL@
|
|
|
|
HAVE_STDINT_H = @HAVE_STDINT_H@
|
|
|
|
HAVE_STPCPY = @HAVE_STPCPY@
|
|
|
|
HAVE_STPNCPY = @HAVE_STPNCPY@
|
2021-05-19 10:11:41 +08:00
|
|
|
HAVE_STRCASECMP = @HAVE_STRCASECMP@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_STRCASESTR = @HAVE_STRCASESTR@
|
|
|
|
HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_STRERRORNAME_NP = @HAVE_STRERRORNAME_NP@
|
2021-05-19 10:11:41 +08:00
|
|
|
HAVE_STRINGS_H = @HAVE_STRINGS_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_STRPBRK = @HAVE_STRPBRK@
|
|
|
|
HAVE_STRPTIME = @HAVE_STRPTIME@
|
|
|
|
HAVE_STRSEP = @HAVE_STRSEP@
|
|
|
|
HAVE_STRTOD = @HAVE_STRTOD@
|
2022-04-18 23:44:18 +08:00
|
|
|
HAVE_STRTOL = @HAVE_STRTOL@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_STRTOLD = @HAVE_STRTOLD@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_STRTOLL = @HAVE_STRTOLL@
|
2022-04-18 23:44:18 +08:00
|
|
|
HAVE_STRTOUL = @HAVE_STRTOUL@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_STRTOULL = @HAVE_STRTOULL@
|
2021-05-30 00:48:49 +08:00
|
|
|
HAVE_STRUCT_ADDRINFO = @HAVE_STRUCT_ADDRINFO@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@
|
|
|
|
HAVE_STRUCT_SIGACTION_SA_SIGACTION = @HAVE_STRUCT_SIGACTION_SA_SIGACTION@
|
|
|
|
HAVE_STRUCT_SOCKADDR_STORAGE = @HAVE_STRUCT_SOCKADDR_STORAGE@
|
|
|
|
HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY = @HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY@
|
|
|
|
HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
|
|
|
|
HAVE_STRVERSCMP = @HAVE_STRVERSCMP@
|
|
|
|
HAVE_SYMLINK = @HAVE_SYMLINK@
|
|
|
|
HAVE_SYMLINKAT = @HAVE_SYMLINKAT@
|
|
|
|
HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
|
|
|
|
HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
|
|
|
|
HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@
|
|
|
|
HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
|
2020-08-27 06:37:28 +08:00
|
|
|
HAVE_SYS_RANDOM_H = @HAVE_SYS_RANDOM_H@
|
2021-05-30 00:55:39 +08:00
|
|
|
HAVE_SYS_SELECT_H = @HAVE_SYS_SELECT_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
|
|
|
|
HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
|
|
|
|
HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
|
|
|
|
HAVE_SYS_UIO_H = @HAVE_SYS_UIO_H@
|
|
|
|
HAVE_TANF = @HAVE_TANF@
|
|
|
|
HAVE_TANHF = @HAVE_TANHF@
|
|
|
|
HAVE_TANL = @HAVE_TANL@
|
|
|
|
HAVE_TIMEGM = @HAVE_TIMEGM@
|
2021-01-23 03:55:45 +08:00
|
|
|
HAVE_TIMESPEC_GET = @HAVE_TIMESPEC_GET@
|
2022-04-18 23:44:18 +08:00
|
|
|
HAVE_TIMESPEC_GETRES = @HAVE_TIMESPEC_GETRES@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_TIMEZONE_T = @HAVE_TIMEZONE_T@
|
|
|
|
HAVE_TYPE_VOLATILE_SIG_ATOMIC_T = @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@
|
|
|
|
HAVE_UNISTD_H = @HAVE_UNISTD_H@
|
|
|
|
HAVE_UNLINKAT = @HAVE_UNLINKAT@
|
|
|
|
HAVE_UNLOCKPT = @HAVE_UNLOCKPT@
|
|
|
|
HAVE_USLEEP = @HAVE_USLEEP@
|
|
|
|
HAVE_UTIMENSAT = @HAVE_UTIMENSAT@
|
|
|
|
HAVE_VASPRINTF = @HAVE_VASPRINTF@
|
|
|
|
HAVE_VDPRINTF = @HAVE_VDPRINTF@
|
2020-02-23 09:31:54 +08:00
|
|
|
HAVE_VISIBILITY = @HAVE_VISIBILITY@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_WCHAR_H = @HAVE_WCHAR_H@
|
|
|
|
HAVE_WCHAR_T = @HAVE_WCHAR_T@
|
|
|
|
HAVE_WCPCPY = @HAVE_WCPCPY@
|
|
|
|
HAVE_WCPNCPY = @HAVE_WCPNCPY@
|
|
|
|
HAVE_WCRTOMB = @HAVE_WCRTOMB@
|
|
|
|
HAVE_WCSCASECMP = @HAVE_WCSCASECMP@
|
|
|
|
HAVE_WCSCAT = @HAVE_WCSCAT@
|
|
|
|
HAVE_WCSCHR = @HAVE_WCSCHR@
|
|
|
|
HAVE_WCSCMP = @HAVE_WCSCMP@
|
|
|
|
HAVE_WCSCOLL = @HAVE_WCSCOLL@
|
|
|
|
HAVE_WCSCPY = @HAVE_WCSCPY@
|
|
|
|
HAVE_WCSCSPN = @HAVE_WCSCSPN@
|
|
|
|
HAVE_WCSDUP = @HAVE_WCSDUP@
|
2019-11-17 13:37:06 +08:00
|
|
|
HAVE_WCSFTIME = @HAVE_WCSFTIME@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_WCSLEN = @HAVE_WCSLEN@
|
|
|
|
HAVE_WCSNCASECMP = @HAVE_WCSNCASECMP@
|
|
|
|
HAVE_WCSNCAT = @HAVE_WCSNCAT@
|
|
|
|
HAVE_WCSNCMP = @HAVE_WCSNCMP@
|
|
|
|
HAVE_WCSNCPY = @HAVE_WCSNCPY@
|
|
|
|
HAVE_WCSNLEN = @HAVE_WCSNLEN@
|
|
|
|
HAVE_WCSNRTOMBS = @HAVE_WCSNRTOMBS@
|
|
|
|
HAVE_WCSPBRK = @HAVE_WCSPBRK@
|
|
|
|
HAVE_WCSRCHR = @HAVE_WCSRCHR@
|
|
|
|
HAVE_WCSRTOMBS = @HAVE_WCSRTOMBS@
|
|
|
|
HAVE_WCSSPN = @HAVE_WCSSPN@
|
|
|
|
HAVE_WCSSTR = @HAVE_WCSSTR@
|
|
|
|
HAVE_WCSTOK = @HAVE_WCSTOK@
|
|
|
|
HAVE_WCSWIDTH = @HAVE_WCSWIDTH@
|
|
|
|
HAVE_WCSXFRM = @HAVE_WCSXFRM@
|
|
|
|
HAVE_WCTRANS_T = @HAVE_WCTRANS_T@
|
|
|
|
HAVE_WCTYPE_H = @HAVE_WCTYPE_H@
|
|
|
|
HAVE_WCTYPE_T = @HAVE_WCTYPE_T@
|
|
|
|
HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
|
|
|
|
HAVE_WINT_T = @HAVE_WINT_T@
|
|
|
|
HAVE_WMEMCHR = @HAVE_WMEMCHR@
|
|
|
|
HAVE_WMEMCMP = @HAVE_WMEMCMP@
|
|
|
|
HAVE_WMEMCPY = @HAVE_WMEMCPY@
|
|
|
|
HAVE_WMEMMOVE = @HAVE_WMEMMOVE@
|
2020-08-27 06:37:28 +08:00
|
|
|
HAVE_WMEMPCPY = @HAVE_WMEMPCPY@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE_WMEMSET = @HAVE_WMEMSET@
|
|
|
|
HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
|
2020-02-23 09:31:54 +08:00
|
|
|
HAVE_XLOCALE_H = @HAVE_XLOCALE_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
HAVE__BOOL = @HAVE__BOOL@
|
|
|
|
HAVE__EXIT = @HAVE__EXIT@
|
|
|
|
INCLUDE_NEXT = @INCLUDE_NEXT@
|
|
|
|
INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@
|
|
|
|
INET_NTOP_LIB = @INET_NTOP_LIB@
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
|
|
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
|
|
|
INT32_MAX_LT_INTMAX_MAX = @INT32_MAX_LT_INTMAX_MAX@
|
|
|
|
INT64_MAX_EQ_LONG_MAX = @INT64_MAX_EQ_LONG_MAX@
|
Unify Solaris procfs and largefile handling
GDB currently doesn't build on 32-bit Solaris:
* On Solaris 11.4/x86:
In file included from /usr/include/sys/procfs.h:26,
from /vol/src/gnu/gdb/hg/master/dist/gdb/i386-sol2-nat.c:24:
/usr/include/sys/old_procfs.h:31:2: error: #error "Cannot use procfs in the large file compilation environment"
#error "Cannot use procfs in the large file compilation environment"
^~~~~
* On Solaris 11.3/x86 there are several more instances of this.
The interaction between procfs and large-file support historically has
been a royal mess on Solaris:
* There are two versions of the procfs interface:
** The old ioctl-based /proc, deprecated and not used any longer in
either gdb or binutils.
** The `new' (introduced in Solaris 2.6, 1997) structured /proc.
* There are two headers one can possibly include:
** <procfs.h> which only provides the structured /proc, definining
_STRUCTURED_PROC=1 and then including ...
** <sys/procfs.h> which defaults to _STRUCTURED_PROC=0, the ioctl-based
/proc, but provides structured /proc if _STRUCTURED_PROC == 1.
* procfs and the large-file environment didn't go well together:
** Until Solaris 11.3, <sys/procfs.h> would always #error in 32-bit
compilations when the large-file environment was active
(_FILE_OFFSET_BITS == 64).
** In both Solaris 11.4 and Illumos, this restriction was lifted for
structured /proc.
So one has to be careful always to define _STRUCTURED_PROC=1 when
testing for or using <sys/procfs.h> on Solaris. As the errors above
show, this isn't always the case in binutils-gdb right now.
Also one may need to disable large-file support for 32-bit compilations
on Solaris. config/largefile.m4 meant to do this by wrapping the
AC_SYS_LARGEFILE autoconf macro with appropriate checks, yielding
ACX_LARGEFILE. Unfortunately the macro doesn't always succeed because
it neglects the _STRUCTURED_PROC part.
To make things even worse, since GCC 9 g++ predefines
_FILE_OFFSET_BITS=64 on Solaris. So even if largefile.m4 deciced not to
enable large-file support, this has no effect, breaking the gdb build.
This patch addresses all this as follows:
* All tests for the <sys/procfs.h> header are made with
_STRUCTURED_PROC=1, the definition going into the various config.h
files instead of having to make them (and sometimes failing) in the
affected sources.
* To cope with the g++ predefine of _FILE_OFFSET_BITS=64,
-U_FILE_OFFSET_BITS is added to various *_CPPFLAGS variables. It had
been far easier to have just
#undef _FILE_OFFSET_BITS
in config.h, but unfortunately such a construct in config.in is
commented by config.status irrespective of indentation and whitespace
if large-file support is disabled. I found no way around this and
putting the #undef in several global headers for bfd, binutils, ld,
and gdb seemed way more invasive.
* Last, the applicability check in largefile.m4 was modified only to
disable largefile support if really needed. To do so, it checks if
<sys/procfs.h> compiles with _FILE_OFFSET_BITS=64 defined. If it
doesn't, the disabling only happens if gdb exists in-tree and isn't
disabled, otherwise (building binutils from a tarball), there's no
conflict.
What initially confused me was the check for $plugins here, which
originally caused the disabling not to take place. Since AC_PLUGINGS
does enable plugin support if <dlfcn.h> exists (which it does on
Solaris), the disabling never happened.
I could find no explanation why the linker plugin needs large-file
support but thought it would be enough if gld and GCC's lto-plugin
agreed on the _FILE_OFFSET_BITS value. Unfortunately, that's not
enough: lto-plugin uses the simple-object interface from libiberty,
which includes off_t arguments. So to fully disable large-file
support would mean also disabling it in libiberty and its users: gcc
and libstdc++-v3. This seems highly undesirable, so I decided to
disable the linker plugin instead if large-file support won't work.
The patch allows binutils+gdb to build on i386-pc-solaris2.11 (both
Solaris 11.3 and 11.4, using GCC 9.3.0 which is the worst case due to
predefined _FILE_OFFSET_BITS=64). Also regtested on
amd64-pc-solaris2.11 (again on Solaris 11.3 and 11.4),
x86_64-pc-linux-gnu and i686-pc-linux-gnu.
config:
* largefile.m4 (ACX_LARGEFILE) <sparc-*-solaris*|i?86-*-solaris*>:
Check for <sys/procfs.h> incompatilibity with large-file support
on Solaris.
Only disable large-file support and perhaps plugins if needed.
Set, substitute LARGEFILE_CPPFLAGS if so.
bfd:
* bfd.m4 (BFD_SYS_PROCFS_H): New macro.
(BFD_HAVE_SYS_PROCFS_TYPE): Require BFD_SYS_PROCFS_H.
Don't define _STRUCTURED_PROC.
(BFD_HAVE_SYS_PROCFS_TYPE_MEMBER): Likewise.
* elf.c [HAVE_SYS_PROCFS_H] (_STRUCTURED_PROC): Don't define.
* configure.ac: Use BFD_SYS_PROCFS_H to check for <sys/procfs.h>.
* configure, config.in: Regenerate.
* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
* Makefile.in, doc/Makefile.in: Regenerate.
binutils:
* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
* Makefile.in, doc/Makefile.in: Regenerate.
* configure: Regenerate.
gas:
* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
* Makefile.in, doc/Makefile.in: Regenerate.
* configure: Regenerate.
gdb:
* proc-api.c (_STRUCTURED_PROC): Don't define.
* proc-events.c: Likewise.
* proc-flags.c: Likewise.
* proc-why.c: Likewise.
* procfs.c: Likewise.
* Makefile.in (INTERNAL_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
* configure, config.in: Regenerate.
gdbserver:
* configure, config.in: Regenerate.
gdbsupport:
* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
* common.m4 (GDB_AC_COMMON): Use BFD_SYS_PROCFS_H to check for
<sys/procfs.h>.
* Makefile.in: Regenerate.
* configure, config.in: Regenerate.
gnulib:
* configure.ac: Run ACX_LARGEFILE before gl_EARLY.
* configure: Regenerate.
gprof:
* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
* Makefile.in: Regenerate.
* configure: Regenerate.
ld:
* Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
* Makefile.in: Regenerate.
* configure: Regenerate.
2020-07-30 21:41:50 +08:00
|
|
|
LARGEFILE_CPPFLAGS = @LARGEFILE_CPPFLAGS@
|
2019-11-15 08:17:59 +08:00
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
LIBGNU_LIBDEPS = @LIBGNU_LIBDEPS@
|
|
|
|
LIBGNU_LTLIBDEPS = @LIBGNU_LTLIBDEPS@
|
|
|
|
LIBINTL = @LIBINTL@
|
2019-11-07 02:49:52 +08:00
|
|
|
LIBMULTITHREAD = @LIBMULTITHREAD@
|
2019-11-15 08:17:59 +08:00
|
|
|
LIBOBJS = @LIBOBJS@
|
2019-11-17 13:37:06 +08:00
|
|
|
LIBPMULTITHREAD = @LIBPMULTITHREAD@
|
|
|
|
LIBPTHREAD = @LIBPTHREAD@
|
2019-11-15 08:17:59 +08:00
|
|
|
LIBS = @LIBS@
|
2021-05-30 00:55:39 +08:00
|
|
|
LIBSOCKET = @LIBSOCKET@
|
2020-02-23 09:31:54 +08:00
|
|
|
LIBSTDTHREAD = @LIBSTDTHREAD@
|
2019-11-07 02:49:52 +08:00
|
|
|
LIBTHREAD = @LIBTHREAD@
|
2021-01-23 03:55:45 +08:00
|
|
|
LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
|
2019-11-17 13:37:06 +08:00
|
|
|
LIB_GETLOGIN = @LIB_GETLOGIN@
|
2020-08-27 06:37:28 +08:00
|
|
|
LIB_GETRANDOM = @LIB_GETRANDOM@
|
2020-02-23 09:31:54 +08:00
|
|
|
LIB_HARD_LOCALE = @LIB_HARD_LOCALE@
|
|
|
|
LIB_MBRTOWC = @LIB_MBRTOWC@
|
|
|
|
LIB_SCHED_YIELD = @LIB_SCHED_YIELD@
|
2021-05-30 00:55:39 +08:00
|
|
|
LIB_SELECT = @LIB_SELECT@
|
2020-02-23 09:31:54 +08:00
|
|
|
LIB_SETLOCALE_NULL = @LIB_SETLOCALE_NULL@
|
2019-11-15 08:17:59 +08:00
|
|
|
LIMITS_H = @LIMITS_H@
|
|
|
|
LN_S = @LN_S@
|
|
|
|
LOCALCHARSET_TESTS_ENVIRONMENT = @LOCALCHARSET_TESTS_ENVIRONMENT@
|
2022-04-18 23:44:18 +08:00
|
|
|
LOCALENAME_ENHANCE_LOCALE_FUNCS = @LOCALENAME_ENHANCE_LOCALE_FUNCS@
|
2019-11-15 08:17:59 +08:00
|
|
|
LOCALE_FR = @LOCALE_FR@
|
|
|
|
LOCALE_FR_UTF8 = @LOCALE_FR_UTF8@
|
|
|
|
LOCALE_JA = @LOCALE_JA@
|
|
|
|
LOCALE_ZH_CN = @LOCALE_ZH_CN@
|
|
|
|
LTLIBINTL = @LTLIBINTL@
|
2019-11-07 02:49:52 +08:00
|
|
|
LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
|
2019-11-15 08:17:59 +08:00
|
|
|
LTLIBOBJS = @LTLIBOBJS@
|
2019-11-07 02:49:52 +08:00
|
|
|
LTLIBTHREAD = @LTLIBTHREAD@
|
2019-11-15 08:17:59 +08:00
|
|
|
MAINT = @MAINT@
|
|
|
|
MAKEINFO = @MAKEINFO@
|
|
|
|
MKDIR_P = @MKDIR_P@
|
|
|
|
NETINET_IN_H = @NETINET_IN_H@
|
|
|
|
NEXT_ARPA_INET_H = @NEXT_ARPA_INET_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_ARPA_INET_H = @NEXT_AS_FIRST_DIRECTIVE_ARPA_INET_H@
|
2020-08-27 06:37:28 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_CTYPE_H = @NEXT_AS_FIRST_DIRECTIVE_CTYPE_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_DIRENT_H = @NEXT_AS_FIRST_DIRECTIVE_DIRENT_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_FCNTL_H = @NEXT_AS_FIRST_DIRECTIVE_FCNTL_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_FLOAT_H = @NEXT_AS_FIRST_DIRECTIVE_FLOAT_H@
|
2019-11-17 13:37:06 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_FNMATCH_H = @NEXT_AS_FIRST_DIRECTIVE_FNMATCH_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_GLOB_H = @NEXT_AS_FIRST_DIRECTIVE_GLOB_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H = @NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_LIMITS_H = @NEXT_AS_FIRST_DIRECTIVE_LIMITS_H@
|
2020-02-23 09:31:54 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_LOCALE_H = @NEXT_AS_FIRST_DIRECTIVE_LOCALE_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_MATH_H = @NEXT_AS_FIRST_DIRECTIVE_MATH_H@
|
2021-05-30 00:48:49 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_NETDB_H = @NEXT_AS_FIRST_DIRECTIVE_NETDB_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_NETINET_IN_H = @NEXT_AS_FIRST_DIRECTIVE_NETINET_IN_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H = @NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_STDIO_H = @NEXT_AS_FIRST_DIRECTIVE_STDIO_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@
|
2021-05-19 10:11:41 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_STRINGS_H = @NEXT_AS_FIRST_DIRECTIVE_STRINGS_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@
|
2020-08-27 06:37:28 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SYS_RANDOM_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_RANDOM_H@
|
2021-05-30 00:55:39 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SYS_UIO_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_UIO_H@
|
2021-05-30 02:14:59 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_SYS_WAIT_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_WAIT_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_AS_FIRST_DIRECTIVE_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_TIME_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_WCHAR_H = @NEXT_AS_FIRST_DIRECTIVE_WCHAR_H@
|
|
|
|
NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H = @NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H@
|
2020-08-27 06:37:28 +08:00
|
|
|
NEXT_CTYPE_H = @NEXT_CTYPE_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_DIRENT_H = @NEXT_DIRENT_H@
|
|
|
|
NEXT_ERRNO_H = @NEXT_ERRNO_H@
|
|
|
|
NEXT_FCNTL_H = @NEXT_FCNTL_H@
|
|
|
|
NEXT_FLOAT_H = @NEXT_FLOAT_H@
|
2019-11-17 13:37:06 +08:00
|
|
|
NEXT_FNMATCH_H = @NEXT_FNMATCH_H@
|
|
|
|
NEXT_GLOB_H = @NEXT_GLOB_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_INTTYPES_H = @NEXT_INTTYPES_H@
|
|
|
|
NEXT_LIMITS_H = @NEXT_LIMITS_H@
|
2020-02-23 09:31:54 +08:00
|
|
|
NEXT_LOCALE_H = @NEXT_LOCALE_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_MATH_H = @NEXT_MATH_H@
|
2021-05-30 00:48:49 +08:00
|
|
|
NEXT_NETDB_H = @NEXT_NETDB_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
|
|
|
|
NEXT_SIGNAL_H = @NEXT_SIGNAL_H@
|
|
|
|
NEXT_STDDEF_H = @NEXT_STDDEF_H@
|
|
|
|
NEXT_STDINT_H = @NEXT_STDINT_H@
|
|
|
|
NEXT_STDIO_H = @NEXT_STDIO_H@
|
|
|
|
NEXT_STDLIB_H = @NEXT_STDLIB_H@
|
2021-05-19 10:11:41 +08:00
|
|
|
NEXT_STRINGS_H = @NEXT_STRINGS_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_STRING_H = @NEXT_STRING_H@
|
2020-08-27 06:37:28 +08:00
|
|
|
NEXT_SYS_RANDOM_H = @NEXT_SYS_RANDOM_H@
|
2021-05-30 00:55:39 +08:00
|
|
|
NEXT_SYS_SELECT_H = @NEXT_SYS_SELECT_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
|
|
|
|
NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
|
|
|
|
NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
|
|
|
|
NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@
|
|
|
|
NEXT_SYS_UIO_H = @NEXT_SYS_UIO_H@
|
2021-05-30 02:14:59 +08:00
|
|
|
NEXT_SYS_WAIT_H = @NEXT_SYS_WAIT_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
NEXT_TIME_H = @NEXT_TIME_H@
|
|
|
|
NEXT_UNISTD_H = @NEXT_UNISTD_H@
|
|
|
|
NEXT_WCHAR_H = @NEXT_WCHAR_H@
|
|
|
|
NEXT_WCTYPE_H = @NEXT_WCTYPE_H@
|
|
|
|
OBJEXT = @OBJEXT@
|
|
|
|
PACKAGE = @PACKAGE@
|
|
|
|
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
|
|
PACKAGE_NAME = @PACKAGE_NAME@
|
|
|
|
PACKAGE_STRING = @PACKAGE_STRING@
|
|
|
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
|
|
|
PACKAGE_URL = @PACKAGE_URL@
|
|
|
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
|
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
|
|
|
PRAGMA_COLUMNS = @PRAGMA_COLUMNS@
|
|
|
|
PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@
|
|
|
|
PRIPTR_PREFIX = @PRIPTR_PREFIX@
|
|
|
|
PTHREAD_H_DEFINES_STRUCT_TIMESPEC = @PTHREAD_H_DEFINES_STRUCT_TIMESPEC@
|
|
|
|
PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
|
|
|
|
RANLIB = @RANLIB@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_ACCESS = @REPLACE_ACCESS@
|
|
|
|
REPLACE_ACOSF = @REPLACE_ACOSF@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_ALIGNED_ALLOC = @REPLACE_ALIGNED_ALLOC@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_ASINF = @REPLACE_ASINF@
|
|
|
|
REPLACE_ATAN2F = @REPLACE_ATAN2F@
|
|
|
|
REPLACE_ATANF = @REPLACE_ATANF@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_BTOWC = @REPLACE_BTOWC@
|
2022-04-18 23:44:18 +08:00
|
|
|
REPLACE_CALLOC_FOR_CALLOC_GNU = @REPLACE_CALLOC_FOR_CALLOC_GNU@
|
|
|
|
REPLACE_CALLOC_FOR_CALLOC_POSIX = @REPLACE_CALLOC_FOR_CALLOC_POSIX@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@
|
|
|
|
REPLACE_CBRTF = @REPLACE_CBRTF@
|
|
|
|
REPLACE_CBRTL = @REPLACE_CBRTL@
|
|
|
|
REPLACE_CEIL = @REPLACE_CEIL@
|
|
|
|
REPLACE_CEILF = @REPLACE_CEILF@
|
|
|
|
REPLACE_CEILL = @REPLACE_CEILL@
|
|
|
|
REPLACE_CHOWN = @REPLACE_CHOWN@
|
|
|
|
REPLACE_CLOSE = @REPLACE_CLOSE@
|
|
|
|
REPLACE_CLOSEDIR = @REPLACE_CLOSEDIR@
|
2022-04-18 23:44:18 +08:00
|
|
|
REPLACE_COPY_FILE_RANGE = @REPLACE_COPY_FILE_RANGE@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_COSF = @REPLACE_COSF@
|
|
|
|
REPLACE_COSHF = @REPLACE_COSHF@
|
|
|
|
REPLACE_CREAT = @REPLACE_CREAT@
|
|
|
|
REPLACE_CTIME = @REPLACE_CTIME@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_DIRFD = @REPLACE_DIRFD@
|
|
|
|
REPLACE_DPRINTF = @REPLACE_DPRINTF@
|
|
|
|
REPLACE_DUP = @REPLACE_DUP@
|
|
|
|
REPLACE_DUP2 = @REPLACE_DUP2@
|
2020-02-23 09:31:54 +08:00
|
|
|
REPLACE_DUPLOCALE = @REPLACE_DUPLOCALE@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_EXECL = @REPLACE_EXECL@
|
|
|
|
REPLACE_EXECLE = @REPLACE_EXECLE@
|
|
|
|
REPLACE_EXECLP = @REPLACE_EXECLP@
|
|
|
|
REPLACE_EXECV = @REPLACE_EXECV@
|
|
|
|
REPLACE_EXECVE = @REPLACE_EXECVE@
|
|
|
|
REPLACE_EXECVP = @REPLACE_EXECVP@
|
|
|
|
REPLACE_EXECVPE = @REPLACE_EXECVPE@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_EXP2 = @REPLACE_EXP2@
|
|
|
|
REPLACE_EXP2L = @REPLACE_EXP2L@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_EXPF = @REPLACE_EXPF@
|
|
|
|
REPLACE_EXPL = @REPLACE_EXPL@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_EXPM1 = @REPLACE_EXPM1@
|
|
|
|
REPLACE_EXPM1F = @REPLACE_EXPM1F@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_EXPM1L = @REPLACE_EXPM1L@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_FABSL = @REPLACE_FABSL@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_FACCESSAT = @REPLACE_FACCESSAT@
|
2020-02-23 09:31:54 +08:00
|
|
|
REPLACE_FCHMODAT = @REPLACE_FCHMODAT@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@
|
|
|
|
REPLACE_FCLOSE = @REPLACE_FCLOSE@
|
|
|
|
REPLACE_FCNTL = @REPLACE_FCNTL@
|
|
|
|
REPLACE_FDOPEN = @REPLACE_FDOPEN@
|
|
|
|
REPLACE_FDOPENDIR = @REPLACE_FDOPENDIR@
|
|
|
|
REPLACE_FFLUSH = @REPLACE_FFLUSH@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_FFSLL = @REPLACE_FFSLL@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_FLOOR = @REPLACE_FLOOR@
|
|
|
|
REPLACE_FLOORF = @REPLACE_FLOORF@
|
|
|
|
REPLACE_FLOORL = @REPLACE_FLOORL@
|
|
|
|
REPLACE_FMA = @REPLACE_FMA@
|
|
|
|
REPLACE_FMAF = @REPLACE_FMAF@
|
|
|
|
REPLACE_FMAL = @REPLACE_FMAL@
|
|
|
|
REPLACE_FMOD = @REPLACE_FMOD@
|
|
|
|
REPLACE_FMODF = @REPLACE_FMODF@
|
|
|
|
REPLACE_FMODL = @REPLACE_FMODL@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_FNMATCH = @REPLACE_FNMATCH@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_FOPEN = @REPLACE_FOPEN@
|
2022-04-18 23:44:18 +08:00
|
|
|
REPLACE_FOPEN_FOR_FOPEN_GNU = @REPLACE_FOPEN_FOR_FOPEN_GNU@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_FPRINTF = @REPLACE_FPRINTF@
|
|
|
|
REPLACE_FPURGE = @REPLACE_FPURGE@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_FREE = @REPLACE_FREE@
|
2020-02-23 09:31:54 +08:00
|
|
|
REPLACE_FREELOCALE = @REPLACE_FREELOCALE@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_FREOPEN = @REPLACE_FREOPEN@
|
|
|
|
REPLACE_FREXP = @REPLACE_FREXP@
|
|
|
|
REPLACE_FREXPF = @REPLACE_FREXPF@
|
|
|
|
REPLACE_FREXPL = @REPLACE_FREXPL@
|
|
|
|
REPLACE_FSEEK = @REPLACE_FSEEK@
|
|
|
|
REPLACE_FSEEKO = @REPLACE_FSEEKO@
|
|
|
|
REPLACE_FSTAT = @REPLACE_FSTAT@
|
|
|
|
REPLACE_FSTATAT = @REPLACE_FSTATAT@
|
|
|
|
REPLACE_FTELL = @REPLACE_FTELL@
|
|
|
|
REPLACE_FTELLO = @REPLACE_FTELLO@
|
|
|
|
REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@
|
|
|
|
REPLACE_FUTIMENS = @REPLACE_FUTIMENS@
|
2021-05-30 00:48:49 +08:00
|
|
|
REPLACE_GAI_STRERROR = @REPLACE_GAI_STRERROR@
|
|
|
|
REPLACE_GETADDRINFO = @REPLACE_GETADDRINFO@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_GETCWD = @REPLACE_GETCWD@
|
|
|
|
REPLACE_GETDELIM = @REPLACE_GETDELIM@
|
|
|
|
REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@
|
|
|
|
REPLACE_GETDTABLESIZE = @REPLACE_GETDTABLESIZE@
|
|
|
|
REPLACE_GETGROUPS = @REPLACE_GETGROUPS@
|
|
|
|
REPLACE_GETLINE = @REPLACE_GETLINE@
|
|
|
|
REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@
|
|
|
|
REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_GETPASS = @REPLACE_GETPASS@
|
2022-04-18 23:44:18 +08:00
|
|
|
REPLACE_GETPASS_FOR_GETPASS_GNU = @REPLACE_GETPASS_FOR_GETPASS_GNU@
|
2020-08-27 06:37:28 +08:00
|
|
|
REPLACE_GETRANDOM = @REPLACE_GETRANDOM@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_GLOB = @REPLACE_GLOB@
|
|
|
|
REPLACE_GLOB_PATTERN_P = @REPLACE_GLOB_PATTERN_P@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_GMTIME = @REPLACE_GMTIME@
|
|
|
|
REPLACE_HUGE_VAL = @REPLACE_HUGE_VAL@
|
|
|
|
REPLACE_HYPOT = @REPLACE_HYPOT@
|
|
|
|
REPLACE_HYPOTF = @REPLACE_HYPOTF@
|
|
|
|
REPLACE_HYPOTL = @REPLACE_HYPOTL@
|
|
|
|
REPLACE_ILOGB = @REPLACE_ILOGB@
|
|
|
|
REPLACE_ILOGBF = @REPLACE_ILOGBF@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_ILOGBL = @REPLACE_ILOGBL@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_INET_NTOP = @REPLACE_INET_NTOP@
|
|
|
|
REPLACE_INET_PTON = @REPLACE_INET_PTON@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_INITSTATE = @REPLACE_INITSTATE@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_ISATTY = @REPLACE_ISATTY@
|
|
|
|
REPLACE_ISFINITE = @REPLACE_ISFINITE@
|
|
|
|
REPLACE_ISINF = @REPLACE_ISINF@
|
|
|
|
REPLACE_ISNAN = @REPLACE_ISNAN@
|
|
|
|
REPLACE_ISWBLANK = @REPLACE_ISWBLANK@
|
|
|
|
REPLACE_ISWCNTRL = @REPLACE_ISWCNTRL@
|
2020-02-23 09:31:54 +08:00
|
|
|
REPLACE_ISWDIGIT = @REPLACE_ISWDIGIT@
|
|
|
|
REPLACE_ISWXDIGIT = @REPLACE_ISWXDIGIT@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_ITOLD = @REPLACE_ITOLD@
|
|
|
|
REPLACE_LCHOWN = @REPLACE_LCHOWN@
|
|
|
|
REPLACE_LDEXPL = @REPLACE_LDEXPL@
|
|
|
|
REPLACE_LINK = @REPLACE_LINK@
|
|
|
|
REPLACE_LINKAT = @REPLACE_LINKAT@
|
2020-02-23 09:31:54 +08:00
|
|
|
REPLACE_LOCALECONV = @REPLACE_LOCALECONV@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_LOCALTIME = @REPLACE_LOCALTIME@
|
|
|
|
REPLACE_LOCALTIME_R = @REPLACE_LOCALTIME_R@
|
|
|
|
REPLACE_LOG = @REPLACE_LOG@
|
|
|
|
REPLACE_LOG10 = @REPLACE_LOG10@
|
|
|
|
REPLACE_LOG10F = @REPLACE_LOG10F@
|
|
|
|
REPLACE_LOG10L = @REPLACE_LOG10L@
|
|
|
|
REPLACE_LOG1P = @REPLACE_LOG1P@
|
|
|
|
REPLACE_LOG1PF = @REPLACE_LOG1PF@
|
|
|
|
REPLACE_LOG1PL = @REPLACE_LOG1PL@
|
|
|
|
REPLACE_LOG2 = @REPLACE_LOG2@
|
|
|
|
REPLACE_LOG2F = @REPLACE_LOG2F@
|
|
|
|
REPLACE_LOG2L = @REPLACE_LOG2L@
|
|
|
|
REPLACE_LOGB = @REPLACE_LOGB@
|
|
|
|
REPLACE_LOGBF = @REPLACE_LOGBF@
|
|
|
|
REPLACE_LOGBL = @REPLACE_LOGBL@
|
|
|
|
REPLACE_LOGF = @REPLACE_LOGF@
|
|
|
|
REPLACE_LOGL = @REPLACE_LOGL@
|
|
|
|
REPLACE_LSEEK = @REPLACE_LSEEK@
|
|
|
|
REPLACE_LSTAT = @REPLACE_LSTAT@
|
2022-04-18 23:44:18 +08:00
|
|
|
REPLACE_MALLOC_FOR_MALLOC_GNU = @REPLACE_MALLOC_FOR_MALLOC_GNU@
|
|
|
|
REPLACE_MALLOC_FOR_MALLOC_POSIX = @REPLACE_MALLOC_FOR_MALLOC_POSIX@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_MBRLEN = @REPLACE_MBRLEN@
|
|
|
|
REPLACE_MBRTOWC = @REPLACE_MBRTOWC@
|
|
|
|
REPLACE_MBSINIT = @REPLACE_MBSINIT@
|
|
|
|
REPLACE_MBSNRTOWCS = @REPLACE_MBSNRTOWCS@
|
|
|
|
REPLACE_MBSRTOWCS = @REPLACE_MBSRTOWCS@
|
|
|
|
REPLACE_MBSTATE_T = @REPLACE_MBSTATE_T@
|
|
|
|
REPLACE_MBTOWC = @REPLACE_MBTOWC@
|
|
|
|
REPLACE_MEMCHR = @REPLACE_MEMCHR@
|
|
|
|
REPLACE_MEMMEM = @REPLACE_MEMMEM@
|
|
|
|
REPLACE_MKDIR = @REPLACE_MKDIR@
|
|
|
|
REPLACE_MKFIFO = @REPLACE_MKFIFO@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_MKFIFOAT = @REPLACE_MKFIFOAT@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_MKNOD = @REPLACE_MKNOD@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_MKNODAT = @REPLACE_MKNODAT@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
|
|
|
|
REPLACE_MKTIME = @REPLACE_MKTIME@
|
|
|
|
REPLACE_MODF = @REPLACE_MODF@
|
|
|
|
REPLACE_MODFF = @REPLACE_MODFF@
|
|
|
|
REPLACE_MODFL = @REPLACE_MODFL@
|
|
|
|
REPLACE_NAN = @REPLACE_NAN@
|
|
|
|
REPLACE_NANOSLEEP = @REPLACE_NANOSLEEP@
|
2020-02-23 09:31:54 +08:00
|
|
|
REPLACE_NEWLOCALE = @REPLACE_NEWLOCALE@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_NULL = @REPLACE_NULL@
|
|
|
|
REPLACE_OBSTACK_PRINTF = @REPLACE_OBSTACK_PRINTF@
|
|
|
|
REPLACE_OPEN = @REPLACE_OPEN@
|
|
|
|
REPLACE_OPENAT = @REPLACE_OPENAT@
|
|
|
|
REPLACE_OPENDIR = @REPLACE_OPENDIR@
|
|
|
|
REPLACE_PERROR = @REPLACE_PERROR@
|
|
|
|
REPLACE_POPEN = @REPLACE_POPEN@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_POSIX_MEMALIGN = @REPLACE_POSIX_MEMALIGN@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_PREAD = @REPLACE_PREAD@
|
|
|
|
REPLACE_PRINTF = @REPLACE_PRINTF@
|
2021-05-30 00:55:39 +08:00
|
|
|
REPLACE_PSELECT = @REPLACE_PSELECT@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_PTHREAD_SIGMASK = @REPLACE_PTHREAD_SIGMASK@
|
|
|
|
REPLACE_PTSNAME = @REPLACE_PTSNAME@
|
|
|
|
REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@
|
|
|
|
REPLACE_PUTENV = @REPLACE_PUTENV@
|
|
|
|
REPLACE_PWRITE = @REPLACE_PWRITE@
|
|
|
|
REPLACE_QSORT_R = @REPLACE_QSORT_R@
|
|
|
|
REPLACE_RAISE = @REPLACE_RAISE@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_RANDOM = @REPLACE_RANDOM@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_RANDOM_R = @REPLACE_RANDOM_R@
|
|
|
|
REPLACE_READ = @REPLACE_READ@
|
|
|
|
REPLACE_READLINK = @REPLACE_READLINK@
|
|
|
|
REPLACE_READLINKAT = @REPLACE_READLINKAT@
|
2022-04-18 23:44:18 +08:00
|
|
|
REPLACE_REALLOCARRAY = @REPLACE_REALLOCARRAY@
|
|
|
|
REPLACE_REALLOC_FOR_REALLOC_GNU = @REPLACE_REALLOC_FOR_REALLOC_GNU@
|
|
|
|
REPLACE_REALLOC_FOR_REALLOC_POSIX = @REPLACE_REALLOC_FOR_REALLOC_POSIX@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_REALPATH = @REPLACE_REALPATH@
|
|
|
|
REPLACE_REMAINDER = @REPLACE_REMAINDER@
|
|
|
|
REPLACE_REMAINDERF = @REPLACE_REMAINDERF@
|
|
|
|
REPLACE_REMAINDERL = @REPLACE_REMAINDERL@
|
|
|
|
REPLACE_REMOVE = @REPLACE_REMOVE@
|
|
|
|
REPLACE_RENAME = @REPLACE_RENAME@
|
|
|
|
REPLACE_RENAMEAT = @REPLACE_RENAMEAT@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_RINTL = @REPLACE_RINTL@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_RMDIR = @REPLACE_RMDIR@
|
|
|
|
REPLACE_ROUND = @REPLACE_ROUND@
|
|
|
|
REPLACE_ROUNDF = @REPLACE_ROUNDF@
|
|
|
|
REPLACE_ROUNDL = @REPLACE_ROUNDL@
|
2021-05-30 00:55:39 +08:00
|
|
|
REPLACE_SELECT = @REPLACE_SELECT@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_SETENV = @REPLACE_SETENV@
|
2020-02-23 09:31:54 +08:00
|
|
|
REPLACE_SETLOCALE = @REPLACE_SETLOCALE@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_SETSTATE = @REPLACE_SETSTATE@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_SIGNBIT = @REPLACE_SIGNBIT@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_SIGNBIT_USING_BUILTINS = @REPLACE_SIGNBIT_USING_BUILTINS@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_SINF = @REPLACE_SINF@
|
|
|
|
REPLACE_SINHF = @REPLACE_SINHF@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_SLEEP = @REPLACE_SLEEP@
|
|
|
|
REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
|
|
|
|
REPLACE_SPRINTF = @REPLACE_SPRINTF@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_SQRTF = @REPLACE_SQRTF@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_SQRTL = @REPLACE_SQRTL@
|
|
|
|
REPLACE_STAT = @REPLACE_STAT@
|
|
|
|
REPLACE_STDIO_READ_FUNCS = @REPLACE_STDIO_READ_FUNCS@
|
|
|
|
REPLACE_STDIO_WRITE_FUNCS = @REPLACE_STDIO_WRITE_FUNCS@
|
|
|
|
REPLACE_STPNCPY = @REPLACE_STPNCPY@
|
|
|
|
REPLACE_STRCASESTR = @REPLACE_STRCASESTR@
|
|
|
|
REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@
|
|
|
|
REPLACE_STRDUP = @REPLACE_STRDUP@
|
|
|
|
REPLACE_STRERROR = @REPLACE_STRERROR@
|
2021-01-23 03:55:45 +08:00
|
|
|
REPLACE_STRERRORNAME_NP = @REPLACE_STRERRORNAME_NP@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_STRERROR_R = @REPLACE_STRERROR_R@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_STRFTIME = @REPLACE_STRFTIME@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_STRNCAT = @REPLACE_STRNCAT@
|
|
|
|
REPLACE_STRNDUP = @REPLACE_STRNDUP@
|
|
|
|
REPLACE_STRNLEN = @REPLACE_STRNLEN@
|
|
|
|
REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@
|
|
|
|
REPLACE_STRSTR = @REPLACE_STRSTR@
|
|
|
|
REPLACE_STRTOD = @REPLACE_STRTOD@
|
|
|
|
REPLACE_STRTOIMAX = @REPLACE_STRTOIMAX@
|
|
|
|
REPLACE_STRTOK_R = @REPLACE_STRTOK_R@
|
2022-04-18 23:44:18 +08:00
|
|
|
REPLACE_STRTOL = @REPLACE_STRTOL@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_STRTOLD = @REPLACE_STRTOLD@
|
2022-04-18 23:44:18 +08:00
|
|
|
REPLACE_STRTOLL = @REPLACE_STRTOLL@
|
|
|
|
REPLACE_STRTOUL = @REPLACE_STRTOUL@
|
|
|
|
REPLACE_STRTOULL = @REPLACE_STRTOULL@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_STRTOUMAX = @REPLACE_STRTOUMAX@
|
2020-02-23 09:31:54 +08:00
|
|
|
REPLACE_STRUCT_LCONV = @REPLACE_STRUCT_LCONV@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_STRUCT_TIMEVAL = @REPLACE_STRUCT_TIMEVAL@
|
|
|
|
REPLACE_SYMLINK = @REPLACE_SYMLINK@
|
|
|
|
REPLACE_SYMLINKAT = @REPLACE_SYMLINKAT@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_TANF = @REPLACE_TANF@
|
|
|
|
REPLACE_TANHF = @REPLACE_TANHF@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_TIMEGM = @REPLACE_TIMEGM@
|
|
|
|
REPLACE_TMPFILE = @REPLACE_TMPFILE@
|
|
|
|
REPLACE_TOWLOWER = @REPLACE_TOWLOWER@
|
|
|
|
REPLACE_TRUNC = @REPLACE_TRUNC@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_TRUNCATE = @REPLACE_TRUNCATE@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_TRUNCF = @REPLACE_TRUNCF@
|
|
|
|
REPLACE_TRUNCL = @REPLACE_TRUNCL@
|
|
|
|
REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_TZSET = @REPLACE_TZSET@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_UNLINK = @REPLACE_UNLINK@
|
|
|
|
REPLACE_UNLINKAT = @REPLACE_UNLINKAT@
|
|
|
|
REPLACE_UNSETENV = @REPLACE_UNSETENV@
|
|
|
|
REPLACE_USLEEP = @REPLACE_USLEEP@
|
|
|
|
REPLACE_UTIMENSAT = @REPLACE_UTIMENSAT@
|
|
|
|
REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
|
|
|
|
REPLACE_VDPRINTF = @REPLACE_VDPRINTF@
|
|
|
|
REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
|
|
|
|
REPLACE_VPRINTF = @REPLACE_VPRINTF@
|
|
|
|
REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
|
|
|
|
REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
|
|
|
|
REPLACE_WCRTOMB = @REPLACE_WCRTOMB@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_WCSFTIME = @REPLACE_WCSFTIME@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_WCSNRTOMBS = @REPLACE_WCSNRTOMBS@
|
|
|
|
REPLACE_WCSRTOMBS = @REPLACE_WCSRTOMBS@
|
2019-11-17 13:37:06 +08:00
|
|
|
REPLACE_WCSTOK = @REPLACE_WCSTOK@
|
2019-11-15 08:17:59 +08:00
|
|
|
REPLACE_WCSWIDTH = @REPLACE_WCSWIDTH@
|
|
|
|
REPLACE_WCTOB = @REPLACE_WCTOB@
|
|
|
|
REPLACE_WCTOMB = @REPLACE_WCTOMB@
|
|
|
|
REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
|
|
|
|
REPLACE_WRITE = @REPLACE_WRITE@
|
|
|
|
SET_MAKE = @SET_MAKE@
|
|
|
|
SHELL = @SHELL@
|
|
|
|
SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
|
|
|
|
SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
|
|
|
|
STDALIGN_H = @STDALIGN_H@
|
|
|
|
STDBOOL_H = @STDBOOL_H@
|
|
|
|
STDDEF_H = @STDDEF_H@
|
|
|
|
STDINT_H = @STDINT_H@
|
|
|
|
STRIP = @STRIP@
|
|
|
|
SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@
|
|
|
|
TIME_H_DEFINES_STRUCT_TIMESPEC = @TIME_H_DEFINES_STRUCT_TIMESPEC@
|
2021-01-23 03:55:45 +08:00
|
|
|
TIME_H_DEFINES_TIME_UTC = @TIME_H_DEFINES_TIME_UTC@
|
2019-11-15 08:17:59 +08:00
|
|
|
UINT32_MAX_LT_UINTMAX_MAX = @UINT32_MAX_LT_UINTMAX_MAX@
|
|
|
|
UINT64_MAX_EQ_ULONG_MAX = @UINT64_MAX_EQ_ULONG_MAX@
|
|
|
|
UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@
|
|
|
|
UNISTD_H_DEFINES_STRUCT_TIMESPEC = @UNISTD_H_DEFINES_STRUCT_TIMESPEC@
|
2020-08-27 06:37:28 +08:00
|
|
|
UNISTD_H_HAVE_SYS_RANDOM_H = @UNISTD_H_HAVE_SYS_RANDOM_H@
|
2019-11-15 08:17:59 +08:00
|
|
|
UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@
|
|
|
|
UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@
|
|
|
|
VERSION = @VERSION@
|
|
|
|
WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
|
|
|
|
WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@
|
|
|
|
WINDOWS_64_BIT_ST_SIZE = @WINDOWS_64_BIT_ST_SIZE@
|
2019-11-17 13:37:06 +08:00
|
|
|
WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@
|
|
|
|
WINDOWS_STAT_TIMESPEC = @WINDOWS_STAT_TIMESPEC@
|
2019-11-15 08:17:59 +08:00
|
|
|
WINT_T_SUFFIX = @WINT_T_SUFFIX@
|
|
|
|
abs_builddir = @abs_builddir@
|
|
|
|
abs_srcdir = @abs_srcdir@
|
|
|
|
abs_top_builddir = @abs_top_builddir@
|
|
|
|
abs_top_srcdir = @abs_top_srcdir@
|
|
|
|
ac_ct_CC = @ac_ct_CC@
|
|
|
|
am__include = @am__include@
|
|
|
|
am__leading_dot = @am__leading_dot@
|
|
|
|
am__quote = @am__quote@
|
|
|
|
am__tar = @am__tar@
|
|
|
|
am__untar = @am__untar@
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
bindir = @bindir@
|
2019-11-15 08:17:59 +08:00
|
|
|
build = @build@
|
|
|
|
build_alias = @build_alias@
|
|
|
|
build_cpu = @build_cpu@
|
|
|
|
build_os = @build_os@
|
|
|
|
build_vendor = @build_vendor@
|
|
|
|
builddir = @builddir@
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
datadir = @datadir@
|
|
|
|
datarootdir = @datarootdir@
|
|
|
|
docdir = @docdir@
|
2019-11-15 08:17:59 +08:00
|
|
|
dvidir = @dvidir@
|
|
|
|
exec_prefix = @exec_prefix@
|
2022-04-18 23:44:18 +08:00
|
|
|
gl_LIBOBJDEPS = @gl_LIBOBJDEPS@
|
2019-11-15 08:17:59 +08:00
|
|
|
gl_LIBOBJS = @gl_LIBOBJS@
|
|
|
|
gl_LTLIBOBJS = @gl_LTLIBOBJS@
|
2022-04-18 23:44:18 +08:00
|
|
|
gltests_LIBOBJDEPS = @gltests_LIBOBJDEPS@
|
2019-11-15 08:17:59 +08:00
|
|
|
gltests_LIBOBJS = @gltests_LIBOBJS@
|
|
|
|
gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
|
|
|
|
gltests_WITNESS = @gltests_WITNESS@
|
|
|
|
host = @host@
|
|
|
|
host_alias = @host_alias@
|
|
|
|
host_cpu = @host_cpu@
|
|
|
|
host_os = @host_os@
|
|
|
|
host_vendor = @host_vendor@
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
htmldir = @htmldir@
|
|
|
|
includedir = @includedir@
|
2019-11-15 08:17:59 +08:00
|
|
|
infodir = @infodir@
|
|
|
|
install_sh = @install_sh@
|
|
|
|
libdir = @libdir@
|
|
|
|
libexecdir = @libexecdir@
|
|
|
|
localedir = @localedir@
|
|
|
|
localstatedir = @localstatedir@
|
|
|
|
mandir = @mandir@
|
|
|
|
mkdir_p = @mkdir_p@
|
|
|
|
oldincludedir = @oldincludedir@
|
|
|
|
pdfdir = @pdfdir@
|
|
|
|
prefix = @prefix@
|
|
|
|
program_transform_name = @program_transform_name@
|
|
|
|
psdir = @psdir@
|
|
|
|
sbindir = @sbindir@
|
|
|
|
sharedstatedir = @sharedstatedir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
sysconfdir = @sysconfdir@
|
|
|
|
target = @target@
|
|
|
|
target_alias = @target_alias@
|
|
|
|
target_cpu = @target_cpu@
|
|
|
|
target_os = @target_os@
|
|
|
|
target_vendor = @target_vendor@
|
|
|
|
top_build_prefix = @top_build_prefix@
|
|
|
|
top_builddir = @top_builddir@
|
|
|
|
top_srcdir = @top_srcdir@
|
2019-11-17 13:37:06 +08:00
|
|
|
|
|
|
|
# The toplevel makefile overrides $(CC) (in EXTRA_HOST_FLAGS) by setting
|
|
|
|
# it to whatever CC was in the toplevel configure. This breaks in Gnulib with
|
|
|
|
# older GCCs, because Gnulib's configure uses this variable to store the
|
|
|
|
# standard-setting switch (e.g. -std=gnu99/-std=gnu11). To fix this, we just
|
|
|
|
# set MAKEOVERRIDES to empty here so that import/ uses the right $(CC).
|
|
|
|
#
|
|
|
|
# This problem is visible with compilers that don't use C99 by default, such
|
|
|
|
# as GCC 4.8.5 (Centos 7).
|
|
|
|
MAKEOVERRIDES =
|
2019-11-15 08:17:59 +08:00
|
|
|
SUBDIRS = import
|
|
|
|
all: config.h
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
.SUFFIXES:
|
|
|
|
am--refresh: Makefile
|
|
|
|
@:
|
|
|
|
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
|
|
|
@for dep in $?; do \
|
|
|
|
case '$(am__configure_deps)' in \
|
|
|
|
*$$dep*) \
|
|
|
|
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
|
|
|
|
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
|
|
|
|
&& exit 0; \
|
|
|
|
exit 1;; \
|
|
|
|
esac; \
|
|
|
|
done; \
|
|
|
|
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
|
|
|
$(am__cd) $(top_srcdir) && \
|
|
|
|
$(AUTOMAKE) --foreign Makefile
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
|
|
@case '$?' in \
|
|
|
|
*config.status*) \
|
|
|
|
echo ' $(SHELL) ./config.status'; \
|
|
|
|
$(SHELL) ./config.status;; \
|
|
|
|
*) \
|
|
|
|
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
|
|
|
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
|
|
|
esac;
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
|
|
$(SHELL) ./config.status --recheck
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
|
|
|
$(am__cd) $(srcdir) && $(AUTOCONF)
|
|
|
|
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
|
|
|
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
|
|
|
$(am__aclocal_m4_deps):
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
config.h: stamp-h1
|
|
|
|
@test -f $@ || rm -f stamp-h1
|
|
|
|
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
stamp-h1: $(srcdir)/config.in $(top_builddir)/config.status
|
|
|
|
@rm -f stamp-h1
|
|
|
|
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
|
|
|
$(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
|
|
|
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
|
|
|
rm -f stamp-h1
|
|
|
|
touch $@
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
distclean-hdr:
|
|
|
|
-rm -f config.h stamp-h1
|
gnulib: Ensure all libraries are used when building gdb/gdbserver
An issue was reported here related to building GDB on MinGW:
https://sourceware.org/pipermail/gdb/2020-September/048927.html
It was suggested here:
https://sourceware.org/pipermail/gdb/2020-September/048931.html
that the solution might be to make use of $(LIB_GETRANDOM), a variable
defined in the gnulib makefile, when linking GDB.
In fact I think the issue is bigger than just LIB_GETRANDOM. When
using the script binutils-gdb/gnulib/update-gnulib.sh to reimport
gnulib there is a lot of output from gnulib's gnulib-tool. Part of
that output is this:
You may need to use the following makefile variables when linking.
Use them in <program>_LDADD when linking a program, or
in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library.
$(FREXPL_LIBM)
$(FREXP_LIBM)
$(INET_NTOP_LIB)
$(LIBTHREAD)
$(LIB_GETLOGIN)
$(LIB_GETRANDOM)
$(LIB_HARD_LOCALE)
$(LIB_MBRTOWC)
$(LIB_SETLOCALE_NULL)
$(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise
What I think this is telling us is that we should be including the
value of all these variables on the link line for gdb and gdbserver.
The problem though is that these variables are define in gnulib's
makefile, but are not (necessarily) defined in GDB's makefile.
One solution would be to recreate the checks that gnulib performs in
order to recreate these variables in both gdb's and gdbserver's
makefile. Though this shouldn't be too hard, most (if not all) of
these checks are in the form macros defined in m4 files in the gnulib
tree, so we could just reference these as needed. However, in this
commit I propose a different solution.
Currently, in the top level makefile, we give gdb and gdbserver a
dependency on gnulib. Once gnulib has finished building gdb and
gdbserver can start, these projects then have a hard coded (relative)
path to the compiled gnulib library in their makefiles.
In this commit I extend the gnulib configure script to install a new
makefile fragment in the gnulib build directory. This new file will
have the usual variable substitutions applied to it, and so can
include the complete list (see above) of all the extra libraries that
are needed when linking against gnulib.
In fact the new makefile fragment defines three variables, these are:
LIBGNU: The path to the archive containing gnulib. Can be used as a
dependency as when this file changes gdb/gdbserver should be
relinked.
LIBGNU_EXTRA_LIBS: A list of linker -l.... flags that should be
included in the link line of gdb/gdbserver. These are
libraries that $(LIBGNU) depends on. This list is taken from
the output of gnulib-tool, which is run by our
gnulib/update-gnulib.sh script.
INCGNU: A list of -I.... include paths that should be passed to the
compiler, these are where the gnulib headers can be found.
Now both gdb and gdbserver can include the makefile fragment and make
use of these variables.
The makefile fragment relies on the variable GNULIB_BUILDDIR being
defined. This is checked for in the fragment, and was already defined
in the makefiles of gdb and gdbserver.
gdb/ChangeLog:
* Makefile.in: Include Makefile.gnulib.inc. Don't define LIBGNU
or INCGNU. Make use of LIBGNU_EXTRA_LIBS when linking.
gdbserver/ChangeLog:
* Makefile.in: Include Makefile.gnulib.inc. Don't define LIBGNU
or INCGNU. Make use of LIBGNU_EXTRA_LIBS when linking.
gnulib/ChangeLog:
* Makefile.gnulib.inc.in: New file.
* Makefile.in: Regenerate.
* configure: Regenerate.
* configure.ac: Install the new file.
2020-10-06 17:09:06 +08:00
|
|
|
Makefile.gnulib.inc: $(top_builddir)/config.status $(srcdir)/Makefile.gnulib.inc.in
|
|
|
|
cd $(top_builddir) && $(SHELL) ./config.status $@
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
# This directory's subdirectories are mostly independent; you can cd
|
|
|
|
# into them and run 'make' without going through this Makefile.
|
|
|
|
# To change the values of 'make' variables: instead of editing Makefiles,
|
|
|
|
# (1) if the variable is set in 'config.status', edit 'config.status'
|
|
|
|
# (which will cause the Makefiles to be regenerated when you run 'make');
|
|
|
|
# (2) otherwise, pass the desired values on the 'make' command line.
|
|
|
|
$(am__recursive_targets):
|
|
|
|
@fail=; \
|
|
|
|
if $(am__make_keepgoing); then \
|
|
|
|
failcom='fail=yes'; \
|
|
|
|
else \
|
|
|
|
failcom='exit 1'; \
|
|
|
|
fi; \
|
|
|
|
dot_seen=no; \
|
|
|
|
target=`echo $@ | sed s/-recursive//`; \
|
|
|
|
case "$@" in \
|
|
|
|
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
|
|
|
*) list='$(SUBDIRS)' ;; \
|
|
|
|
esac; \
|
|
|
|
for subdir in $$list; do \
|
|
|
|
echo "Making $$target in $$subdir"; \
|
|
|
|
if test "$$subdir" = "."; then \
|
|
|
|
dot_seen=yes; \
|
|
|
|
local_target="$$target-am"; \
|
|
|
|
else \
|
|
|
|
local_target="$$target"; \
|
|
|
|
fi; \
|
|
|
|
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
|
|
|| eval $$failcom; \
|
|
|
|
done; \
|
|
|
|
if test "$$dot_seen" = "no"; then \
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
|
|
|
fi; test -z "$$fail"
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
ID: $(am__tagged_files)
|
|
|
|
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
|
|
|
tags: tags-recursive
|
|
|
|
TAGS: tags
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
|
|
|
set x; \
|
|
|
|
here=`pwd`; \
|
|
|
|
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
|
|
|
include_option=--etags-include; \
|
|
|
|
empty_fix=.; \
|
|
|
|
else \
|
|
|
|
include_option=--include; \
|
|
|
|
empty_fix=; \
|
|
|
|
fi; \
|
|
|
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
|
|
if test "$$subdir" = .; then :; else \
|
|
|
|
test ! -f $$subdir/TAGS || \
|
|
|
|
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
|
|
|
fi; \
|
|
|
|
done; \
|
|
|
|
$(am__define_uniq_tagged_files); \
|
|
|
|
shift; \
|
|
|
|
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
|
|
|
test -n "$$unique" || unique=$$empty_fix; \
|
|
|
|
if test $$# -gt 0; then \
|
|
|
|
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
|
|
"$$@" $$unique; \
|
|
|
|
else \
|
|
|
|
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
|
|
$$unique; \
|
|
|
|
fi; \
|
|
|
|
fi
|
|
|
|
ctags: ctags-recursive
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
CTAGS: ctags
|
|
|
|
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
|
|
|
$(am__define_uniq_tagged_files); \
|
|
|
|
test -z "$(CTAGS_ARGS)$$unique" \
|
|
|
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
|
|
$$unique
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
GTAGS:
|
|
|
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
|
|
&& $(am__cd) $(top_srcdir) \
|
|
|
|
&& gtags -i $(GTAGS_ARGS) "$$here"
|
|
|
|
cscope: cscope.files
|
|
|
|
test ! -s cscope.files \
|
|
|
|
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
|
|
|
clean-cscope:
|
|
|
|
-rm -f cscope.files
|
|
|
|
cscope.files: clean-cscope cscopelist
|
|
|
|
cscopelist: cscopelist-recursive
|
|
|
|
|
|
|
|
cscopelist-am: $(am__tagged_files)
|
|
|
|
list='$(am__tagged_files)'; \
|
|
|
|
case "$(srcdir)" in \
|
|
|
|
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
|
|
|
*) sdir=$(subdir)/$(srcdir) ;; \
|
|
|
|
esac; \
|
|
|
|
for i in $$list; do \
|
|
|
|
if test -f "$$i"; then \
|
|
|
|
echo "$(subdir)/$$i"; \
|
|
|
|
else \
|
|
|
|
echo "$$sdir/$$i"; \
|
|
|
|
fi; \
|
|
|
|
done >> $(top_builddir)/cscope.files
|
|
|
|
|
|
|
|
distclean-tags:
|
|
|
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
|
|
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
|
|
|
check-am: all-am
|
|
|
|
check: check-recursive
|
|
|
|
all-am: Makefile config.h
|
|
|
|
installdirs: installdirs-recursive
|
|
|
|
installdirs-am:
|
|
|
|
install: install-recursive
|
|
|
|
install-exec: install-exec-recursive
|
|
|
|
install-data: install-data-recursive
|
|
|
|
uninstall: uninstall-recursive
|
|
|
|
|
|
|
|
install-am: all-am
|
|
|
|
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
|
|
|
|
|
|
installcheck: installcheck-recursive
|
|
|
|
install-strip:
|
|
|
|
if test -z '$(STRIP)'; then \
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
|
|
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
|
|
install; \
|
|
|
|
else \
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
|
|
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
|
|
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
|
|
|
fi
|
|
|
|
mostlyclean-generic:
|
|
|
|
|
|
|
|
clean-generic:
|
|
|
|
|
|
|
|
distclean-generic:
|
|
|
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
|
|
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
|
|
|
|
|
|
|
maintainer-clean-generic:
|
|
|
|
@echo "This command is intended for maintainers to use"
|
|
|
|
@echo "it deletes files that may require special tools to rebuild."
|
|
|
|
clean: clean-recursive
|
|
|
|
|
|
|
|
clean-am: clean-generic mostlyclean-am
|
|
|
|
|
|
|
|
distclean: distclean-recursive
|
|
|
|
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
|
|
|
-rm -f Makefile
|
|
|
|
distclean-am: clean-am distclean-generic distclean-hdr distclean-tags
|
|
|
|
|
|
|
|
dvi: dvi-recursive
|
|
|
|
|
|
|
|
dvi-am:
|
|
|
|
|
|
|
|
html: html-recursive
|
|
|
|
|
|
|
|
html-am:
|
|
|
|
|
|
|
|
info: info-recursive
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
info-am:
|
2012-04-19 Pedro Alves <palves@redhat.com>
gdb/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS): Add $(GNULIB_BUILDDIR).
(CLEANDIRS). Remove gnulib/import.
(REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
(all-lib): Ditto.
(distclean): Remove the $(GNULIB_BUILDDIR) directory.
(gnulib/import/Makefile): Replace gnulib/import with
$(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
(ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
(aclocal_m4_deps): Remove the gnulib dependencies. Add
acx_configure_dir.m4.
* acinclude.m4: Include acx_configure_dir.m4.
* acx_configure_dir.m4: New file.
* aclocal.m4: Regenerate.
* configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
calls. Configure gnulib using ACX_CONFIGURE_DIR.
(GNULIB): New variable.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile.
* gdb/defs.h: Include build-gnulib/config.h.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* gnulib/Makefile.in: New file.
* gnulib/configure.ac: New file.
* gnulib/aclocal.m4: New file.
* gnulib/config.in: New file.
* gnulib/configure: New file.
* gnulib/: Re-run gnulib-tool to adjust.
gdb/gdbserver/
* Makefile.in (GNULIB_BUILDDIR): New.
(LIBGNU, INCGNU, GNULIB_H): Adjust.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
(all, install-only, uninstall, clean-info, all-lib, clean): No
longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
(maintainer-clean realclean distclean): Use subdir_do.
(subdir_do): New.
(gnulib/import/Makefile): Adjust. Replace gnulib/import with
$(GNULIB_BUILDDIR). Don't pass argument to config.status.
* acinclude.m4: Include acx_configure_dir.m4.
* configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
calls. Call AC_PROG_RANLIB. Configure gnulib using
ACX_CONFIGURE_DIR.
(GNULIB): New.
(GNULIB_STDINT_H): Adjust.
(AC_OUTPUT): Don't output gnulib/Makefile anymore.
* gdbreplay.c: Include build-gnulib/config.h.
* server.h: Likewise.
* aclocal.m4: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
2012-04-20 03:34:52 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
install-data-am:
|
Makefiles: Disable suffix rules and implicit rules
Since we don't use suffix rules nor implicit rules in gdb, we can
disable them. The advantage is a slightly faster make [1].
Here are some numbers about the speedup. I ran this on my trusty old
Intel Q6600, so the time numbers are probably higher than what you'd get
on any recent hardware. I ran "make" in the gdb/ directory of an
already built repository (configured with --enable-targets=all). I
recorded the time of execution (average of 5). I then ran "make -d" and
recorded the number of printed lines, which gives a rough idea of the
number of operations done.
I compared the following configurations, to see the impact of both the
empty .SUFFIXES target and the empty pattern rules, as well as running
"make -r", which can be considered the "ideal" case.
A - baseline
B - baseline + .SUFFIXES
C - baseline + pattern rules
D - baseline + .SUFFIXES + pattern rules
E - baseline + make -r
config | time (s) | "make -d"
-----------------------------
A | 5.74 | 2396643
B | 1.19 | 298469
C | 2.81 | 1266573
D | 1.13 | 245489
E | 1.01 | 163914
We can see that the empty .SUFFIXES target has a bigger impact than the
empty pattern rules, but still it doesn't hurt to disable the implicit
pattern rules as well.
There are still some mentions of implicit rules I can't get rid of in
the "make -d" output. For example, it's trying to build .c files from
.w files:
Looking for an implicit rule for '/home/simark/src/binutils-gdb/gdb/infrun.c'.
Trying pattern rule with stem 'infrun'.
Trying implicit prerequisite '/home/simark/src/binutils-gdb/gdb/infrun.w'.
and trying to build Makefile.in from a bunch of extensions:
Looking for an implicit rule for 'Makefile.in'.
Trying pattern rule with stem 'Makefile.in'.
Trying implicit prerequisite 'Makefile.in.o'.
Trying pattern rule with stem 'Makefile.in'.
Trying implicit prerequisite 'Makefile.in.c'.
Trying pattern rule with stem 'Makefile.in'.
Trying implicit prerequisite 'Makefile.in.cc'.
... many more ...
If somebody knows how to disable them, we can do it, but at this point
the returns are minimal, so it is not that important.
I verified that both in-tree and out-of-tree builds work.
[1] Switching from explicit rules to pattern rules for files in
subdirectories actually made it slower, so this is kind of a way to
redeem myself. But it the end it's faster than it was previously,
so it was all worth it. :)
gdb/ChangeLog:
* disable-implicit-rules.mk: New file.
* Makefile.in: Include disable-implicit-rules.mk.
* data-directory/Makefile.in: Likewise.
* gnulib/Makefile.in: Likewise.
gdb/doc/ChangeLog:
* Makefile.in: Likewise.
gdb/gdbserver/ChangeLog:
* Makefile.in: Include disable-implicit-rules.mk.
gdb/testsuite/ChangeLog:
* Makefile.in: Include disable-implicit-rules.mk.
2016-12-01 05:23:59 +08:00
|
|
|
|
2019-11-15 08:17:59 +08:00
|
|
|
install-dvi: install-dvi-recursive
|
|
|
|
|
|
|
|
install-dvi-am:
|
|
|
|
|
|
|
|
install-exec-am:
|
|
|
|
|
|
|
|
install-html: install-html-recursive
|
|
|
|
|
|
|
|
install-html-am:
|
|
|
|
|
|
|
|
install-info: install-info-recursive
|
|
|
|
|
|
|
|
install-info-am:
|
|
|
|
|
|
|
|
install-man:
|
|
|
|
|
|
|
|
install-pdf: install-pdf-recursive
|
|
|
|
|
|
|
|
install-pdf-am:
|
|
|
|
|
|
|
|
install-ps: install-ps-recursive
|
|
|
|
|
|
|
|
install-ps-am:
|
|
|
|
|
|
|
|
installcheck-am:
|
|
|
|
|
|
|
|
maintainer-clean: maintainer-clean-recursive
|
|
|
|
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
|
|
|
-rm -rf $(top_srcdir)/autom4te.cache
|
|
|
|
-rm -f Makefile
|
|
|
|
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
|
|
|
|
|
|
mostlyclean: mostlyclean-recursive
|
|
|
|
|
|
|
|
mostlyclean-am: mostlyclean-generic
|
|
|
|
|
|
|
|
pdf: pdf-recursive
|
|
|
|
|
|
|
|
pdf-am:
|
|
|
|
|
|
|
|
ps: ps-recursive
|
|
|
|
|
|
|
|
ps-am:
|
|
|
|
|
|
|
|
uninstall-am:
|
|
|
|
|
|
|
|
.MAKE: $(am__recursive_targets) all install-am install-strip
|
|
|
|
|
|
|
|
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
|
|
|
am--refresh check check-am clean clean-cscope clean-generic \
|
2019-11-16 04:48:27 +08:00
|
|
|
cscope cscopelist-am ctags ctags-am distclean \
|
|
|
|
distclean-generic distclean-hdr distclean-tags dvi dvi-am html \
|
|
|
|
html-am info info-am install install-am install-data \
|
|
|
|
install-data-am install-dvi install-dvi-am install-exec \
|
|
|
|
install-exec-am install-html install-html-am install-info \
|
|
|
|
install-info-am install-man install-pdf install-pdf-am \
|
|
|
|
install-ps install-ps-am install-strip installcheck \
|
|
|
|
installcheck-am installdirs installdirs-am maintainer-clean \
|
|
|
|
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
|
|
|
pdf-am ps ps-am tags tags-am uninstall uninstall-am
|
2019-11-15 08:17:59 +08:00
|
|
|
|
|
|
|
.PRECIOUS: Makefile
|
|
|
|
|
|
|
|
|
|
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
|
|
.NOEXPORT:
|