diff options
Diffstat (limited to 'crypto/Makefile.am')
-rw-r--r-- | crypto/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index e350cda..83bf0c6 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -69,6 +69,9 @@ if !HAVE_ARC4RANDOM_BUF | |||
69 | libcompat_la_SOURCES += compat/arc4random.c | 69 | libcompat_la_SOURCES += compat/arc4random.c |
70 | 70 | ||
71 | if !HAVE_GETENTROPY | 71 | if !HAVE_GETENTROPY |
72 | if HOST_AIX | ||
73 | libcompat_la_SOURCES += compat/getentropy_aix.c | ||
74 | endif | ||
72 | if HOST_FREEBSD | 75 | if HOST_FREEBSD |
73 | libcompat_la_SOURCES += compat/getentropy_freebsd.c | 76 | libcompat_la_SOURCES += compat/getentropy_freebsd.c |
74 | endif | 77 | endif |
@@ -95,6 +98,9 @@ endif | |||
95 | endif | 98 | endif |
96 | 99 | ||
97 | if !HAVE_ISSETUGID | 100 | if !HAVE_ISSETUGID |
101 | if HOST_AIX | ||
102 | libcompat_la_SOURCES += compat/issetugid_aix.c | ||
103 | endif | ||
98 | if HOST_LINUX | 104 | if HOST_LINUX |
99 | libcompat_la_SOURCES += compat/issetugid_linux.c | 105 | libcompat_la_SOURCES += compat/issetugid_linux.c |
100 | endif | 106 | endif |
@@ -111,6 +117,7 @@ endif | |||
111 | 117 | ||
112 | noinst_HEADERS = | 118 | noinst_HEADERS = |
113 | noinst_HEADERS += compat/arc4random.h | 119 | noinst_HEADERS += compat/arc4random.h |
120 | noinst_HEADERS += compat/arc4random_aix.h | ||
114 | noinst_HEADERS += compat/arc4random_freebsd.h | 121 | noinst_HEADERS += compat/arc4random_freebsd.h |
115 | noinst_HEADERS += compat/arc4random_hpux.h | 122 | noinst_HEADERS += compat/arc4random_hpux.h |
116 | noinst_HEADERS += compat/arc4random_linux.h | 123 | noinst_HEADERS += compat/arc4random_linux.h |