2

我正在尝试在 Windows 上构建 OpenLDAP。我这样做非常困难。

我开始按照此处概述的指示进行操作,但很快意识到它已经过时了。

然后我发现了这个,并意识到它也不完全正确。

我终于找到了这个,并体验了这个家伙正在经历的确切错误。然而,当我尝试他的工作时(注释掉portable.h 中的第1116 行),我遇到了更多问题。

是否有构建此库的规范资源?

我在用着:

步骤 0:

编译 rxspencer

./configure
make
make check
make install

步骤1:

使用 Visual Studio 2010 x64 命令提示符编译 OpenSSL

perl Configure no-ssl2 VC-WIN64A --prefix=d:\temp\openssl\x64
./ms/do_win64a.bat

nmake -f ms\nt.mak
nmake -f ms\ntdll.mak
cd out32
..\ms\test

第2步:

修改路径让configure能看到rxspencer

PATH=$PATH:/usr/local/lib

第 3 步:

env \
CFLAGS="-I/usr/local/include/rxspencer" \
LD_LIBRARY_PATH="/c/work/openssl/lib:/usr/local/lib" \
LDFLAGS="-L/c/work/openssl/lib -L/usr/local/lib" \
CPPFLAGS="-I/c/work/openssl/include" \
LIBS="-lssl -lrxspencer" \
./configure \
--enable-shared \
--enable-static \
--with-tls \
--disable-bdb \
--disable-hdb \
2>&1 | tee output_config.log

这行得通。出色的!

第4步:

make depend 2>&1 | tee output_makedepend.log

这行得通。出色的!

第 5 步:

从 include/portable.h 中注释掉第 1116 行

第 6 步:

make 2>&1 | tee output_make.log

观察一堆看起来像这样的错误:

In file included from init.c:25:0:
back-mdb.h:71:2: error: unknown type name 'uint32_t'
  uint32_t mi_dbenv_flags;
  ^
back-mdb.h:84:2: error: unknown type name 'uint32_t'
  uint32_t mi_rtxn_size;
  ^
back-mdb.h:86:2: error: unknown type name 'uint32_t'
  uint32_t mi_txn_cp_min;
  ^
back-mdb.h:87:2: error: unknown type name 'uint32_t'
  uint32_t mi_txn_cp_kbyte;
  ^
init.c: In function 'mdb_db_open':
init.c:88:2: error: unknown type name 'uint32_t'
  uint32_t flags;

添加:

#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif

到顶部

servers/slapd/back-mdb/back-mdb.h

再做...

现在我有一堆看起来像这样的错误:

symdummy.c:1:5: error: expected identifier or '(' before string constant
 int ".refptr.ad_index_mutex"();
     ^
symdummy.c:2:5: error: expected identifier or '(' before string constant
 int ".refptr.ad_undef_mutex"();
     ^
symdummy.c:3:5: error: expected identifier or '(' before string constant
 int ".refptr.at_oc_cache"();
 ^

指出服务器/slapd.def 出了问题?

我在这里做错了什么?我做错了什么并且构建对于Windows根本不起作用?

4

1 回答 1

2

很晚了。

我最近成功了

Windows 7 旗舰版 x64。

Msys2 x86_64 20160205

OpenLDAP 2.4.46 <== 与你不同

我和你一样禁用了 hdb 和 bdb。我启用了共享库,但不确定它们是否已编译。

我注意到这可能不是您想要的完整列表,只是想分享。

多亏了您的帮助,我才能够克服portable.h 和init.c 问题。

然后我的make depend成功make没有问题。我已经用它做了一些简单的测试,slapd 正在为我工​​作,能够 ldapsearch、ldapadd 并从 ldapAdmin 连接到它。

在 make depend 期间,我确实看到了 nt_err.c 问题,并且必须手动将其从 openldap-2.4.46/libraries/liblber/nt_err.c 复制到 /openldap-2.4.46/servers/slapd/slapi 以跳过该警告。但我无法解决 netdb.h 标头丢失问题,但它仍然有效。

于 2018-06-09T06:19:39.630 回答