summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-15 09:56:06 +1100
committerDamien Miller <djm@mindrot.org>1999-11-15 09:56:06 +1100
commit0a6e668ac6607529a01a0ccd8471deec9eaa5b08 (patch)
tree951056d1c2752ad72afa9c17051173c2d4999d96
parente116a26556a6e7ca7ff61c47ca132e7b362ba452 (diff)
Solaris compile fixes
-rw-r--r--ChangeLog3
-rw-r--r--acconfig.h8
-rw-r--r--configure.in2
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8194b7d41..15f2e16e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
119991114
2 - Solaris compilation fixes (still imcomplete)
3
119991113 419991113
2 - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk> 5 - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
3 - Don't install config files if they already exist 6 - Don't install config files if they already exist
diff --git a/acconfig.h b/acconfig.h
index ac60cd4a4..e5eca5b30 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -39,3 +39,11 @@ enum
39#define SHUT_RDWR SHUT_RDWR 39#define SHUT_RDWR SHUT_RDWR
40}; 40};
41#endif 41#endif
42
43#if !defined(u_int32_t) && defined(uint32_t)
44#define u_int32_t uint32_t
45#endif
46
47#if !defined(u_int16_t) && defined(uint16_t)
48#define u_int16_t uint16_t
49#endif
diff --git a/configure.in b/configure.in
index bd34e6ddc..cd0c9a3de 100644
--- a/configure.in
+++ b/configure.in
@@ -79,7 +79,7 @@ AC_ARG_WITH(random,
79 [ --with-random=FILE read randomness from FILE (default /dev/urandom)], 79 [ --with-random=FILE read randomness from FILE (default /dev/urandom)],
80 [ 80 [
81 RANDOM_POOL="$withval"; 81 RANDOM_POOL="$withval";
82 AC_DEFINE(RANDOM_POOL, "$RANDOM_POOL") 82 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
83 ], 83 ],
84 [ 84 [
85 dnl Check for random device 85 dnl Check for random device