1
1

Merge pull request #5277 from jsquyres/pr/cygwin-patch

external libevent: fix for Cygwin
Этот коммит содержится в:
Jeff Squyres 2018-06-18 11:08:30 -04:00 коммит произвёл GitHub
родитель a4bfa11425 07c8ec6a3c
Коммит 266d5b2110
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

6
opal/mca/event/external/external.h поставляемый
Просмотреть файл

@ -1,5 +1,5 @@
/*
* Copyright (c) 2011-2015 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2011-2018 Cisco Systems, Inc. All rights reserved
* Copyright (c) 2013 Los Alamos National Security, LLC. All rights reserved.
* Copyright (c) 2015-2017 Intel, Inc. All rights reserved.
* Copyright (c) 2015-2017 Research Organization for Information Science
@ -22,6 +22,10 @@
#include "opal_config.h"
#if defined(__CYGWIN__) && defined(WIN32)
#undef WIN32
#endif
#include "event.h"
#include "event2/event.h"
#include "event2/thread.h"