acl/lib_acl_cpp
2015-08-15 19:33:26 -07:00
..
app/ndb 整理了一些文件格式 2014-11-19 00:25:21 +08:00
include/acl_cpp fixed one bug in class redis_string for handling INCR/INCRBY/DECR/DECRBY commands 2015-08-15 05:57:12 -07:00
independent/connpool 整理了一些文件格式 2014-11-19 00:25:21 +08:00
lib first commit acl to github 2013-08-18 17:42:25 +08:00
samples fixed some compiling error on vc2008, vc2010 2015-08-15 19:33:26 -07:00
src fixed some compiling error on vc2008, vc2010 2015-08-15 19:33:26 -07:00
changes.txt fixed one bug in class redis_string for handling INCR/INCRBY/DECR/DECRBY commands 2015-08-15 05:57:12 -07:00
Doxyfile first commit acl to github 2013-08-18 17:42:25 +08:00
lib_acl_cpp_vc2003.rc modify some projects and samples 2015-03-08 06:34:00 -07:00
lib_acl_cpp_vc2003.vcproj add mysql cluster manager 2015-08-12 01:48:24 -07:00
lib_acl_cpp_vc2008.rc modify some projects and samples 2015-03-08 06:34:00 -07:00
lib_acl_cpp_vc2008.vcproj fixed some compiling error on vc2008, vc2010 2015-08-15 19:33:26 -07:00
lib_acl_cpp_vc2010.rc modify some projects and samples 2015-03-08 06:34:00 -07:00
lib_acl_cpp_vc2010.vcxproj fixed some compiling error on vc2008, vc2010 2015-08-15 19:33:26 -07:00
lib_acl_cpp_vc2010.vcxproj.filters add mysql cluster manager 2015-08-12 01:48:24 -07:00
lib_acl_cpp_vc2010.vcxproj.user 整理了一些文件格式 2014-11-19 00:25:21 +08:00
lib_acl_cpp_vc2012.rc modify some projects and samples 2015-03-08 06:34:00 -07:00
lib_acl_cpp_vc2012.vcxproj add mysql cluster manager 2015-08-12 01:48:24 -07:00
lib_acl_cpp_vc2012.vcxproj.filters add mysql cluster manager 2015-08-12 01:48:24 -07:00
Makefile modify db module(including mysql, sqlite) for using db more conviniently; add mysql_pool sample 2015-08-02 03:21:24 -07:00
Makefile.db fixed some compile error on MACOSX 2015-06-14 02:47:59 +08:00
ReadMe.txt 整理了一些文件格式 2014-11-19 00:25:21 +08:00
resource_vc2003.h 整理了一些文件格式 2014-11-19 00:25:21 +08:00
resource_vc2008.h 整理了一些文件格式 2014-11-19 00:25:21 +08:00
resource_vc2010.h 整理了一些文件格式 2014-11-19 00:25:21 +08:00
resource_vc2012.h 整理了一些文件格式 2014-11-19 00:25:21 +08:00
todo.txt fixed compiling error in linux32 2015-08-10 15:10:44 +08:00

1) 编译
1.1) WIN32 平台:可以用 vc2003 或 vc2010 打开工程文件进行编译,编译后的 lib_acl.lib 库被拷贝至
lib/ 目录下,如果需要编译 samples/ 下的例子,还需要将 acl_project 的编译后的库
lib_acl_d.dll/lib_acl_d.lib, lib_acl.dll/lib_acl.lib, lib_acl_vc2003d.lib, lib_acl_vc2003.lib,
lib_acl_vc2010d.lib, lib_acl_vc2010.lib 以及 lib_protocol_d.dll/lib_protocol_d.lib,
lib_protocol.dll/lib_protocol.lib, lib_protocol_vc2003d.lib, lib_protocol_vc2003.lib,
lib_protocol_vc2010d.lib, lib_protocol_vc2010.lib 拷贝至 lib/ 目录下,另外,如果需要编译
与压缩、数据库操作的示例,则还需要将 mysql, sqlite3 以及 zlib 的库拷贝至 lib/ 目录下,如果
需要编译 ssl 相关的示例,需要将 polarssl 的库拷贝至 lib/ 目录下.

1.2) Linux 平台:直接运行 make 便可在 lib/ 目录下生成 lib_acl.a 库,如果需要生成动态库,则需要运行
make rpath=xxx, 其中 xxx 代表 mysql, sqlite, polarssl 库所在的路径

2) 依赖关系
2.1) acl: 必须是 acl.2.1.2.8.src.2012.8.1.tgz 以后的版本, https://sourceforge.net/projects/acl/
2.2) zlib: http://zlib.net/
2.3) polarssl: http://polarssl.org/
2.4) libmysqlcient