2013-06-27 14:28:00 +02:00
|
|
|
# Copyright (c) 2013, Ben Noordhuis <info@bnoordhuis.nl>
|
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
|
|
# copyright notice and this permission notice appear in all copies.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
AC_PREREQ(2.57)
|
2022.07.12, Version 1.44.2 (Stable)
Changes since version 1.44.1:
* Add SHA to ChangeLog (Jameson Nash)
* aix, ibmi: handle server hang when remote sends TCP RST (V-for-Vasili)
* build: make CI a bit noisier (Jameson Nash)
* process: reset the signal mask if the fork fails (Jameson Nash)
* zos: implement cmpxchgi() using assembly (Shuowang (Wayne) Zhang)
* build: AC_SUBST for AM_CFLAGS (Claes Nästén)
* ibmi: Implement UDP disconnect (V-for-Vasili)
* doc: update active maintainers list (Ben Noordhuis)
* build: fix kFreeBSD build (James McCoy)
* build: remove Windows 2016 workflows (Darshan Sen)
* Revert "win,errors: remap ERROR_ACCESS_DENIED to UV_EACCES" (Darshan
Sen)
* unix: simplify getpwuid call (Jameson Nash)
* build: filter CI by paths and branches (Jameson Nash)
* build: add iOS to macos CI (Jameson Nash)
* build: re-enable CI for windows changes (Jameson Nash)
* process,iOS: fix build breakage in process.c (Denny C. Dai)
* test: remove unused declarations in tcp_rst test (V-for-Vasili)
* core: add thread-safe strtok implementation (Guilherme Íscaro)
* win: fix incompatible-types warning (twosee)
* test: fix flaky file watcher test (Ben Noordhuis)
* build: fix AIX xlc autotools build (V-for-Vasili)
* unix,win: fix UV_RUN_ONCE + uv_idle_stop loop hang (Ben Noordhuis)
* win: fix unexpected ECONNRESET error on TCP socket (twosee)
* doc: make sample cross-platform build (gengjiawen)
* test: separate some static variables by test cases (Hannah Shi)
* sunos: fs-event callback can be called after uv_close() (Andy
Fiddaman)
* uv: re-register interest in a file after change (Shuowang (Wayne)
Zhang)
* uv: register UV_RENAME event for _RFIM_UNLINK (Shuowang (Wayne) Zhang)
* uv: register __rfim_event 156 as UV_RENAME (Shuowang (Wayne) Zhang)
* doc: remove smartos from supported platforms (Ben Noordhuis)
* macos: avoid posix_spawnp() cwd bug (Jameson Nash)
* release: check versions of autogen scripts are newer (Jameson Nash)
* test: rewrite embed test (Ben Noordhuis)
* openbsd: use utimensat instead of lutimes (tuftedocelot)
* doc: fix link to uvwget example main() function (blogdaren)
* unix: use MSG_CMSG_CLOEXEC where supported (Ben Noordhuis)
* test: remove disabled callback_order test (Ben Noordhuis)
* win,pipe: fix bugs with pipe resource lifetime management (Jameson
Nash)
* loop: better align order-of-events behavior between platforms (Jameson
Nash)
* aix,test: uv_backend_fd is not supported by poll (V-for-Vasili)
* kqueue: skip EVFILT_PROC when invalidating fds (chucksilvers)
* darwin: fix atomic-ops.h ppc64 build (Sergey Fedorov)
* zos: don't err when killing a zombie process (Shuowang (Wayne) Zhang)
* zos: avoid fs event callbacks after uv_close() (Shuowang (Wayne)
Zhang)
* zos: correctly format interface addresses names (Shuowang (Wayne)
Zhang)
* zos: add uv_interface_addresses() netmask support (Shuowang (Wayne)
Zhang)
* zos: improve memory management of ip addresses (Shuowang (Wayne)
Zhang)
* tcp,pipe: fail `bind` or `listen` after `close` (theanarkh)
* zos: implement uv_available_parallelism() (Shuowang (Wayne) Zhang)
* udp,win: fix UDP compiler warning (Jameson Nash)
* zos: fix early exit of epoll_wait() (Shuowang (Wayne) Zhang)
* unix,tcp: fix errno handling in uv__tcp_bind() (Samuel Cabrero)
* shutdown,unix: reduce code duplication (Jameson Nash)
* unix: fix c99 comments (Ben Noordhuis)
* unix: retry tcgetattr/tcsetattr() on EINTR (Ben Noordhuis)
* docs: update introduction.rst (Ikko Ashimine)
* unix,stream: optimize uv_shutdown() codepath (Jameson Nash)
* zos: delay signal handling until after normal i/o (Shuowang (Wayne)
Zhang)
* stream: uv__drain() always needs to stop POLLOUT (Jameson Nash)
* unix,tcp: allow EINVAL errno from setsockopt in uv_tcp_close_reset()
(Stacey Marshall)
* win,shutdown: improve how shutdown is dispatched (Jameson Nash)
2022-07-12 12:16:33 -04:00
|
|
|
AC_INIT([libuv], [1.44.2], [https://github.com/libuv/libuv/issues])
|
2013-06-27 14:28:00 +02:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2014-04-05 21:31:24 +04:00
|
|
|
m4_include([m4/libuv-extra-automake-flags.m4])
|
2014-03-25 17:35:47 +09:00
|
|
|
m4_include([m4/as_case.m4])
|
2014-09-14 15:09:48 +03:00
|
|
|
m4_include([m4/libuv-check-flags.m4])
|
2013-08-17 14:49:38 +02:00
|
|
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects] UV_EXTRA_AUTOMAKE_FLAGS)
|
2013-06-27 14:28:00 +02:00
|
|
|
AC_CANONICAL_HOST
|
|
|
|
AC_ENABLE_SHARED
|
|
|
|
AC_ENABLE_STATIC
|
|
|
|
AC_PROG_CC
|
2013-07-29 00:22:01 +02:00
|
|
|
AM_PROG_CC_C_O
|
2021-07-02 20:50:18 +02:00
|
|
|
|
|
|
|
CC_ATTRIBUTE_VISIBILITY([default], [
|
|
|
|
CC_FLAG_VISIBILITY([CFLAGS="${CFLAGS} -fvisibility=hidden"])
|
|
|
|
])
|
2022-04-06 08:07:05 -04:00
|
|
|
# Xlc has a flag "-f<filename>". Need to use CC_CHECK_FLAG_SUPPORTED_APPEND so
|
|
|
|
# we exclude -fno-strict-aliasing for xlc
|
|
|
|
CC_CHECK_FLAG_SUPPORTED_APPEND([-fno-strict-aliasing])
|
2015-01-05 17:13:52 +01:00
|
|
|
CC_CHECK_CFLAGS_APPEND([-g])
|
2019-03-27 10:35:55 +01:00
|
|
|
CC_CHECK_CFLAGS_APPEND([-std=gnu89])
|
|
|
|
CC_CHECK_CFLAGS_APPEND([-Wall])
|
|
|
|
CC_CHECK_CFLAGS_APPEND([-Wextra])
|
2019-10-14 15:14:30 +02:00
|
|
|
CC_CHECK_CFLAGS_APPEND([-Wno-long-long])
|
2019-03-27 10:35:55 +01:00
|
|
|
CC_CHECK_CFLAGS_APPEND([-Wno-unused-parameter])
|
|
|
|
CC_CHECK_CFLAGS_APPEND([-Wstrict-prototypes])
|
2013-07-02 12:39:26 +02:00
|
|
|
# AM_PROG_AR is not available in automake v0.11 but it's essential in v0.12.
|
|
|
|
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
|
2015-01-05 09:29:46 +01:00
|
|
|
# autoconf complains if AC_PROG_LIBTOOL precedes AM_PROG_AR.
|
|
|
|
AC_PROG_LIBTOOL
|
2013-07-02 18:01:26 +02:00
|
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
2013-06-27 14:28:00 +02:00
|
|
|
LT_INIT
|
2020-04-29 19:57:52 +02:00
|
|
|
AX_PTHREAD([
|
|
|
|
LIBS="$LIBS $PTHREAD_LIBS"
|
|
|
|
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
|
|
|
])
|
2021-05-12 22:51:36 +00:00
|
|
|
AC_SEARCH_LIBS([dlopen], [dl])
|
2020-04-29 19:57:52 +02:00
|
|
|
AC_SEARCH_LIBS([kstat_lookup], [kstat])
|
|
|
|
AC_SEARCH_LIBS([gethostbyname], [nsl])
|
|
|
|
AC_SEARCH_LIBS([perfstat_cpu], [perfstat])
|
|
|
|
AC_SEARCH_LIBS([clock_gettime], [rt])
|
|
|
|
AC_SEARCH_LIBS([sendfile], [sendfile])
|
|
|
|
AC_SEARCH_LIBS([socket], [socket])
|
2013-06-27 14:28:00 +02:00
|
|
|
AC_SYS_LARGEFILE
|
2014-09-26 20:41:59 +02:00
|
|
|
AM_CONDITIONAL([AIX], [AS_CASE([$host_os],[aix*], [true], [false])])
|
|
|
|
AM_CONDITIONAL([ANDROID], [AS_CASE([$host_os],[linux-android*],[true], [false])])
|
2017-04-06 21:56:34 -04:00
|
|
|
AM_CONDITIONAL([CYGWIN], [AS_CASE([$host_os],[cygwin*], [true], [false])])
|
2014-09-26 20:41:59 +02:00
|
|
|
AM_CONDITIONAL([DARWIN], [AS_CASE([$host_os],[darwin*], [true], [false])])
|
|
|
|
AM_CONDITIONAL([DRAGONFLY],[AS_CASE([$host_os],[dragonfly*], [true], [false])])
|
2016-07-28 14:26:01 -05:00
|
|
|
AM_CONDITIONAL([FREEBSD], [AS_CASE([$host_os],[*freebsd*], [true], [false])])
|
2022-03-19 06:30:36 -04:00
|
|
|
AM_CONDITIONAL([KFREEBSD], [AS_CASE([$host_os],[kfreebsd*], [true], [false])])
|
2019-06-07 09:57:06 +02:00
|
|
|
AM_CONDITIONAL([HAIKU], [AS_CASE([$host_os],[haiku], [true], [false])])
|
2018-09-07 10:26:18 +02:00
|
|
|
AM_CONDITIONAL([HURD], [AS_CASE([$host_os],[gnu*], [true], [false])])
|
2014-09-26 20:41:59 +02:00
|
|
|
AM_CONDITIONAL([LINUX], [AS_CASE([$host_os],[linux*], [true], [false])])
|
2017-04-06 21:56:34 -04:00
|
|
|
AM_CONDITIONAL([MSYS], [AS_CASE([$host_os],[msys*], [true], [false])])
|
2014-09-26 20:41:59 +02:00
|
|
|
AM_CONDITIONAL([NETBSD], [AS_CASE([$host_os],[netbsd*], [true], [false])])
|
|
|
|
AM_CONDITIONAL([OPENBSD], [AS_CASE([$host_os],[openbsd*], [true], [false])])
|
2016-07-05 18:37:45 -04:00
|
|
|
AM_CONDITIONAL([OS390], [AS_CASE([$host_os],[openedition*], [true], [false])])
|
2019-07-15 23:58:25 -05:00
|
|
|
AM_CONDITIONAL([OS400], [AS_CASE([$host_os],[os400], [true], [false])])
|
2014-09-26 20:41:59 +02:00
|
|
|
AM_CONDITIONAL([SUNOS], [AS_CASE([$host_os],[solaris*], [true], [false])])
|
|
|
|
AM_CONDITIONAL([WINNT], [AS_CASE([$host_os],[mingw*], [true], [false])])
|
2016-04-12 11:06:36 +10:00
|
|
|
AS_CASE([$host_os],[mingw*], [
|
2016-05-11 13:03:30 +01:00
|
|
|
LIBS="$LIBS -lws2_32 -lpsapi -liphlpapi -lshell32 -luserenv -luser32"
|
2016-04-12 11:06:36 +10:00
|
|
|
])
|
2017-06-14 16:35:14 -07:00
|
|
|
AS_CASE([$host_os], [netbsd*], [AC_CHECK_LIB([kvm], [kvm_open])])
|
2018-07-25 13:35:38 +02:00
|
|
|
AS_CASE([$host_os], [kfreebsd*], [
|
|
|
|
LIBS="$LIBS -lfreebsd-glue"
|
|
|
|
])
|
2019-06-07 09:57:06 +02:00
|
|
|
AS_CASE([$host_os], [haiku], [
|
|
|
|
LIBS="$LIBS -lnetwork"
|
|
|
|
])
|
2015-05-27 10:46:57 -04:00
|
|
|
AC_CHECK_HEADERS([sys/ahafs_evProds.h])
|
2017-12-18 22:57:33 +01:00
|
|
|
AC_CONFIG_FILES([Makefile libuv.pc])
|
2018-11-29 14:50:33 -05:00
|
|
|
AC_CONFIG_LINKS([test/fixtures/empty_file:test/fixtures/empty_file])
|
|
|
|
AC_CONFIG_LINKS([test/fixtures/load_error.node:test/fixtures/load_error.node])
|
2019-08-28 18:27:29 +02:00
|
|
|
AC_CONFIG_LINKS([test/fixtures/lorem_ipsum.txt:test/fixtures/lorem_ipsum.txt])
|
2013-06-27 14:28:00 +02:00
|
|
|
AC_OUTPUT
|