summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-12 15:57:18 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-12 15:57:18 +0000
commit5d8520ab76cb794358e0bc439d0d1acaabc7dbf8 (patch)
tree206605c31b2558f2b751232f2b8b684228b89356
parent7f982bf6c93ee7ab3426a059af51d21663ed36f0 (diff)
- (bal) added NeXT work around for bsd-snprintf.c in bsd-nextstep.h.
- (bal) added TODO item to clean up and sort out 'varargs' from 'stdargs'
-rw-r--r--ChangeLog6
-rw-r--r--TODO7
-rw-r--r--openbsd-compat/bsd-nextstep.h8
3 files changed, 17 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index afec2dbb7..bb7fda998 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120010213
2 - (bal) added NeXT work around for bsd-snprintf.c in bsd-nextstep.h.
3 - (bal) added TODO item to clean up and sort out 'varargs' from 'stdargs'
4
120010212 520010212
2 - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1", 6 - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1",
3 --define "skip_gnome_askpass 1", --define "rh7 1" and make the 7 --define "skip_gnome_askpass 1", --define "rh7 1" and make the
@@ -3904,4 +3908,4 @@
3904 - Wrote replacements for strlcpy and mkdtemp 3908 - Wrote replacements for strlcpy and mkdtemp
3905 - Released 1.0pre1 3909 - Released 1.0pre1
3906 3910
3907$Id: ChangeLog,v 1.749 2001/02/12 15:07:52 stevesk Exp $ 3911$Id: ChangeLog,v 1.750 2001/02/12 15:57:18 mouring Exp $
diff --git a/TODO b/TODO
index fc6009673..2d953fd34 100644
--- a/TODO
+++ b/TODO
@@ -27,7 +27,10 @@ Programming:
27- Build an automated test suite 27- Build an automated test suite
28 28
29- Verify that It's safe to enable NGROUPS_MAX under NeXTStep for 29- Verify that It's safe to enable NGROUPS_MAX under NeXTStep for
30 groupaccess features. 30 groupaccess features. (mouring@eviladmin.org)
31
32- Clean up bsd-snprintf.c and sort out how to detect between VARARGS
33 and STDARGS for better portablity (mouring@eviladmin.org)
31 34
32Documentation: 35Documentation:
33- More and better 36- More and better
@@ -62,4 +65,4 @@ Packaging:
62- HP/UX: Provide DEPOT package scripts. 65- HP/UX: Provide DEPOT package scripts.
63 (gilbert.r.loomis@saic.com) 66 (gilbert.r.loomis@saic.com)
64 67
65$Id: TODO,v 1.33 2001/02/09 01:55:36 djm Exp $ 68$Id: TODO,v 1.34 2001/02/12 15:57:18 mouring Exp $
diff --git a/openbsd-compat/bsd-nextstep.h b/openbsd-compat/bsd-nextstep.h
index d7f44bfc0..120a66058 100644
--- a/openbsd-compat/bsd-nextstep.h
+++ b/openbsd-compat/bsd-nextstep.h
@@ -21,7 +21,7 @@
21 * 21 *
22 */ 22 */
23 23
24/* $Id: bsd-nextstep.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */ 24/* $Id: bsd-nextstep.h,v 1.3 2001/02/12 15:57:18 mouring Exp $ */
25 25
26#ifndef _NEXT_POSIX_H 26#ifndef _NEXT_POSIX_H
27#define _NEXT_POSIX_H 27#define _NEXT_POSIX_H
@@ -29,6 +29,12 @@
29#ifdef HAVE_NEXT 29#ifdef HAVE_NEXT
30#include <sys/dir.h> 30#include <sys/dir.h>
31 31
32/*
33 * Temporary hack to let bsd-snprintf.c work. bsd-snprintf.c really
34 * needs to be cleaned up.
35 */
36#define HAVE_STDARG_H 1
37
32/* NeXT's readdir() is BSD (struct direct) not POSIX (struct dirent) */ 38/* NeXT's readdir() is BSD (struct direct) not POSIX (struct dirent) */
33#define dirent direct 39#define dirent direct
34 40