search for: exeext

Displaying 20 results from an estimated 148 matches for "exeext".

2013 Apr 25
1
openssh cross compilation issue
...have the compilation to proceeds without problems I have to edit Makefile and modify in this way: 1) near check-config: from: -$(DESTDIR)$(sbindir)/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config to: /usr/sbin/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config 2) near host-key: ssh-keygen$(EXEEXT) from: ./ssh-keygen -t rsa1 -f $(sysconfdir)/ssh_host_key -N "" ; \ to: /usr/bin/ssh-keygen -t rsa1 -f $(sysconfdir)/ssh_host_key -N "" ; \ from: ./ssh-keygen -t dsa -f $(sysconfdir)/ssh_host_dsa_key -N "" ; \ to: /usr/bin/ssh-keygen -t dsa -f $(sy...
2010 Mar 09
2
[PATCH/cygwin]: Fix Makefiles
Hi, below is a patch which only affects Cygwin. It adds the $(EXEEXT) suffix in calls to install, and it fixes the list of documentation files to install into /usr/share/doc/openssh in a Cygwin installation. Thanks, Corinna Index: Makefile.in =================================================================== RCS file: /cvs/openssh/Makefile.in,v retrieving revis...
2003 Jan 16
1
Possible patch for Irix Makefile problem
...new/rsync/Makefile.in --- old/rsync/Makefile.in Thu Jan 16 16:06:00 2003 +++ new/rsync/Makefile.in Thu Jan 16 16:14:29 2003 @@ -43,8 +43,13 @@ OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON TLS_OBJ = tls.o syscall.o lib/permstring.o # Programs we must have to run the test cases -CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) \ - trimslash$(EXEEXT) t_unsafe$(EXEEXT) +RSYNC_EXE=rsync$(EXEEXT) +TLS_EXE=tls$(EXEEXT) +GETGROUPS_EXE=getgroups$(EXEEXT) +TRIMSLASH_EXE=trimslash$(EXEEXT) +T_UNSAFE_EXE=t_unsafe$(EXEEXT) +CHECK_PROGS=$(RSYNC_EXE) $(TLS_EXE) $(GETGROUPS_EXE) \ + $(TRIMSLASH_E...
2002 Apr 01
0
[Bug 198] New: Error getting file with sftp on old F-Secure servers
...l-sh -c PERL=/home/gmccone/local/bin/perl ENT= XAUTH_PATH=/usr/openwin/bin/xauth LDFLAGS=-L. -Lopenbsd-compat/ -R/home/gmccone/installs/openssl-0.9.6c - L/home/gmccone/installs/openssl-0.9.6c -L/home/gmccone/installs/zlib-1.1.4 - R/home/gmccone/installs/zlib-1.1.4 -L/usr/local/lib -R/usr/local/lib EXEEXT= SSH_MODE= 0711 INSTALL_SSH_PRNG_CMDS= INSTALL_SSH_RAND_HELPER=yes SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT) TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh- keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) ssh-rand-helper${EXEEXT} $(SFTP_PROGS) LIBSSH_OBJS=atom...
2002 Mar 26
0
[Bug 187] New: ssh-keygen not converting from and to SECSH standard correctly
...l-sh -c PERL=/home/gmccone/local/bin/perl ENT= XAUTH_PATH=/usr/openwin/bin/xauth LDFLAGS=-L. -Lopenbsd-compat/ -R/home/gmccone/installs/openssl-0.9.6c - L/home/gmccone/installs/openssl-0.9.6c -L/home/gmccone/installs/zlib-1.1.4 - R/home/gmccone/installs/zlib-1.1.4 -L/usr/local/lib -R/usr/local/lib EXEEXT= SSH_MODE= 0711 INSTALL_SSH_PRNG_CMDS= INSTALL_SSH_RAND_HELPER=yes SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT) TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh- keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) ssh-rand-helper${EXEEXT} $(SFTP_PROGS) LIBSSH_OBJS=atom...
2007 Sep 19
0
[LLVMdev] 2.1 Pre-Release Available (testers needed)
...yway, someone, I don't remember who, helped me out with this patch: --- ../llvm-gcc4-2.0.source/gcc/Makefile.in.old 2007-08-08 21:09:17.000000000 -0700 +++ ../llvm-gcc4-2.0.source/gcc/Makefile.in 2007-08-08 21:09:39.000000000 -0700 @@ -3658,7 +3658,7 @@ -$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext) -rm -f $(DESTDIR)$(bindir)/$(GCC_TARGET_INSTALL_NAME)-$(version) -( cd $(DESTDIR)$(bindir) && \ - $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version) ) + $(LN) $(GCC_INSTALL_NAME)$(exe...
2001 Oct 07
3
Using -lssh as shared library
...ot hardcode libssh and libopenbsd-compat into link lines and dependances, but use make variables instead. Can be used to build with shared -lssh. --- openssh-2.9.9p2.orig/Makefile.in.orig Sun Oct 7 23:45:01 2001 +++ openssh-2.9.9p2/Makefile.in Sun Oct 7 23:48:31 2001 @@ -95,32 +96,35 @@ -ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS) - $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) +SSH_LIBS = $(LIBCOMPAT) libssh.a +SSH_LDFLAGS = -lssh -lopenbsd-compat -sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS) - $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) +ssh$...
2003 Nov 15
2
[patch] 3.7.1p2: slogin symlink fixes
Hello, There are three small problems with the "slogin" and "slogin.1" symlinks created upon installation: 1. "./" is included in the target path unnecessarily. 2. Symlinks are assumed to be available, while only hardlinks could. 3. EXEEXT is not respected for slogin. Here is a fix for both problems -- the "./" is simply removed, EXEEXT is added, the availability of symlinks is tested and the installation command is rewritten to work even with hardlinks. It works for me. Please apply. Maciej -- + Maciej W. Rozycki,...
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
...w they won't get wrapped. ### START OF PATCH ### diff -urp oldrsync/Makefile.in newrsync/Makefile.in --- oldrsync/Makefile.in Sun Nov 17 05:00:41 2002 +++ newrsync/Makefile.in Wed Nov 20 07:18:37 2002 @@ -9,6 +9,8 @@ mandir=@mandir@ LIBS=@LIBS@ CC=@CC@ CFLAGS=@CFLAGS@ +CPPFLAGS=@CPPFLAGS@ +EXEEXT=@EXEEXT@ LDFLAGS=@LDFLAGS@ INSTALLCMD=@INSTALL@ @@ -41,21 +43,21 @@ OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON TLS_OBJ = tls.o syscall.o lib/permstring.o # Programs we must have to run the test cases -CHECK_PROGS = rsync tls getgroups trimslash t_unsafe +CHECK_PROGS = rsync$(EXEEXT) tls$(EXE...
2000 Dec 07
2
sunos 4.1.4 Makefile and regex.[ch] fix
...n, etc.. X-PMC-CI-e-mail-id: 14242 =================================================================== RCS file: RCS/Makefile,v retrieving revision 1.1 diff -cibw -r1.1 Makefile *** Makefile 2000/12/06 12:46:01 1.1 --- Makefile 2000/12/06 12:52:26 *************** *** 35,41 **** TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) $(EXTRA_TARGETS) ! LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o cli.o compat.o compress.o crc32.o cygwin_util.o deattack.o dispatch.o dsa.o hmac...
2016 Jan 19
2
OpenSSH portability & buildsystem fixes
...2641..a020463 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,7 +19,6 @@ piddir=@piddir@ srcdir=@srcdir@ top_srcdir=@top_srcdir@ -DESTDIR= VPATH=@srcdir@ SSH_PROGRAM=@bindir@/ssh ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass @@ -163,41 +162,41 @@ libssh.a: $(LIBSSH_OBJS) $(RANLIB) $@ ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS) - $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS) + $(CC) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS) sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS) - $(LD) -o $@ $(SSHDOBJS) $(LDFLAG...
2009 May 13
1
dovecot 2.0 (revision 9271:d467712aee77) compile problems on AIX 5.3
...conv to the Makefiles (./src/lib-imap/Makefile;./src/lib-index/Makefile;./src/lib-mail/ Makefile) below: $ find . -name Makefile -exec egrep -p libcharset.a {} \; -print clean-noinstPROGRAMS: @list='$(noinst_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done test-imap$(EXEEXT): $(test_imap_OBJECTS) $(test_imap_DEPENDENCIES) @rm -f test-imap$(EXEEXT) $(LINK) $(test_imap_LDFLAGS) $(test_imap_OBJECTS) $ (test_imap_LDADD) $(LIBS) \...
2004 Feb 11
0
Makefile.in: progressmeter.o has moved to libssh
.... Index: Makefile.in =================================================================== RCS file: /cvs/openssh/Makefile.in,v retrieving revision 1.255 diff -u -r1.255 Makefile.in --- Makefile.in 10 Feb 2004 02:01:14 -0000 1.255 +++ Makefile.in 11 Feb 2004 17:10:40 -0000 @@ -137,8 +137,8 @@ sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS) $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBWRAP) $(LIBPAM) $(LIBS) -scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o progressmeter.o - $(LD) -o $@ scp.o progressmeter.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) +scp$(EXEEXT): $(LIBCOMPAT) libssh....
2001 Jun 06
0
snk authentication
...ser. hope you find it useful. --larry -------------- next part -------------- diff -NuBw openssh-2.9p1/Makefile.in openssh/Makefile.in --- openssh-2.9p1/Makefile.in Thu Apr 26 20:31:08 2001 +++ openssh/Makefile.in Wed Jun 6 16:15:56 2001 @@ -43,9 +43,9 @@ @NO_SFTP at SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT) -TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) $(SFTP_PROGS) +TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) snk$(EXEEXT) $(...
2020 Jul 21
11
[RFC PATCH 0/4] PAM module for ssh-agent user authentication
Hi, The main (and probably the only) use case of this PAM module is to let sudo authenticate users via their ssh-agent, therefore without having to type any password and without being tempted to use the NOPASSWD sudo option for such convenience. The principle is originally implemented by an existing module [0][1] and many pages that explain how to use it for such purpose can be found online.
2001 Oct 16
6
program-prefix does not work
...(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8 ! @NO_SFTP@$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1 ! @NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8 ! -rm -f $(DESTDIR)$(bindir)/slogin ! ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin ! -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 ! ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 #@FILEPRIV@ -f dev,filesys,driver $(DESTDIR)$(bindir)/ssh $(DESTDIR)$(bindir)/slogin if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ $(srcdir)/mkinsta...
2020 May 13
3
Call for testing: OpenSSH 8.3
On Wed, 13 May 2020 at 02:00, Kevin Brott <kevin.brott at gmail.com> wrote: [...] > Latest snapshot is openssh-SNAP-20200502.tar.gz 02-May-2020 00:30 - is this the 8.3p1 candidate? No, it looks like the snapshot updater stopped updating. Damien's onto it. [...] > Using git-clone: > > *Linux Mint 19.3 / gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 ** > fail tests here:* >
2012 Jan 28
1
PATCH: Support for encrypted host keys
...++++++++++ sshd.c | 141 ++++++++++++++++++++++++++++++++++++++++++++++++----------- 4 files changed, 253 insertions(+), 27 deletions(-) diff --git a/Makefile.in b/Makefile.in index 3be3aa6..3b47d18 100644 --- a/Makefile.in +++ b/Makefile.in @@ -61,7 +61,7 @@ MANFMT=@MANFMT@ TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-pkcs11-helper$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) sftp$(EXEEXT) -LIBSSH_OBJS=acss.o authfd.o authfile.o bufaux.o bufbn.o buffer.o \ +LIBSSH_OBJS=acss.o authfd.o authfile.o b...
2011 Jun 05
1
another missing link in febootstrap; failing tests for libguestfs
...the following patch to helper/init.c, the image-based test worked. I am not certain whether this is the right approach, though. The next thing I'll be looking at are the following failed libguestfs tests: test-getlogin_r.c:42: assertion failed /bin/bash: line 5: 18338 Aborted EXEEXT='' srcdir='.' LOCALE_FR='fr_FR' LOCALE_FR_UTF8='fr_FR.UTF-8' LOCALE_JA='ja_JP.EUC-JP' LOCALE_ZH_CN='zh_CN.GB18030' LOCALE_FR_UTF8='fr_FR.UTF-8' LOCALE_FR='fr_FR' LOCALE_FR_UTF8='fr_FR.UTF-8' LOCALE_JA='ja_JP.EUC-JP' LOC...
2007 Sep 19
4
[LLVMdev] 2.1 Pre-Release Available (testers needed)
...> helped me > out with this patch: > > --- ../llvm-gcc4-2.0.source/gcc/Makefile.in.old 2007-08-08 > 21:09:17.000000000 -0700 > +++ ../llvm-gcc4-2.0.source/gcc/Makefile.in 2007-08-08 > 21:09:39.000000000 -0700 > @@ -3658,7 +3658,7 @@ > -$(INSTALL_PROGRAM) xgcc$(exeext) > $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext) > -rm -f $(DESTDIR)$(bindir)/$(GCC_TARGET_INSTALL_NAME)-$ > (version) > -( cd $(DESTDIR)$(bindir) && \ > - $(LN) $(GCC_INSTALL_NAME)$(exeext) > $(target_noncanonical)-gcc-$(version) ) > +...