Bugzilla – Attachment 565 Details for
Bug 806
openssh after 3.6.1p1 can not authenticate via public rsa2 key
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
openssh compile and build options
makeSSH.sh_ (text/plain), 3.62 KB, created by
Peter Kielbasiewicz
on 2004-03-04 20:41:33 AEDT
(
hide
)
Description:
openssh compile and build options
Filename:
MIME Type:
Creator:
Peter Kielbasiewicz
Created:
2004-03-04 20:41:33 AEDT
Size:
3.62 KB
patch
obsolete
>#!/usr/bin/sh ># compile openssh package, manually adapt versions below and ># select package to compile >#set -n >################################################################ ># declare variables ># >LOGfile=make.log >STARTdir=$(pwd) >OPENSSHver=openssh-3.8p1 >TCP_WRAPver=tcp_wrappers_7.6-ipv6.3 >OPENSSLver=openssl-0.9.7c >ZLIBver=zlib-1.2.1 >PRNGDver=prngd-0.9.27 > >DirList="zlib/$ZLIBver" >DirList="prngd/$PRNGDver tcp_wrappers/$TCP_WRAPver zlib/$ZLIBver openssl/$OPENSSLver openssh/$OPENSSHver" >DirList="openssl/$OPENSSLver openssh/$OPENSSHver" >DirList=" tcp_wrappers/$TCP_WRAPver openssl/$OPENSSLver openssh/$OPENSSHver" >DirList="prngd/$PRNGDver openssh/$OPENSSHver" >################################################################ ># MAIN body ># >print "ATTENTION: adapt DirList within script, to compile all or only parts of ssh" >print "\ncompiling $DirList\n" >sleep 5 >[[ -f $LOGfile ]] && cp $LOGfile $LOGfile.bak >for dir in $DirList >do > cd $dir > print > pwd > print ============================================================= > print " .. $(date) .." > case $dir in > *prngd*) > grep "^[^#]*CFLAGS=" Makefile \ > | grep -- "-Ae" \ > | grep -- "+w1" \ > | grep -- "+O4" \ > | grep -- "+Oall" \ > | grep -- "+DAportable" \ > | grep -- "+ESlit" \ > | grep -q -- "-DHPUX10" \ > || { print makefile flags not OK > cd $STARTdir > continue > } > grep -q "RANDSAVENAME.*/var/opt/prngd/prngd-seed" config.h \ > && grep -q "CONFIGFILE.*/etc/opt/prngd/prngd.conf" config.h \ > || { print config.h not OK > cd $STARTdir > continue > } > make clean ; make > [[ -f installPRNGD.phil ]] \ > && ./installPRNGD.phil \ > || print "read contrib/HPUX/README to install prngd correctly" > ;; > *tcp*) # REAL_DAEMON_DIR needed for completeness > make clean > make REAL_DAEMON_DIR=/dev/null hpux > ;; > *zlib*) [[ -f Makefile ]] || make distclean > CFLAGS='-Ae -O +ESlit' ./configure > [[ -f Makefile ]] || continue > make > ;; > *openssl*) > ./Configure hpux-parisc-cc > make clean ; make > make test > ;; > *openssh-*) > [[ -f Makefile ]] && make distclean > for file in ssh_config moduli sshd_config > do > [[ -f /etc/opt/openssh/$file ]] || continue > mv /etc/opt/openssh/$file /etc/opt/openssh/$file.prev > done > VER=$OPENSSHver > SRC=$STARTdir > > #CFLAGS="-g +ESlit +Optrs_strongly_typed -I$SRC/tcp_wrappers/$TCP_WRAPver" \ > #CFLAGS="-O +ESlit +Optrs_strongly_typed -I$SRC/tcp_wrappers/$TCP_WRAPver" \ > CFLAGS="+O3 +ESlit +Optrs_strongly_typed -I$SRC/tcp_wrappers/$TCP_WRAPver" \ > LDFLAGS="-L$SRC/tcp_wrappers/$TCP_WRAPver" \ > ./configure --prefix=/opt/$VER \ > --sysconfdir=/etc/opt/openssh \ > --with-default-path="/usr/bin:/usr/sbin:/opt/$VER/bin" \ > --with-ssl-dir=$SRC/openssl/$OPENSSLver \ > --with-zlib=$SRC/zlib/$ZLIBver \ > --with-prngd-socket=/var/run/egd-pool \ > --with-tcp-wrappers \ > --without-shadow \ > --disable-suid-ssh > [[ -f Makefile ]] || continue > make > [[ -f /sbin/init.d/sshd ]] && /sbin/init.d/sshd stop > make install > rm -f /opt/openssh > ln -s /opt/$VER /opt/openssh > ;; > esac > cd $STARTdir >done 2>&1 | tee $STARTdir/$LOGfile
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 806
:
559
|
561
|
562
|
563
|
564
| 565