mirror of
https://git.savannah.gnu.org/git/inetutils.git
synced 2026-01-12 00:19:39 +08:00
* bootstrap.conf: Add argp-version-etc; Remove deprecated modules. * ftp/main.c, ftpd/ftpd.c, hostname/hostname.c, inetd/inetd.c, logger/logger.c, ping/ping.c, ping/ping6.c, rlogin/rlogin.c, syslogd/syslogd.c, talkd/talkd.c, traceroute/traceroute.c: Use argp-version-etc instead of ARGP_PROGRAM_DATA. * libinetutils/defauthors.c: New file. * libinetutils/Makefile.am (libinetutils_a_SOURCES): Add defauthors.c. * libinetutils/libinetutils.h: Include argp-version-etc.h. (default_program_authors): New extern. (ARGP_PROGRAM_DATA_SIMPLE, ARGP_PROGRAM_DATA): Removed. * rcp/Makefile.am (INCLUDES): Add libinetutils. * rcp/rcp.c: Use argp and asprintf. Remove obsolete varargs stuff. Use error to display error messages on tty. * rexecd/Makefile.am (INCLUDES): Add libinetutils. * rexecd/rexecd.c: Use argp. Remove obsolete varargs stuff. Use error to display error messages on tty.
88 lines
1.6 KiB
Plaintext
88 lines
1.6 KiB
Plaintext
# Bootstrap configuration.
|
|
|
|
# Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
|
|
|
|
# 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, 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, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
# 02110-1301, USA.
|
|
|
|
# gnulib library name
|
|
gnulib_name=libgnu
|
|
|
|
# gnulib modules used by this package.
|
|
gnulib_modules="
|
|
alloca
|
|
alloca-opt
|
|
argp
|
|
argp-version-etc
|
|
autobuild
|
|
dirfd
|
|
error
|
|
exit
|
|
exitfail
|
|
extensions
|
|
fdl-1.3
|
|
filemode
|
|
getcwd
|
|
getline
|
|
getopt
|
|
getpass
|
|
gettext
|
|
gettext-h
|
|
getusershell
|
|
glob
|
|
inttostr
|
|
malloc
|
|
mempcpy
|
|
minmax
|
|
obstack
|
|
poll
|
|
progname
|
|
readline
|
|
readutmp
|
|
realloc
|
|
regex
|
|
setenv
|
|
size_max
|
|
snprintf
|
|
stdbool
|
|
stdint
|
|
strcase
|
|
strchrnul
|
|
strerror
|
|
strndup
|
|
strnlen
|
|
sysexits
|
|
unistd-safer
|
|
unlocked-io
|
|
vasnprintf
|
|
version-etc-fsf
|
|
vsnprintf
|
|
xalloc
|
|
xalloc-die
|
|
xgetcwd
|
|
xgethostname
|
|
xgetdomainname
|
|
xsize
|
|
"
|
|
|
|
# Read local configuration file
|
|
if [ -r .bootstrap ]; then
|
|
echo "$0: Reading configuration file .bootstrap"
|
|
eval set -- "`sed 's/#.*$//;/^$/d' .bootstrap | tr '\n' ' '` $*"
|
|
fi
|
|
|
|
# Work around a silly `bug' in bootstrap.
|
|
test -d m4 || mkdir m4
|