1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

build: use -fvisibility=hidden in autotools build

The gyp build only exports symbols from the API but the autotools build
did not until now.

Fixes: https://github.com/libuv/libuv/issues/149
PR-URL: https://github.com/libuv/libuv/pull/164
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
This commit is contained in:
Ben Noordhuis 2015-01-24 18:44:02 +01:00
parent 965fffc2e9
commit 79e69fd555

View File

@ -24,6 +24,7 @@ AC_ENABLE_SHARED
AC_ENABLE_STATIC
AC_PROG_CC
AM_PROG_CC_C_O
CC_CHECK_CFLAGS_APPEND([-fvisibility=hidden])
CC_CHECK_CFLAGS_APPEND([-g])
CC_CHECK_CFLAGS_APPEND([-std=gnu89])
CC_CHECK_CFLAGS_APPEND([-pedantic])