Displaying 20 results from an estimated 2000 matches similar to: "Is anyone else getting this build error?"
2000 Dec 14
2
Could this autogen.sh script be added?
Could someone add this autogen.sh script to the
toplevel of openssh_cvs?
Many projects include an autogen.sh script
so that folks need not remember what auto
commands need to get run and in what order.
% cat autogen.sh
#!/bin/sh
# Run this program (./autogen.sh) after changing any of
# the files that are used to automatically generate
# other files.
#aclocal
autoheader
autoconf
#automake
2001 Jan 11
1
Patch to improve -p error message.
Hi all.
I got sick of getting a lame error message when I typed
the wrong thing in for a -p argument, so I wrote
up this patch.
Bad:
% ssh -p L4501 localhost
Secure connection to localhost refused.
Good:
./ssh -p L4501 localhost
Bad port specification 'L4501'.
Mo DeJong
Red Hat Inc
Index: ssh.c
===================================================================
RCS file:
2001 May 09
1
OpenSSH 2.9p1 on 4.3BSD based system
Dear developpers,
I successfully compiled OpenSSH 2.9p1 which I get via CVS with a
little modification. Patch is available at
http://www.rc.tutrp.tut.ac.jp/~nakaji/install/NEWS/utils/ref/openssh_cvs-news4.diff.gz
But one problem remains.
In config.h.in, there is a definition about strftime function
/* Define if you have the `strftime' function. */
#undef HAVE_STRFTIME
but this
2012 May 04
3
[GIT PULL] elflink fixes
Peter,
Paulo reported some problems with his config files under ISOLINUX and
PXELINUX - basically TIMEOUT and TOTALTIMEOUT were broken. The patches
I've pushed to the elflink branch fix this and also fix parsing of the
ALLOWOPTIONS config directive.
The following changes since commit d5e02fb16a11bfdbce1e90a39e6cb5f2ad925389:
get_key: Valid key values are positive (2012-04-17 11:25:53
2001 Jul 27
0
openssh-2.9p2 compilation on LynxOS
To whoever can help me,
I tried to compile OpenSSH-2.9p2 on i386-LynxOS. I
made a
# ./configure --without-pam --without-shadow \
--with-ssl-dir=/usr/local/ssl --with-pcre \
--disable-libutil --sysconfdir=/etc/ssh
Then,
# make
gave the following error:
gcc -o ssh ssh.o sshconnect.o sshconnect1.o
sshconnect2.o sshtty.o reonf.o clientloop.o -L.
-Lopenbsd-compat/ -L/usr/local/ssl/lib -lssh
2004 Mar 23
2
A question on Compilation errors...
Hello
I am attempting to build on a LynxOS platform and am using a old
version of zlib and OpenSSL-0.9.6a. I get past the configure stage by
ignoring the zlib version check. However, at make stage I run into the
following undefineds. Any idea what may be causing this. I am using
version 3.8p1 of OpenSSH.
Thank you in advance for your response
Amba
(cd openbsd-compat && make)
2001 Nov 04
2
OPIE patch for current CVS
I redid my previous OPIE patch for the current ssh tree. It seems
to work fine here, and I'ld love to see it merged before the 3.0
release.
Wichert.
diff -x CVS -wNur ../cvs/other/openssh_cvs/Makefile.in openssh_cvs/Makefile.in
--- ../cvs/other/openssh_cvs/Makefile.in Mon Oct 22 02:53:59 2001
+++ openssh_cvs/Makefile.in Sun Nov 4 01:18:19 2001
@@ -50,7 +50,7 @@
SSHOBJS= ssh.o
2000 Dec 02
2
Is fixpaths the only perl dependency?
Hello.
I just tried to download and build the 2.3.0.p1
(portable) release with Cygwin on an NT box.
It fails to build because of the use of a perl
script. Cygwin does not have Perl installed
by default and to be honest it seems like
a bit of a stretch to require perl to be
able to build shh, that just makes it harder
to build.
I poked around and it seems like these files
depend on perl:
2003 Sep 12
2
Possible new configure option: --with-fatal-coredumps?
Hi all.
What's the feeling about adding a new configure-time option to generate a
core dump on when fatal() is called?
It might help debug certain types of problems, but runs the risk of
sensitive information being left in the core dump. Obviously, it should
default to "no".
Anyone like the idea? Anyone hate it?
--
Darren Tucker (dtucker at zip.com.au)
GPG key 8FF4FA69 /
2020 Oct 06
2
[Bug 1475] New: Array of addresses wrongly processed
https://bugzilla.netfilter.org/show_bug.cgi?id=1475
Bug ID: 1475
Summary: Array of addresses wrongly processed
Product: nftables
Version: unspecified
Hardware: x86_64
OS: All
Status: NEW
Severity: major
Priority: P5
Component: nft
Assignee: pablo at netfilter.org
2003 Sep 10
3
[PATCH] No extern declarations of optarg & co if getopt.h is available
Hi,
I have a problem with the extern declarations of optarg, optind, etc.
We're currently moving getopt from being a statically linked function
to a dynamically linked function as part of the Cygwin DLL. On Windows,
this requires to generate special symbols (__imp__optarg, etc.), which
is done by marking the exported variables in the corresponding header.
Instead of
extern char *optarg;
2006 May 04
2
xmalloc(foo*bar) -> xcalloc(foo, bar) for Portable
Hi All.
While wandering in auth-pam.c I noticed that there's a few Portable-specific
escapees from the xmalloc(foo * bar) cleanup.
There's also a "probably can't happen" integer overflow in
ssh-rand-helper.c with the memset:
num_cmds = 64;
- entcmd = xmalloc(num_cmds * sizeof(entropy_cmd_t));
+ entcmd = xcalloc(num_cmds, sizeof(entropy_cmd_t));
2005 Feb 24
1
[PATCH] Drop SETGROUPS_NOOP
Hi,
the SETGROUPS_NOOP define is used only for Cygwin. But it's also
combined with the HAVE_SETGROUPS test in bsd-misc.c. So, since
setgroups() exists and is functional in Cygwin, this is actually a
noop in the more general sense. The below patch drops that entirely.
Corinna
Index: acconfig.h
===================================================================
RCS file:
2001 Mar 18
2
char *getusershell();
I experienced a problem compiling openssh_cvs with IRIX 6.5.11f.
% cc -version
MIPSpro Compilers: Version 7.3.1.2m
% cc -n32 -mips3 -O2 -OPT:Olimit=0 ..... -c auth.c
cc-1515 cc: ERROR File = auth.c, Line = 100
A value of type "int" cannot be assigned to an entity of type "char *".
while ((cp = getusershell()) != NULL)
^
1 error detected in the
2002 Mar 21
2
bug in ssh-keyscan.c --
=====
Ladies/Gents,
"ssh-keyscan.c" can't be linked statically against "libssh.a". You end
up with `fatal()' being doubly defined.
The patch below deletes the new "ssh-keyscan.c:fatal()" function and
and restores the "ssh-keyscan.c:fatal_callback()" function with modifi-
cations. The problem that both attempt to alleviate is the setting of
the
2002 Jul 04
1
[PATCH]: Remove HAVE_CYGWIN in favor of NO_IPPORT_RESERVED_CONCEPT
Hi,
I've sent that patch once already but it seems more or less forgotten
in the tumultuous days of the latest vulnerability.
It adds a new define NO_IPPORT_RESERVED_CONCEPT which can be defined
on platforms not supporting the concept of "privileged" ports only
accessible by privileged users but which allow everyone to use these
ports.
This patch removes some Cygwin dependencies
2001 Apr 02
1
[PATCH]: scp could hang in Cygwin
Hi,
attached is a patch which solves the following problem:
Sometimes scp could hang in Cygwin when used as remote end using
the -t option. This is due to a binmode/textmode problem which
could be raised by the login shell which is used by the user and
it's setting of textmode on stdin. The patch solves that problem
by explicitly setting binmode on stdin.
Besides solving the hanging
2009 Apr 01
2
[LLVMdev] adding header files to code
Hi,
I was wondering how to add header files to code in LLVM. I am trying to
create a small profiler to track the actual time spent in functions.
For this i am adding call to clock() in the C code of the given program.
However this will require adding the file time.h to C code. Can some tell
me a way to do so.
I have tried using Module.addLibrary("time.h"); but this doesn't seem
2001 Jun 04
1
[PATCH]: Add check_ntsec to ownership/mode tests
Hi,
I have added calls to `check_ntsec()' to the code which checks
for the ownership and modes of identity files and directories.
As you might know, check_ntsec() tests if owner/modes are
supported by the OS (9x/ME=no, NT/W2K=yes), the filesystem
(FAT/FAT32=no, NTFS=yes) and the current Cygwin settings
(ntea/ntsec).
Corinna
Index: auth-rhosts.c
2001 Nov 20
1
[PATCH]: Allow SSHD to install as service under WIndows 9x/Me
Hi,
the following patch is a (hopefully least intrusive) extension
when sshd is started so that it daemonizes itself. In that case
Windows 9x/Me has a slight problem with sshd as soon as the current
user logs off. The sshd daemon will be killed as well. Since
installing services is very different between NT and 9x, the way
used for NT boxes isn't working well for 9x. For that reason