1

我正在尝试在 Cygwin 中构建 dropbear。我已经下载了 tar 并解压缩了它,但我不确定下一步该怎么做,所以希望能得到一些帮助。

或者,有什么方法可以将现有的 OpenSSH 密钥转换为 dropbear 格式?

谢谢

编辑:这里有一些附加信息:

 $ cd dropbear-2013.58
 $ ./configure
    make
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.exe
    checking for suffix of executables... .exe
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking whether make sets $(MAKE)... yes
    configure: No $CFLAGS set... using "-Os -W -Wall" for GCC
    checking for special C compiler options needed for large files... no
    checking for _FILE_OFFSET_BITS value needed for large files... no
    checking build system type... i686-pc-cygwin
    checking host system type... i686-pc-cygwin
    checking for ar... ar
    checking for ranlib... ranlib
    checking for strip... strip
    checking for install... install
    checking how to run the C preprocessor... gcc -E
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking whether __UCLIBC__ is declared... no
    checking for crypt in -lcrypt... yes
    checking for deflate in -lz... no
    configure: error: *** zlib missing - install first or check config.log ***

mingw64-i686-zlib.lst mingw-zlib-devel.lst mingw-zlib1.lst zlib0.lst 都安装了所以我不知道问题出在哪里?

4

1 回答 1

0

你还没有安装zlib-devel。打开设置并搜索zlib-devel. mingw-zlib-devel仅用于为 MinGW 编写的代码。

于 2013-07-27T14:44:17.553 回答