openbsd-ports/benchmarks/iozone/patches/patch-iozone_c
marc 5c4258b509 Add patch that removed unneeded OpenBSD specific define that had the
net results of defining both O_FSYNC and O_SYNC in terms of each other.
2000-05-29 04:18:32 +00:00

18 lines
430 B
Plaintext

$OpenBSD: patch-iozone_c,v 1.1 2000/05/29 04:18:32 marc Exp $
Without this patch the net result of includes and defines are:
#define O_FSYNC O_SYNC
#define O_SYNC O_FSYNC
--- iozone.c.orig Tue Sep 14 14:38:16 1999
+++ iozone.c Sun May 28 21:03:54 2000
@@ -195,7 +195,7 @@ THISVERSION,
#include <malloc.h>
#endif
-#if defined (__FreeBSD__) || defined(__OpenBSD__)
+#if defined (__FreeBSD__)
#define O_SYNC O_FSYNC
#endif