mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-16 14:41:02 +02:00
53094: remove unused autoconf tests
This commit is contained in:
parent
06f423f8a9
commit
62131ae049
3 changed files with 5 additions and 14 deletions
|
@ -1,5 +1,7 @@
|
||||||
2024-09-18 Oliver Kiddle <opk@zsh.org>
|
2024-09-18 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
|
* 53094: configure.ac, Src/signals.h: remove unused autoconf tests
|
||||||
|
|
||||||
* 53093: Src/input.c: silence compiler warning when USE_LSEEK
|
* 53093: Src/input.c: silence compiler warning when USE_LSEEK
|
||||||
is not defined
|
is not defined
|
||||||
|
|
||||||
|
|
|
@ -126,10 +126,5 @@
|
||||||
|
|
||||||
#define queue_signal_level() queueing_enabled
|
#define queue_signal_level() queueing_enabled
|
||||||
|
|
||||||
#ifdef BSD_SIGNALS
|
|
||||||
#define signal_block(S) sigblock(S)
|
|
||||||
#else
|
|
||||||
extern sigset_t signal_block (sigset_t);
|
extern sigset_t signal_block (sigset_t);
|
||||||
#endif /* BSD_SIGNALS */
|
|
||||||
|
|
||||||
extern sigset_t signal_unblock (sigset_t);
|
extern sigset_t signal_unblock (sigset_t);
|
||||||
|
|
12
configure.ac
12
configure.ac
|
@ -634,7 +634,7 @@ if test "x$enable_pcre" = xyes; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CHECK_HEADERS(sys/time.h sys/times.h sys/select.h termcap.h termio.h \
|
AC_CHECK_HEADERS(sys/time.h sys/times.h sys/select.h termcap.h termio.h \
|
||||||
termios.h sys/param.h sys/filio.h string.h memory.h \
|
termios.h sys/param.h sys/filio.h \
|
||||||
limits.h fcntl.h libc.h sys/utsname.h sys/resource.h \
|
limits.h fcntl.h libc.h sys/utsname.h sys/resource.h \
|
||||||
sys/sysctl.h sys/random.h \
|
sys/sysctl.h sys/random.h \
|
||||||
locale.h errno.h stdio.h stdarg.h varargs.h stdlib.h \
|
locale.h errno.h stdio.h stdarg.h varargs.h stdlib.h \
|
||||||
|
@ -849,11 +849,6 @@ esac])
|
||||||
|
|
||||||
AC_SEARCH_LIBS(getpwnam, nsl)
|
AC_SEARCH_LIBS(getpwnam, nsl)
|
||||||
|
|
||||||
dnl I am told that told that unicos reqire these for nis_list
|
|
||||||
if test `echo $host_os | sed 's/^\(unicos\).*/\1/'` = unicos; then
|
|
||||||
LIBS="-lcraylm -lkrb -lnisdb -lnsl -lrpcsvc $LIBS"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test "x$dynamic" = xyes; then
|
if test "x$dynamic" = xyes; then
|
||||||
AC_CHECK_LIB(dl, dlopen)
|
AC_CHECK_LIB(dl, dlopen)
|
||||||
fi
|
fi
|
||||||
|
@ -1258,13 +1253,12 @@ AC_CHECK_FUNCS(strftime strptime mktime timelocal \
|
||||||
fpurge fseeko ftello \
|
fpurge fseeko ftello \
|
||||||
mkfifo _mktemp mkstemp \
|
mkfifo _mktemp mkstemp \
|
||||||
waitpid wait3 \
|
waitpid wait3 \
|
||||||
sigaction sigblock sighold sigrelse sigsetmask sigprocmask \
|
|
||||||
sigqueue \
|
sigqueue \
|
||||||
killpg setpgid setpgrp tcsetpgrp tcgetattr nice \
|
killpg setpgid setpgrp tcsetpgrp tcgetattr nice \
|
||||||
gethostname gethostbyname2 getipnodebyname \
|
gethostname gethostbyname2 getipnodebyname \
|
||||||
inet_aton inet_pton inet_ntop \
|
inet_aton inet_pton inet_ntop \
|
||||||
getlogin getpwent getpwnam getpwuid getgrgid getgrnam \
|
getlogin getpwent getpwnam getpwuid getgrgid getgrnam \
|
||||||
initgroups nis_list \
|
initgroups \
|
||||||
setuid seteuid setreuid setresuid setsid \
|
setuid seteuid setreuid setresuid setsid \
|
||||||
setgid setegid setregid setresgid \
|
setgid setegid setregid setresgid \
|
||||||
memcpy memmove strstr strerror strtoul \
|
memcpy memmove strstr strerror strtoul \
|
||||||
|
@ -1275,7 +1269,7 @@ AC_CHECK_FUNCS(strftime strptime mktime timelocal \
|
||||||
signgam tgamma \
|
signgam tgamma \
|
||||||
log2 \
|
log2 \
|
||||||
scalbn \
|
scalbn \
|
||||||
putenv getenv setenv unsetenv xw\
|
putenv getenv setenv unsetenv \
|
||||||
brk sbrk \
|
brk sbrk \
|
||||||
pathconf sysconf \
|
pathconf sysconf \
|
||||||
tgetent tigetflag tigetnum tigetstr setupterm initscr resize_term \
|
tgetent tigetflag tigetnum tigetstr setupterm initscr resize_term \
|
||||||
|
|
Loading…
Reference in a new issue