- (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().
This commit is contained in:
Ben Lindstrom 2000-11-06 07:15:43 +00:00
parent 6bad177e2f
commit 2ed9818ed9
3 changed files with 7 additions and 1 deletions

View File

@ -8,6 +8,9 @@
- (djm) Don't need X11-askpass in RPM spec file if building without it
from Pekka Savola <pekkas@netcore.fi>
- (djm) Release 2.3.0p1
- (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().
20001105
- (bal) Sync with OpenBSD:

View File

@ -247,7 +247,7 @@ AC_ARG_WITH(cflags,
]
)
AC_ARG_WITH(ldflags,
[ --with-ldlags Specify additional flags to pass to linker],
[ --with-ldflags Specify additional flags to pass to linker],
[
if test "x$withval" != "xno" ; then
LDFLAGS="$LDFLAGS $withval"

View File

@ -37,6 +37,9 @@
pid_t posix_wait(int *status);
#define wait(a) posix_wait(a)
/* #ifdef POSIX wrapped functions that need defining */
pid_t getppid(void);
/* TERMCAP */
int tcgetattr(int fd, struct termios *t);
int tcsetattr(int fd, int opt, const struct termios *t);