mirror of git://anongit.mindrot.org/openssh.git
- (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:
parent
6bad177e2f
commit
2ed9818ed9
|
@ -8,6 +8,9 @@
|
||||||
- (djm) Don't need X11-askpass in RPM spec file if building without it
|
- (djm) Don't need X11-askpass in RPM spec file if building without it
|
||||||
from Pekka Savola <pekkas@netcore.fi>
|
from Pekka Savola <pekkas@netcore.fi>
|
||||||
- (djm) Release 2.3.0p1
|
- (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
|
20001105
|
||||||
- (bal) Sync with OpenBSD:
|
- (bal) Sync with OpenBSD:
|
||||||
|
|
|
@ -247,7 +247,7 @@ AC_ARG_WITH(cflags,
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
AC_ARG_WITH(ldflags,
|
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
|
if test "x$withval" != "xno" ; then
|
||||||
LDFLAGS="$LDFLAGS $withval"
|
LDFLAGS="$LDFLAGS $withval"
|
||||||
|
|
|
@ -37,6 +37,9 @@
|
||||||
pid_t posix_wait(int *status);
|
pid_t posix_wait(int *status);
|
||||||
#define wait(a) posix_wait(a)
|
#define wait(a) posix_wait(a)
|
||||||
|
|
||||||
|
/* #ifdef POSIX wrapped functions that need defining */
|
||||||
|
pid_t getppid(void);
|
||||||
|
|
||||||
/* TERMCAP */
|
/* TERMCAP */
|
||||||
int tcgetattr(int fd, struct termios *t);
|
int tcgetattr(int fd, struct termios *t);
|
||||||
int tcsetattr(int fd, int opt, const struct termios *t);
|
int tcsetattr(int fd, int opt, const struct termios *t);
|
||||||
|
|
Loading…
Reference in New Issue