Skip to content

Commit 3364e5a

Browse files
committed
multi: regen configure script, adjust Makefile.in
1 parent 98e8953 commit 3364e5a

File tree

2 files changed

+5
-180
lines changed

2 files changed

+5
-180
lines changed

Diff for: configure

+1-174
Original file line numberDiff line numberDiff line change
@@ -39582,153 +39582,6 @@ fi
3958239582

3958339583
### Checks for header files.
3958439584

39585-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
39586-
$as_echo_n "checking for ANSI C header files... " >&6; }
39587-
if ${ac_cv_header_stdc+:} false; then :
39588-
$as_echo_n "(cached) " >&6
39589-
else
39590-
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39591-
/* end confdefs.h. */
39592-
#include <stdlib.h>
39593-
#include <stdarg.h>
39594-
#include <string.h>
39595-
#include <float.h>
39596-
39597-
int
39598-
main ()
39599-
{
39600-
39601-
;
39602-
return 0;
39603-
}
39604-
_ACEOF
39605-
if ac_fn_c_try_compile "$LINENO"; then :
39606-
ac_cv_header_stdc=yes
39607-
else
39608-
ac_cv_header_stdc=no
39609-
fi
39610-
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
39611-
39612-
if test $ac_cv_header_stdc = yes; then
39613-
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
39614-
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39615-
/* end confdefs.h. */
39616-
#include <string.h>
39617-
39618-
_ACEOF
39619-
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
39620-
$EGREP "memchr" >/dev/null 2>&1; then :
39621-
39622-
else
39623-
ac_cv_header_stdc=no
39624-
fi
39625-
rm -f conftest*
39626-
39627-
fi
39628-
39629-
if test $ac_cv_header_stdc = yes; then
39630-
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
39631-
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39632-
/* end confdefs.h. */
39633-
#include <stdlib.h>
39634-
39635-
_ACEOF
39636-
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
39637-
$EGREP "free" >/dev/null 2>&1; then :
39638-
39639-
else
39640-
ac_cv_header_stdc=no
39641-
fi
39642-
rm -f conftest*
39643-
39644-
fi
39645-
39646-
if test $ac_cv_header_stdc = yes; then
39647-
# /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
39648-
if test "$cross_compiling" = yes; then :
39649-
:
39650-
else
39651-
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39652-
/* end confdefs.h. */
39653-
#include <ctype.h>
39654-
#include <stdlib.h>
39655-
#if ((' ' & 0x0FF) == 0x020)
39656-
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
39657-
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
39658-
#else
39659-
# define ISLOWER(c) \
39660-
(('a' <= (c) && (c) <= 'i') \
39661-
|| ('j' <= (c) && (c) <= 'r') \
39662-
|| ('s' <= (c) && (c) <= 'z'))
39663-
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
39664-
#endif
39665-
39666-
#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
39667-
int
39668-
main ()
39669-
{
39670-
int i;
39671-
for (i = 0; i < 256; i++)
39672-
if (XOR (islower (i), ISLOWER (i))
39673-
|| toupper (i) != TOUPPER (i))
39674-
return 2;
39675-
return 0;
39676-
}
39677-
_ACEOF
39678-
if ac_fn_c_try_run "$LINENO"; then :
39679-
39680-
else
39681-
ac_cv_header_stdc=no
39682-
fi
39683-
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
39684-
conftest.$ac_objext conftest.beam conftest.$ac_ext
39685-
fi
39686-
39687-
fi
39688-
fi
39689-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
39690-
$as_echo "$ac_cv_header_stdc" >&6; }
39691-
if test $ac_cv_header_stdc = yes; then
39692-
39693-
$as_echo "#define STDC_HEADERS 1" >>confdefs.h
39694-
39695-
fi
39696-
39697-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5
39698-
$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; }
39699-
if ${ac_cv_header_time+:} false; then :
39700-
$as_echo_n "(cached) " >&6
39701-
else
39702-
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39703-
/* end confdefs.h. */
39704-
#include <sys/types.h>
39705-
#include <sys/time.h>
39706-
#include <time.h>
39707-
39708-
int
39709-
main ()
39710-
{
39711-
if ((struct tm *) 0)
39712-
return 0;
39713-
;
39714-
return 0;
39715-
}
39716-
_ACEOF
39717-
if ac_fn_c_try_compile "$LINENO"; then :
39718-
ac_cv_header_time=yes
39719-
else
39720-
ac_cv_header_time=no
39721-
fi
39722-
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
39723-
fi
39724-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time" >&5
39725-
$as_echo "$ac_cv_header_time" >&6; }
39726-
if test $ac_cv_header_time = yes; then
39727-
39728-
$as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h
39729-
39730-
fi
39731-
3973239585
ac_header_dirent=no
3973339586
for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
3973439587
as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
@@ -39896,7 +39749,7 @@ for ac_header in arpa/nameser.h arpa/tftp.h errno.h fcntl.h features.h \
3989639749
sys/utsname.h sys/ptyvar.h sys/msgbuf.h sys/filio.h \
3989739750
sys/ioctl_compat.h sys/cdefs.h sys/stream.h sys/mkdev.h \
3989839751
sys/sockio.h sys/sysmacros.h sys/param.h sys/file.h \
39899-
sys/proc.h sys/select.h sys/time.h sys/wait.h \
39752+
sys/proc.h sys/select.h sys/wait.h \
3990039753
sys/resource.h \
3990139754
stropts.h tcpd.h utmp.h utmpx.h unistd.h \
3990239755
vis.h
@@ -41894,13 +41747,6 @@ $as_echo "#define CLOSEDIR_VOID 1" >>confdefs.h
4189441747

