search for: no_dev_ptmx

Displaying 14 results from an estimated 14 matches for "no_dev_ptmx".

2000 Nov 09
2
SCO Openserver Patch
...5 21:25:18 2000 +++ /configure Thu Nov 9 14:18:21 2000 @@ -1685,7 +1685,7 @@ LDFLAGS="$LDFLAGS -L/usr/local/lib" MANTYPE='$(CATMAN)' mansubdir=cat - LIBS="$LIBS -lgen -lsocket -los -lprot -lx" + LIBS="$LIBS -lgen -lsocket -los -lprot -lx -ltinfo -lm" no_dev_ptmx=1 RANLIB=true cat >> confdefs.h <<\EOF @@ -1703,11 +1703,12 @@ LDFLAGS="$LDFLAGS -L/usr/local/lib" MANTYPE='$(CATMAN)' mansubdir=cat - LIBS="$LIBS -lgen -lsocket -lprot -lx" + LIBS="$LIBS -lgen -lsocket -lprot -lx -ltinfo -lm" no_dev_ptm...
2001 Jan 31
1
PTY
environment 1)compiler: cc -v Reading specs from /usr/lib/gcc-lib/i386-slackware-linux/2.95.2/specs gcc version 2.95.2 19991024 (release) 2)openssh: CVS from 31 jan 2001 3)libc: GNU libc 2.2.1 output form make pty.o is: #make pty.o gcc -g -O2 -Wall -I/usr/local/ssl/include -I. -I. -DETCDIR=\"/etc\" -D_PATH_SSH_PROGRAM=\"/usr/bin/ssh\"
2002 Jun 24
1
remove --with-rsh
...000 1.68 +++ configure.ac 24 Jun 2002 00:50:32 -0000 @@ -247,7 +247,6 @@ CPPFLAGS="$CPPFLAGS -Dftruncate=chsize -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" LIBS="$LIBS -los -lprot -lx -ltinfo -lm" - rsh_path="/usr/bin/rcmd" RANLIB=true no_dev_ptmx=1 AC_DEFINE(BROKEN_SYS_TERMIO_H) @@ -264,7 +263,6 @@ LDFLAGS="$LDFLAGS -L/usr/local/lib" LIBS="$LIBS -lprot -lx -ltinfo -lm" no_dev_ptmx=1 - rsh_path="/usr/bin/rcmd" AC_DEFINE(USE_PIPES) AC_DEFINE(HAVE_SECUREWARE) AC_DEFINE(DISABLE_SHADOW) @@ -1790,17 +17...
2003 Oct 14
1
[Bug 743] configure stanza for sco3.2v5
...OS/Version: other Status: NEW Severity: minor Priority: P5 Component: Build system AssignedTo: openssh-bugs at mindrot.org ReportedBy: jpr at jpr.com Not really a bug, but the section in 'configure' for sco3.2v5 is not quite right. no_dev_ptmx=1 is wrong, this OS does have /dev/ptmx. -lx and -ltinfo are NOT needed, IFF the release is at least 3.2v5.0.7 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2002 Jun 26
0
IRIX 6.5 patch for Compression with UsePrivilegeSeparation
...-- ./configure.ac Tue Jun 25 18:35:16 2002 +++ ../openssh-3.4p1/./configure.ac Wed Jun 26 18:18:32 2002 @@ -154,6 +154,7 @@ AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)]) AC_DEFINE(BROKEN_INET_NTOA) AC_DEFINE(WITH_ABBREV_NO_TTY) + AC_DEFINE(HAVE_MMAP_DEV_ZERO) ;; *-*-linux*) no_dev_ptmx=1 --- ./monitor_mm.c Tue Jun 25 20:29:03 2002 +++ ../openssh-3.4p1/./monitor_mm.c Wed Jun 26 17:54:29 2002 @@ -71,6 +71,9 @@ { void *address; struct mm_master *mm; +#if defined(HAVE_MMAP_DEV_ZERO) + int fd_zero; +#endif if (mmalloc == NULL) mm = xmalloc(sizeof(struct mm_master)); @@ -...
2000 Dec 01
3
two irix patches
...subdir: --- openssh-SNAP-20001129.orig/configure.in Tue Nov 28 21:28:50 2000 +++ openssh-SNAP-20001129/configure.in Thu Nov 30 13:42:55 2000 @@ -119,6 +120,7 @@ no_libsocket=1 no_libnsl=1 AC_DEFINE(BROKEN_INET_NTOA) + mansubdir=man ;; *-*-linux*) no_dev_ptmx=1 -- Mike Stone
2002 Mar 25
0
[Bug 184] New: 3.1p1 openssh fails to build a working sshd on Trusted HP-UX 10.26
...LE_SHADOW) + AC_DEFINE(DISABLE_UTMP) + AC_DEFINE(SPT_TYPE,SPT_PSTAT) + LIBS="$LIBS -lxnet -lsec -lsecpw" + disable_ptmx_check=yes + ;; *-*-hpux10*) if test -z "$GCC"; then CFLAGS="$CFLAGS -Ae" *************** *** 1769,1780 **** fi if test -z "$no_dev_ptmx" ; then ! AC_CHECK_FILE("/dev/ptmx", ! [ ! AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX) ! have_dev_ptmx=1 ! ] ! ) fi AC_CHECK_FILE("/dev/ptc", [ --- 1784,1797 ---- fi if test -z "$no_dev_ptmx" ; then ! if test "x$disable_ptmx_check" !=...
2000 Jun 12
1
Openssh on SCO Openserver Release 5
...s this. I think the correct approach is to fix configure.in to include > a line for SCO similar to the line for linux --but installing autoconf on > this box doesn't seem like fun at the moment, especially since I am > changing jobs within the month: > > *-*-sco3*) > no_dev_ptmx=1 > ;; > > 2. MAXPATHLEN > > include.h > My SCO header files do not define the MAXPATHLEN macro, which is required > by openssh. To rectify this, I added the following lines before the final > endif: > #ifndef MAXPATHLEN > #define MAXPATHLEN 64 >...
2000 Mar 07
2
patch for openssh-1.2.2p1
...etaddrinfo is broken (if present) */ #undef BROKEN_GETADDRINFO diff -ru openssh-1.2.2p1/configure.in openssh-1.2.2p1-20000308/configure.in --- openssh-1.2.2p1/configure.in Sun Mar 5 15:02:46 2000 +++ openssh-1.2.2p1-20000308/configure.in Wed Mar 8 00:26:15 2000 @@ -56,6 +56,8 @@ *-*-linux*) no_dev_ptmx=1 need_pty_removed_on_close=1 + CFLAGS="$CFLAGS -DDONT_TRY_OTHER_AF" + inet6_default_4in6=yes ;; *-*-netbsd*) need_dash_r=1 @@ -778,6 +780,26 @@ [ if test "x$withval" != "xno" ; then AC_DEFINE(IPV4_DEFAULT) + fi + ] +) + +AC_MSG_CHECKING([whether we a...
2001 Feb 07
2
Patch for unformatted manpages
...LDFLAGS="$LDFLAGS" PATH="$PATH:/usr/etc" - MANTYPE='$(CATMAN)' AC_DEFINE(WITH_IRIX_ARRAY) AC_DEFINE(WITH_IRIX_PROJECT) AC_DEFINE(WITH_IRIX_AUDIT) @@ -116,7 +106,6 @@ no_libsocket=1 no_libnsl=1 AC_DEFINE(BROKEN_INET_NTOA) - mansubdir=man ;; *-*-linux*) no_dev_ptmx=1 @@ -171,46 +160,34 @@ conf_wtmp_location=/var/adm/wtmp conf_lastlog_location=/var/adm/lastlog AC_DEFINE(USE_PIPES) - MANTYPE='$(CATMAN)' - mansubdir=cat ;; *-sni-sysv*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib -L/usr/ucblib&q...
2002 Jun 29
0
[Bug 321] New: configure does not work when cross compiling
...r, [ - AC_TRY_RUN( + AC_TRY_COMPILE( [ #include <sys/types.h> #include <sys/socket.h> #include <sys/uio.h> + ], + [ int main() { #ifdef msg_control +#error "msg_control is a macro" exit(1); #endif struct msghdr m; @@ -1860,20 +1874,17 @@ if test -z "$no_dev_ptmx" ; then if test "x$disable_ptmx_check" != "xyes" ; then - AC_CHECK_FILE("/dev/ptmx", - [ - AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX) - have_dev_ptmx=1 - ] - ) + if test -f "/dev/ptc" ; then + AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX) + have_dev_ptmx=...
2001 Jan 23
11
cc & no 64bit int patches
Here are a couple of patches against the CVS (Jan 22 18:41 PST) Some C++ comments found their way into ssh.h The no64.patch puts ifdefs around buffer_get_int64() now in bufaux.[c,h] -- Tim Rice Multitalents (707) 887-1469 tim at multitalents.net -------------- next part -------------- --- ssh.h.old Mon Jan 22 18:40:58 2001 +++ ssh.h Mon Jan 22 19:02:02 2001 @@ -25,8 +25,10 @@ # include
2000 Dec 18
2
cross compiling configure errors
Hi all! I want to cross compile openssh to our own CPU and our embedded Linux platform, however I get at least the following errors when running configure: checking whether snprintf correctly terminates long strings... configure: error: can not run test program while cross compiling checking whether getpgrp takes no argument... configure: error: cannot check getpgrp if cross compiling checking
2001 Feb 13
1
configure.in reorder patch
...:05 2001 +++ openssh_cvs/configure.in Mon Feb 12 17:47:55 2001 @@ -223,7 +223,7 @@ LDFLAGS="$LDFLAGS -L/usr/local/lib" MANTYPE='$(CATMAN)' mansubdir=cat - LIBS="$LIBS -lgen -lsocket -los -lprot -lx -ltinfo -lm" + LIBS="$LIBS -los -lprot -lx -ltinfo -lm" no_dev_ptmx=1 RANLIB=true AC_DEFINE(BROKEN_SYS_TERMIO_H) @@ -295,93 +295,41 @@ ] ) +# Checks for header files. +AC_CHECK_HEADERS(bstring.h endian.h floatingpoint.h getopt.h lastlog.h limits.h login.h login_cap.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h regex.h shadow.h se...