-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For the TLS examples and SWTPM interface that use POSIX sockets make …
…sure `netdb.h` is included. Previously wolfSSL always included netdb.h, but now it requires `HAVE_NETDB_H`.
- Loading branch information
Showing
6 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# wolfTPM CMake | ||
|
||
This directory contains some supplementary files for the [CMakeLists.txt](../CMakeLists.txt) in the root. | ||
|
||
See also cmake notes in the [INSTALL](../INSTALL) documentation file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* Define to 1 if you have the <fcntl.h> header file. */ | ||
#cmakedefine HAVE_FCNTL_H @HAVE_FCNTL_H@ | ||
|
||
/* Define to 1 if you have the <netdb.h> header file. */ | ||
#cmakedefine HAVE_NETDB_H @HAVE_NETDB_H@ | ||
|
||
/* Define to 1 if you have the <time.h> header file. */ | ||
#cmakedefine HAVE_TIME_H @HAVE_TIME_H@ | ||
|
||
/* Define to 1 if you have the <sys/ioctl.h> header file. */ | ||
#cmakedefine HAVE_SYS_IOCTL_H @HAVE_SYS_IOCTL_H@ | ||
|
||
/* Define to 1 if you have the <sys/socket.h> header file. */ | ||
#cmakedefine HAVE_SYS_SOCKET_H @HAVE_SYS_SOCKET_H@ | ||
|
||
/* Define to 1 if you have the <sys/time.h> header file. */ | ||
#cmakedefine HAVE_SYS_TIME_H @HAVE_SYS_TIME_H@ | ||
|
||
/* Define to 1 if you have the <errno.h> header file. */ | ||
#cmakedefine HAVE_ERRNO_H @HAVE_ERRNO_H@ | ||
|
||
/* Define to 1 if you have the <stdint.h> header file. */ | ||
#cmakedefine HAVE_STDINT_H @HAVE_STDINT_H@ | ||
|
||
/* Define to 1 if you have the <stdlib.h> header file. */ | ||
#cmakedefine HAVE_STDLIB_H @HAVE_STDLIB_H@ | ||
|
||
/* Define to 1 if you have the <string.h> header file. */ | ||
#cmakedefine HAVE_STRING_H @HAVE_STRING_H@ | ||
|
||
/* Define to 1 if you have the <sys/stat.h> header file. */ | ||
#cmakedefine HAVE_SYS_STAT_H @HAVE_SYS_STAT_H@ | ||
|
||
/* Define to 1 if you have the <sys/types.h> header file. */ | ||
#cmakedefine HAVE_SYS_TYPES_H @HAVE_SYS_TYPES_H@ | ||
|
||
/* Define to 1 if you have the <unistd.h> header file. */ | ||
#cmakedefine HAVE_UNISTD_H @HAVE_UNISTD_H@ | ||
|
||
|
||
/* Define to 1 if you have the `getaddrinfo' function. */ | ||
#cmakedefine HAVE_GETADDRINFO @HAVE_GETADDRINFO@ | ||
|
||
/* Define to 1 if you have the `gethostbyname' function. */ | ||
#cmakedefine HAVE_GETHOSTBYNAME @HAVE_GETHOSTBYNAME@ | ||
|
||
/* Define to 1 if you have the `gettimeofday' function. */ | ||
#cmakedefine HAVE_GETTIMEOFDAY @HAVE_GETTIMEOFDAY@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
EXTRA_DIST += cmake/README.md | ||
EXTRA_DIST += cmake/config.in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters