diff options
author | B. Watson <urchlay@slackware.uk> | 2023-09-19 07:10:50 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-09-23 11:33:46 +0700 |
commit | 1699b53da6eeaac6022257a7280a06bb55e02d53 (patch) | |
tree | 3f0cd09877baa6319e7997e08dcc21b1332d32be /system/csh/bufsiz.diff | |
parent | 70512eadfd420fcf618faf3b9b00e2e280166e00 (diff) |
system/csh: Updated for version 20230828_1.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/csh/bufsiz.diff')
-rw-r--r-- | system/csh/bufsiz.diff | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/system/csh/bufsiz.diff b/system/csh/bufsiz.diff deleted file mode 100644 index 21d58a124a237..0000000000000 --- a/system/csh/bufsiz.diff +++ /dev/null @@ -1,30 +0,0 @@ -diff -Naur csh-20110502.orig/csh.h csh-20110502.patched/csh.h ---- csh-20110502.orig/csh.h 2014-04-25 17:31:52.000000000 -0400 -+++ csh-20110502.patched/csh.h 2014-04-25 17:34:08.000000000 -0400 -@@ -36,12 +36,10 @@ - * Fundamental definitions which may vary from system to system. - * - * BUFSIZ The i/o buffering size; also limits word size -+ * 20140425 bkw: moved below the #include <stdio.h> since -+ * we want to use the system's default BUFSIZ. - * MAILINTVL How often to mailcheck; more often is more expensive - */ --#ifndef BUFSIZ --#define BUFSIZ 1024 /* default buffer size */ --#endif /* BUFSIZ */ -- - #ifndef MAXPATHLEN - #define MAXPATHLEN BUFSIZ - #endif -@@ -96,6 +94,11 @@ - #include <stdio.h> - FILE *cshin, *cshout, *csherr; - -+/* 20140425 bkw: moved here so stdio.h is what initially defines BUFSIZ. */ -+#ifndef BUFSIZ -+#define BUFSIZ 1024 /* default buffer size */ -+#endif /* BUFSIZ */ -+ - #include <stdio_ext.h> - #define fpurge __fpurge - |