Snapshot-20001016

Corinna Vinschen vinschen at cygnus.com
Tue Oct 17 22:25:41 EST 2000


OpenSSH configured has been configured with the following options.
                 User binaries: /usr/bin
                 User binaries: /usr/bin
               System binaries: /usr/sbin
           Configuration files: /etc
               Askpass program: /usr/sbin/ssh-askpass
                  Manual pages: /usr/man/manX
                      PID file: /var/run
      Random number collection: Device (/dev/urandom)
                Manpage format: man
                   PAM support: no
            KerberosIV support: no
                   AFS support: no
                 S/KEY support: no
          TCP Wrappers support: no
          MD5 password support: no
   IP address in $DISPLAY hack: no
      Use IPv4 by default hack: no
       Translate v4 in v6 hack: no

             Host: i686-pc-cygwin
         Compiler: gcc
   Compiler flags: -g -O2 -Wall -I. -I. -I/usr/include
     Linker flags:  -L/usr/lib -L/usr
        Libraries: -lz  -lregex /usr/lib/textmode.o -lcrypto 

Looks good but I had to change configure.in since Cygwin has a V8
regex so we have to provide POSIX regex as a separate library
which we will do as soon as we release the new OpenSSH-2.3.0:

Index: configure
===================================================================
RCS file: /src/cvsroot/openssh-20001016/configure,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 configure
--- configure   2000/10/16 16:16:21     1.1.1.1
+++ configure   2000/10/17 10:33:46
@@ -1352,7 +1352,7 @@ EOF
        mansubdir=cat
        ;;
 *-*-cygwin*)
-       LIBS="$LIBS /usr/lib/textmode.o"
+       LIBS="$LIBS -lregex /usr/lib/textmode.o"
        cat >> confdefs.h <<\EOF
 #define HAVE_CYGWIN 1
 EOF
Index: configure.in
===================================================================
RCS file: /src/cvsroot/openssh-20001016/configure.in,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 configure.in
--- configure.in        2000/10/16 16:16:21     1.1.1.1
+++ configure.in        2000/10/17 10:32:48
@@ -58,7 +58,7 @@ case "$host" in
        mansubdir=cat
        ;;
 *-*-cygwin*)
-       LIBS="$LIBS /usr/lib/textmode.o"
+       LIBS="$LIBS -lregex /usr/lib/textmode.o"
        AC_DEFINE(HAVE_CYGWIN)
        AC_DEFINE(DISABLE_PAM)
        AC_DEFINE(DISABLE_SHADOW)


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                        mailto:cygwin at sources.redhat.com
Red Hat, Inc.
mailto:vinschen at cygnus.com





More information about the openssh-unix-dev mailing list