我正在尝试在 Windows 上构建 OpenLDAP。我这样做非常困难。
我开始按照此处概述的指示进行操作,但很快意识到它已经过时了。
然后我发现了这个,并意识到它也不完全正确。
我终于找到了这个,并体验了这个家伙正在经历的确切错误。然而,当我尝试他的工作时(注释掉portable.h 中的第1116 行),我遇到了更多问题。
是否有构建此库的规范资源?
我在用着:
- 视窗 7 专业版。
- Msys2 (x86_64 20160205 从这里)
- OpenSSL(来自此处的 1.0.1r 版本)
- rxspencer(来自这里的 alpha 3.8.g7 )
- OpenLDAP(来自此处的 2.4.44 版)
步骤 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根本不起作用?