Mac 应用程序商店 - 尝试让加密发挥作用。 。 。我缺少什么?
我正在尝试使用从这个问题链接的 Alan Quartermain 的解决方案,Mac App Store 收据验证代码? 我在链接时不断遇到一堆未知的符号错误。以下是一些未知符号:_BIO_new
、_BIO_ctrl_
、_EVP_sha1
、_X509_STORE_free
。谁能告诉我需要做什么才能消除这些错误?
我所做的事情:
- 安装 OS X 10.6.7 组合更新
- 安装 Xcode 3.2.5
- 安装 Xcode Developer Tools 1.1
- 链接框架:
- 安全;
- 安全基金会;
- 安全接口;
- IOKit;
- 核心服务。
谢谢。
I am trying to use Alan Quartermain's solution as linked from this question, Mac App Store Receipt Validation Code? I keep running into a bunch of unknown symbol errors at link time. Here are some of the unknown symbols: _BIO_new
, _BIO_ctrl_
, _EVP_sha1
, _X509_STORE_free
. Can anyone clue me in to what I need to do to get rid of these errors?
Things I have done:
- Install OS X 10.6.7 combo update
- Install Xcode 3.2.5
- Install Xcode Developer Tools 1.1
- Link frameworks:
- Security;
- SecurityFoundation;
- SecurityInterface;
- IOKit;
- CoreServices.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您列出的所有符号均由 libcrypto 导出,libcrypto 是 OpenSSL 的一部分。您是否也尝试过链接 libcrypto ?您可以通过编辑项目设置、“构建”选项卡、“其他链接器标志”并指定
-lcrypto
来完成此操作。All the symbols you’ve listed are exported by libcrypto, which is part of OpenSSL. Have you tried linking libcrypto as well? You can do that by editing your project settings, Build tab, Other Linker Flags, and specifying
-lcrypto
.