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)
|
2016.05.17, Version 1.9.1 (Stable)
Changes since version 1.9.0:
* test: handle root home directories (cjihrig)
* unix: implement uv__fs_futime for AIX 7.1 (Imran Iqbal)
* test: skip early bind tests if no IPv6 is supported (Saúl Ibarra
Corretgé)
* win: fix var declaration to be C89 compliant (Michael Fero)
* unix: use POLL{IN,OUT,etc} constants directly (Ben Noordhuis)
* doc: add ability to live reload and regenerate HTML (Saúl Ibarra
Corretgé)
* Revert "win,build: remove unused build defines" (cjihrig)
* linux: fix fd leaks in uv_cpu_info() error paths (Ben Noordhuis)
* linux: don't abort on malformed /proc/stat (Ben Noordhuis)
* linux: fix long lines in linux-core.c (Ben Noordhuis)
* test: fix fs_event_watch_file_current_dir for AIX (Imran Iqbal)
* unix,fs: code cleanup of uv_fs_event_start for AIX (Imran Iqbal)
* unix: delay signal handling until after normal i/o (Ben Noordhuis)
* android: pthread_sigmask() does not set errno (Oguz Bastemur)
* win: work around sharepoint scandir bug (Ben Noordhuis)
* unix: guard against clobbering errno in uv__free() (Ben Noordhuis)
* unix: remove unneeded SAVE_ERRNO wrappers (Ben Noordhuis)
* test: skip fs_event_close_in_callback on AIX (Imran Iqbal)
* win: add maxrss, pagefaults to uv_getrusage() (Robert Jefe Lindstaedt)
* test: set a big send buffer size for tcp_write_queue_order (Andrius
Bentkus)
* unix: error on realpath if PATH_MAX is undefined (Myles Borins)
* unix: fix bug in barrier fallback implementation (Kári Tristan
Helgason)
* build: bump android ndk version (Kári Tristan Helgason)
* build: always compile with -fvisibility=hidden (Ben Noordhuis)
* test: fix -Wformat warnings in platform test (Ben Noordhuis)
* win: clarify fsevents handling code (Saúl Ibarra Corretgé)
* test: fix POLLHDRUP related failures for AIX (Imran Iqbal)
* build, mingw: set LIBS in configure.ac (Tony Theodore)
* win: improve uv__convert_utf16_to_utf8 (Saúl Ibarra Corretgé)
* win: simplified UTF16 -> UTF8 conversions (Saúl Ibarra Corretgé)
* win: remove unneeded condition (Saúl Ibarra Corretgé)
* darwin: work around condition variable kernel bug (Ben Noordhuis)
* darwin: make thread stack multiple of page size (Ben Noordhuis)
* build,win: rename platform to msbuild_platform (João Reis)
* gitignore: ignore VS temporary database files (João Reis)
* test: skip emfile on AIX (Imran Iqbal)
* unix: use system allocator for scandir() (cjihrig)
* common: release uv_fs_scandir() array (cjihrig)
* win: call uv__fs_scandir_cleanup() (cjihrig)
* win,tty: fix read stop in line mode (João Reis)
* win,tty: don't duplicate handle for line reads (João Reis)
* win,tty: restore cursor after canceling line read (Alexis Campailla)
2016-05-16 23:22:19 +02:00
|
|
|
AC_INIT([libuv], [1.9.1], [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])
|
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([kvm], [kvm_open])
|
|
|
|
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])])
|
|
|
|
AM_CONDITIONAL([DARWIN], [AS_CASE([$host_os],[darwin*], [true], [false])])
|
|
|
|
AM_CONDITIONAL([DRAGONFLY],[AS_CASE([$host_os],[dragonfly*], [true], [false])])
|
|
|
|
AM_CONDITIONAL([FREEBSD], [AS_CASE([$host_os],[freebsd*], [true], [false])])
|
|
|
|
AM_CONDITIONAL([LINUX], [AS_CASE([$host_os],[linux*], [true], [false])])
|
|
|
|
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
|
|
|
])
|
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
|