diff options
author | Tom Lane | 2005-07-18 17:09:01 +0000 |
---|---|---|
committer | Tom Lane | 2005-07-18 17:09:01 +0000 |
commit | 2787db9b1d3a041913d0b5e8c888bc9619f6571a (patch) | |
tree | bb23569f7c124c28a0509a6f9dcd6ad032b47b35 /contrib/pgcrypto/random.c | |
parent | dd4a190d188865e9626441c314f2ff331a631f58 (diff) |
Small cleanups for pgcrypto. Marko Kreen
Diffstat (limited to 'contrib/pgcrypto/random.c')
-rw-r--r-- | contrib/pgcrypto/random.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/pgcrypto/random.c b/contrib/pgcrypto/random.c index 059fad3c8b3..242eb175dab 100644 --- a/contrib/pgcrypto/random.c +++ b/contrib/pgcrypto/random.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/random.c,v 1.14 2005/07/11 19:06:46 tgl Exp $ + * $PostgreSQL: pgsql/contrib/pgcrypto/random.c,v 1.15 2005/07/18 17:09:01 tgl Exp $ */ #include "postgres.h" @@ -44,7 +44,9 @@ */ #if defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__) \ || defined(__NetBSD__) || defined(__DragonFly__) \ - || defined(__darwin__) || defined(__SOLARIS__) + || defined(__darwin__) || defined(__SOLARIS__) \ + || defined(__hpux) || defined(__HPUX__) \ + || defined(__CYGWIN__) || defined(_AIX) #define TRY_DEV_RANDOM |