-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
generate opensslconf.h based on host cpu architecture
- Loading branch information
Showing
7 changed files
with
41 additions
and
27 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
AM_CFLAGS = | ||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/include/compat -DLIBRESSL_INTERNAL | ||
AM_CPPFLAGS = -I$(top_srcdir)/include | ||
AM_CPPFLAGS += -I$(abs_top_builddir)/include | ||
AM_CPPFLAGS += -I$(top_srcdir)/include/compat -DLIBRESSL_INTERNAL | ||
AM_CPPFLAGS += -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_DECLS= |
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,15 @@ | ||
#if defined(_MSC_VER) && !defined(__clang__) && !defined(__attribute__) | ||
#define __attribute__(a) | ||
#endif | ||
|
||
#if defined(LIBRESSL_INTERNAL) && !defined(LIBRESSL_NAMESPACE) | ||
# define LCRYPTO_UNUSED(x) | ||
# define LCRYPTO_USED(x) | ||
# define LCRYPTO_ALIAS1(pre, x) | ||
# define LCRYPTO_ALIAS(x) | ||
|
||
# define LSSL_UNUSED(x) | ||
# define LSSL_USED(x) | ||
# define LSSL_ALIAS(x) | ||
#endif /* LIBRESSL_INTERNAL && !LIBRESSL_NAMESPACE */ | ||
|
This file was deleted.
Oops, something went wrong.
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