summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-11-06 07:15:43 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-11-06 07:15:43 +0000
commit2ed9818ed96364ac37ca5a6432a075e83e6d9c56 (patch)
treedfe535aa1fefb08b1659921451d3ea7316a742ea
parent6bad177e2fef129e0f8981d54bdb38fa36d88879 (diff)
- (bal) typo in configure.in in regards to --with-ldflags from Marko
Asplund <aspa@kronodoc.fi> - (bal) fixed next-posix.h. Forgot prototype of getppid().
-rw-r--r--ChangeLog3
-rw-r--r--configure.in2
-rw-r--r--next-posix.h3
3 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7333c81a3..bffef21b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,9 @@
8 - (djm) Don't need X11-askpass in RPM spec file if building without it 8 - (djm) Don't need X11-askpass in RPM spec file if building without it
9 from Pekka Savola <pekkas@netcore.fi> 9 from Pekka Savola <pekkas@netcore.fi>
10 - (djm) Release 2.3.0p1 10 - (djm) Release 2.3.0p1
11 - (bal) typo in configure.in in regards to --with-ldflags from Marko
12 Asplund <aspa@kronodoc.fi>
13 - (bal) fixed next-posix.h. Forgot prototype of getppid().
11 14
1220001105 1520001105
13 - (bal) Sync with OpenBSD: 16 - (bal) Sync with OpenBSD:
diff --git a/configure.in b/configure.in
index 888cd91ce..0c43efcb8 100644
--- a/configure.in
+++ b/configure.in
@@ -247,7 +247,7 @@ AC_ARG_WITH(cflags,
247 ] 247 ]
248) 248)
249AC_ARG_WITH(ldflags, 249AC_ARG_WITH(ldflags,
250 [ --with-ldlags Specify additional flags to pass to linker], 250 [ --with-ldflags Specify additional flags to pass to linker],
251 [ 251 [
252 if test "x$withval" != "xno" ; then 252 if test "x$withval" != "xno" ; then
253 LDFLAGS="$LDFLAGS $withval" 253 LDFLAGS="$LDFLAGS $withval"
diff --git a/next-posix.h b/next-posix.h
index b987b09c2..7986817e7 100644
--- a/next-posix.h
+++ b/next-posix.h
@@ -37,6 +37,9 @@
37pid_t posix_wait(int *status); 37pid_t posix_wait(int *status);
38#define wait(a) posix_wait(a) 38#define wait(a) posix_wait(a)
39 39
40/* #ifdef POSIX wrapped functions that need defining */
41pid_t getppid(void);
42
40/* TERMCAP */ 43/* TERMCAP */
41int tcgetattr(int fd, struct termios *t); 44int tcgetattr(int fd, struct termios *t);
42int tcsetattr(int fd, int opt, const struct termios *t); 45int tcsetattr(int fd, int opt, const struct termios *t);