4189541748
fi
4189641749

41897-
if ${ac_cv_func_setvbuf_reversed+:} false; then :
41898-
$as_echo_n "(cached) " >&6
41899-
else
41900-
ac_cv_func_setvbuf_reversed=no
41901-
fi
41902-
41903-
4190441750
for ac_header in vfork.h
4190541751
do :
4190641752
ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default"
@@ -42728,25 +42574,6 @@ $as_echo "$ac_iu_const_enctype_names" >&6; }
4272842574

4272942575
## Checks for function declarations.
4273042576

42731-
ac_fn_c_check_decl "$LINENO" "sys_siglist" "ac_cv_have_decl_sys_siglist" "#include <signal.h>
42732-
/* NetBSD declares sys_siglist in unistd.h. */
42733-
#ifdef HAVE_UNISTD_H
42734-
# include <unistd.h>
42735-
#endif
42736-
42737-
"
42738-
if test "x$ac_cv_have_decl_sys_siglist" = xyes; then :
42739-
ac_have_decl=1
42740-
else
42741-
ac_have_decl=0
42742-
fi
42743-
42744-
cat >>confdefs.h <<_ACEOF
42745-
#define HAVE_DECL_SYS_SIGLIST $ac_have_decl
42746-
_ACEOF
42747-
42748-
42749-
4275042577
# EWOULDBLOCK is more or less the BSD version of posix EAGAIN.
4275142578

4275242579
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EWOULDBLOCK" >&5

Diff for: libinetutils/Makefile.in

+4-6
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ libinetutils_a_LIBADD =
247247
am_libinetutils_a_OBJECTS = argcv.$(OBJEXT) cleansess.$(OBJEXT) \
248248
daemon.$(OBJEXT) defauthors.$(OBJEXT) if_index.$(OBJEXT) \
249249
localhost.$(OBJEXT) logwtmpko.$(OBJEXT) setsig.$(OBJEXT) \
250-
tftpsubs.$(OBJEXT) ttymsg.$(OBJEXT) \
251-
utmp_init.$(OBJEXT) utmp_logout.$(OBJEXT)
250+
tftpsubs.$(OBJEXT) ttymsg.$(OBJEXT) utmp_init.$(OBJEXT) \
251+
utmp_logout.$(OBJEXT)
252252
libinetutils_a_OBJECTS = $(am_libinetutils_a_OBJECTS)
253253
AM_V_P = $(am__v_P_@AM_V@)
254254
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
@@ -267,9 +267,8 @@ depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
267267
am__maybe_remake_depfiles = depfiles
268268
am__depfiles_remade = ./$(DEPDIR)/argcv.Po ./$(DEPDIR)/cleansess.Po \
269269
./$(DEPDIR)/daemon.Po ./$(DEPDIR)/defauthors.Po \
270-
./$(DEPDIR)/if_index.Po \
271-
./$(DEPDIR)/localhost.Po ./$(DEPDIR)/logwtmpko.Po \
272-
./$(DEPDIR)/setsig.Po \
270+
./$(DEPDIR)/if_index.Po ./$(DEPDIR)/localhost.Po \
271+
./$(DEPDIR)/logwtmpko.Po ./$(DEPDIR)/setsig.Po \
273272
./$(DEPDIR)/tftpsubs.Po ./$(DEPDIR)/ttymsg.Po \
274273
./$(DEPDIR)/utmp_init.Po ./$(DEPDIR)/utmp_logout.Po
275274
am__mv = mv -f
@@ -1489,7 +1488,6 @@ AM_CPPFLAGS = \
14891488

14901489
noinst_LIBRARIES = libinetutils.a
14911490
noinst_HEADERS = argcv.h libinetutils.h tftpsubs.h
1492-
14931491
EXTRA_DIST = logwtmp.c
14941492
libinetutils_a_SOURCES = \
14951493
argcv.c\

0 commit comments

Comments
 (0)