diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-03-20 04:17:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-03-20 04:17:34 +0000 |
commit | 59203450688554f2b63e1ccf2894e033b20f4c01 (patch) | |
tree | 061c0aba5723c9495746db59b6aebe64439b42be | |
parent | 6df719184c744a7bee72d69fb2b511498b7070da (diff) | |
download | postgresql-59203450688554f2b63e1ccf2894e033b20f4c01.tar.gz postgresql-59203450688554f2b63e1ccf2894e033b20f4c01.zip |
Sorry. I made above mistakes. "__svr4" should be "__svr4__" or
"__SVR4" as you pointed out. There is another file that has the
same mistakes. Included is a patche for include/c.h.
t-ishii@sra.co.jp
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index b30aefa6f8d..c703a2fc4bd 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.36 1998/02/26 04:39:47 momjian Exp $ + * $Id: c.h,v 1.37 1998/03/20 04:17:34 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -793,7 +793,7 @@ extern char *form(const char *fmt,...); #endif /* hpux */ #endif -#if defined(sun) && defined(sparc) && !defined(__svr4) +#if defined(sun) && defined(sparc) && !defined(__SVR4) #define memmove(d, s, l) bcopy(s, d, l) #include <unistd.h> #endif |