From a44f41349b369c06c2aae15f8ead1be352d072f4 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Thu, 17 Jan 2019 17:22:25 -0500 Subject: [PATCH] Revert "ibmi: add support for IBM i to cmake build" This reverts commit 8d62d933ef31fd47ae269395364a280a12eb9636. The corresponding autotools update broke the CI. This commit is reverted for consistency. Refs: https://github.com/libuv/libuv/pull/2148 PR-URL: https://github.com/libuv/libuv/pull/2156 Reviewed-By: Santiago Gimeno --- CMakeLists.txt | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e925614d..fa268a13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -305,21 +305,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD") list(APPEND uv_sources src/unix/openbsd.c) endif() -if(CMAKE_SYSTEM_NAME STREQUAL "OS400") - list(APPEND uv_cflags -Wno-attributes) - list(APPEND uv_defines - _ALL_SOURCE - _LINUX_SOURCE_COMPAT - _THREAD_SAFE - _XOPEN_SOURCE=500) - list(APPEND uv_sources - src/unix/aix-common.c - src/unix/ibmi.c - src/unix/posix-poll.c - src/unix/no-fsevents.c - src/unix/no-proctitle.c) -endif() - if(CMAKE_SYSTEM_NAME STREQUAL "OS/390") list(APPEND uv_defines PATH_MAX=255) list(APPEND uv_defines _AE_BIMODAL)