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)
|
2017.05.31, Version 1.12.0 (Stable)
Changes since version 1.11.0:
* Now working on version 1.11.1 (cjihrig)
* test: fix tests on OpenBSD (Santiago Gimeno)
* test: fix -Wformat warning (Santiago Gimeno)
* win,fs: avoid double freeing uv_fs_event_t.dirw (Vladimir Matveev)
* unix: remove unused code in `uv__io_start` (Fedor Indutny)
* signal: add uv_signal_start_oneshot method (Santiago Gimeno)
* unix: factor out reusable POSIX hrtime impl (Brad King)
* unix,win: add uv_os_{get,set,unset}env() (cjihrig)
* win: add uv__convert_utf8_to_utf16() (cjihrig)
* docs: improve UV_ENOBUFS scenario documentation (cjihrig)
* unix: return UV_EINVAL for NULL env name (jBarz)
* unix: filter getifaddrs results consistently (Brad King)
* unix: factor out getifaddrs result filter (Brad King)
* unix: factor out reusable BSD ifaddrs impl (Brad King)
* unix: use union to follow strict aliasing rules (jBarz)
* unix: simplify async watcher dispatch logic (Ben Noordhuis)
* samples: update timer callback prototype (Ben Noordhuis)
* unix: make loops and watchers usable after fork() (Jason Madden)
* win: free uv__loops once empty (cjihrig)
* tools: add make_dist_html.py script (Ben Noordhuis)
* win,sunos: stop handle on uv_fs_event_start() err (cjihrig)
* unix,windows: refactor request init logic (Ben Noordhuis)
* win: fix memory leak inside uv__pipe_getname (A. Hauptmann)
* fsevent: support for files without short name (Bartosz Sosnowski)
* doc: fix multiple doc typos (Jamie Davis)
* test,osx: fix flaky kill test (Santiago Gimeno)
* unix: inline uv_pipe_bind() err_bind goto target (cjihrig)
* unix,test: deadstore fixes (Rasmus Christian Pedersen)
* win: fix memory leak inside uv_fs_access() (A. Hauptmann)
* doc: fix docs/src/fs.rst build warning (Daniel Bevenius)
* doc: minor grammar fix in Installation section (Daniel Bevenius)
* doc: suggestions for design page (Daniel Bevenius)
* doc: libuv does not touch uv_loop_t.data (Ben Noordhuis)
* github: add ISSUE_TEMPLATE.md (Ben Noordhuis)
* doc: add link to libuv/help to README (Ben Noordhuis)
* udp: fix fast path in uv_udp_send() on unix (Fedor Indutny)
* test: add test for uv_udp_send() fix (Trevor Norris)
* doc: fix documentation for uv_handle_t.type (Daniel Kahn Gillmor)
* zos: use proper prototype for epoll_init() (Ben Noordhuis)
* doc: rename docs to "libuv documentation" (Saúl Ibarra Corretgé)
* doc: update copyright years (Saúl Ibarra Corretgé)
* doc: move TOC to a dedicated document (Saúl Ibarra Corretgé)
* doc: move documentation section up (Saúl Ibarra Corretgé)
* doc: move "upgrading" to a standalone document (Saúl Ibarra Corretgé)
* doc: add initial version of the User Guide (Saúl Ibarra Corretgé)
* doc: removed unused file (Saúl Ibarra Corretgé)
* doc: update guide/about and mention new maintainership (Saúl Ibarra
Corretgé)
* doc: remove licensing note from guide/about (Saúl Ibarra Corretgé)
* doc: add warning note to user guide (Saúl Ibarra Corretgé)
* doc: change license to CC BY 4.0 (Saúl Ibarra Corretgé)
* doc: remove ubvook reference from README (Saúl Ibarra Corretgé)
* doc: add code samples from uvbook (unadapted) (Saúl Ibarra Corretgé)
* doc: update supported linux/glibc baseline (Ben Noordhuis)
* win: avoid leaking pipe handles to child processes (Jameson Nash)
* win,test: support stdout output larger than 1kb (Bartosz Sosnowski)
* win: remove __declspec(inline) from atomic op (Keane)
* test: fix VC++ compilation warning (Rasmus Christian Pedersen)
* build: add -Wstrict-prototypes (Jameson Nash)
* zos: implement uv__io_fork, skip fs event tests (jBarz)
* unix: do not close udp sockets on bind error (Marc Schlaich)
* unix: remove FSEventStreamFlushSync() call (cjihrig)
* build,openbsd: remove kvm-related code (James McCoy)
* test: fix flaky tcp-write-queue-order (Santiago Gimeno)
* unix,win: add uv_os_gethostname() (cjihrig)
* zos: increase timeout for tcp_writealot (jBarz)
* zos: do not inline OOB data by default (jBarz)
* test: fix -Wstrict-prototypes compiler warnings (Ben Noordhuis)
* unix: factor out reusable no-proctitle impl (Brad King)
* test: factor out fsevents skip explanation (Brad King)
* test: skip fork fsevent cases when lacking support (Brad King)
* unix: factor out reusable no-fsevents impl (Brad King)
* unix: factor out reusable sysinfo memory lookup (Brad King)
* unix: factor out reusable sysinfo loadavg impl (Brad King)
* unix: factor out reusable procfs exepath impl (Brad King)
* unix: add a uv__io_poll impl using POSIX poll(2) (Brad King)
* cygwin: implement support for cygwin and msys2 (Brad King)
* cygwin: recognize EOF on named pipe closure (Brad King)
* cygwin: fix uv_pipe_connect report of ENOTSOCK (Brad King)
* cygwin: disable non-functional ipc handle send (Brad King)
* test: skip self-connecting tests on cygwin (Brad King)
* doc: mark uv_loop_fork() as experimental (cjihrig)
* doc: add bzoz to maintainers (Bartosz Sosnowski)
* doc: fix memory leak in tcp-echo-server example (Bernardo Ramos)
* win: make uv__get_osfhandle() public (Juan Cruz Viotti)
* doc: use valid pipe name in pipe-echo-server (Bernardo Ramos)
2017-05-30 12:18:19 -04:00
|
|
|
AC_INIT([libuv], [1.12.0], [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
|
2016-07-05 18:37:45 -04:00
|
|
|
AS_IF([AS_CASE([$host_os],[openedition*], [false], [true])], [
|
|
|
|
CC_CHECK_CFLAGS_APPEND([-pedantic])
|
|
|
|
])
|
2016-06-13 14:55:41 -04:00
|
|
|
CC_FLAG_VISIBILITY #[-fvisibility=hidden]
|
2015-01-05 17:13:52 +01:00
|
|
|
CC_CHECK_CFLAGS_APPEND([-g])
|
|
|
|
CC_CHECK_CFLAGS_APPEND([-std=gnu89])
|
2014-12-01 23:31:00 +01:00
|
|
|
CC_CHECK_CFLAGS_APPEND([-Wall])
|
|
|
|
CC_CHECK_CFLAGS_APPEND([-Wextra])
|
|
|
|
CC_CHECK_CFLAGS_APPEND([-Wno-unused-parameter])
|
2017-04-27 10:23:46 -04:00
|
|
|
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
|
|
|
|
# TODO(bnoordhuis) Check for -pthread vs. -pthreads
|
|
|
|
AC_CHECK_LIB([dl], [dlopen])
|
|
|
|
AC_CHECK_LIB([kstat], [kstat_lookup])
|
|
|
|
AC_CHECK_LIB([nsl], [gethostbyname])
|
|
|
|
AC_CHECK_LIB([perfstat], [perfstat_cpu])
|
|
|
|
AC_CHECK_LIB([pthread], [pthread_mutex_init])
|
|
|
|
AC_CHECK_LIB([rt], [clock_gettime])
|
|
|
|
AC_CHECK_LIB([sendfile], [sendfile])
|
|
|
|
AC_CHECK_LIB([socket], [socket])
|
|
|
|
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])])
|
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])])
|
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-05-12 23:25:06 -04:00
|
|
|
AS_CASE([$host_os], [openbsd*], [], [
|
|
|
|
AC_CHECK_LIB([kvm], [kvm_open])
|
|
|
|
])
|
2015-05-27 10:46:57 -04:00
|
|
|
AC_CHECK_HEADERS([sys/ahafs_evProds.h])
|
2013-12-08 22:47:57 +01:00
|
|
|
AC_CHECK_PROG(PKG_CONFIG, pkg-config, yes)
|
2014-02-28 23:19:55 +01:00
|
|
|
AM_CONDITIONAL([HAVE_PKG_CONFIG], [test "x$PKG_CONFIG" != "x"])
|
|
|
|
AS_IF([test "x$PKG_CONFIG" != "x"], [
|
2013-12-08 22:47:57 +01:00
|
|
|
AC_CONFIG_FILES([libuv.pc])
|
2013-12-06 09:43:44 +01:00
|
|
|
])
|
2013-06-27 14:28:00 +02:00
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|