changeset 163:4aeea06507af

[!NINDIR]: Define BSIZE only if it's not already defined.
author Jim Meyering <jim@meyering.net>
date Sun, 17 Oct 1993 22:31:39 +0000
parents db319931184f
children 18c09d5d4e58
files lib/fileblocks.c
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib/fileblocks.c	Sun Oct 17 02:57:53 1993 +0000
+++ b/lib/fileblocks.c	Sun Oct 17 22:31:39 1993 +0000
@@ -17,6 +17,17 @@
 
 /* Written by Brian L. Matthews, blm@6sceng.UUCP. */
 
+#ifdef HAVE_CONFIG_H
+#if defined (CONFIG_BROKETS)
+/* We use <config.h> instead of "config.h" so that a compilation
+   using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
+   (which it would do because it found this file in $srcdir).  */
+#include <config.h>
+#else
+#include "config.h"
+#endif
+#endif
+
 #if !defined (HAVE_ST_BLOCKS) && !defined(_POSIX_SOURCE)
 #include <sys/types.h>
 #include <sys/param.h>
@@ -24,7 +35,9 @@
 #ifndef NINDIR
 /* Some SysV's, like Irix, seem to lack these.  Hope they're correct. */
 /* Size of a indirect block, in bytes. */
+#ifndef BSIZE
 #define BSIZE 1024
+#endif
 
 /* Number of inode pointers per indirect block. */
 #define NINDIR (BSIZE/sizeof(daddr_t))