mirror of
https://github.com/curl/curl.git
synced 2026-07-23 21:57:21 +03:00
HP-UX's X/Open network library requirement check follow-up
This commit is contained in:
parent
8119379d4f
commit
4dbc7850bd
2 changed files with 2 additions and 2 deletions
|
|
@ -169,7 +169,7 @@ int main (void)
|
|||
{
|
||||
#if defined(__hpux) && defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE >= 600)
|
||||
return 0;
|
||||
#if defined(__hpux) && defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)
|
||||
#elif defined(__hpux) && defined(_XOPEN_SOURCE_EXTENDED)
|
||||
return 0;
|
||||
#else
|
||||
force compilation error
|
||||
|
|
|
|||
|
|
@ -147,7 +147,7 @@ int main (void)
|
|||
{
|
||||
#if defined(__hpux) && defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE >= 600)
|
||||
return 0;
|
||||
#if defined(__hpux) && defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)
|
||||
#elif defined(__hpux) && defined(_XOPEN_SOURCE_EXTENDED)
|
||||
return 0;
|
||||
#else
|
||||
force compilation error
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue