mirror of
https://github.com/json-c/json-c.git
synced 2026-04-05 05:19:07 +08:00
apps: use CMake check for getopt.h
Add CMake detection for getopt.h and update json_parse.c to include it only when HAVE_GETOPT_H is defined. Fixes AIX build failure.
This commit is contained in:
@@ -94,6 +94,9 @@ endif() # end "standalone mode" block
|
|||||||
|
|
||||||
# ---------------------------------
|
# ---------------------------------
|
||||||
|
|
||||||
|
# Check whether getopt.h exists
|
||||||
|
check_include_file(getopt.h HAVE_GETOPT_H)
|
||||||
|
|
||||||
check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H) # for getrusage
|
check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H) # for getrusage
|
||||||
if (HAVE_SYS_RESOURCE_H)
|
if (HAVE_SYS_RESOURCE_H)
|
||||||
check_symbol_exists(getrusage "sys/resource.h" HAVE_GETRUSAGE)
|
check_symbol_exists(getrusage "sys/resource.h" HAVE_GETRUSAGE)
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#ifdef HAVE_GETOPT_H
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
|
#endif
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|||||||
Reference in New Issue
Block a user