惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
Vulnerabilities – Threatpost
S
Securelist
The Hacker News
The Hacker News
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
AI
AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Schneier on Security
Schneier on Security
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
Hacker News - Newest:
Hacker News - Newest: "LLM"
H
Hacker News: Front Page
博客园 - 司徒正美
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Security Latest
Security Latest
Engineering at Meta
Engineering at Meta
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
U
Unit 42
V
V2EX
V2EX - 技术
V2EX - 技术
L
LINUX DO - 最新话题
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
Recorded Future
Recorded Future
P
Privacy & Cybersecurity Law Blog
美团技术团队
小众软件
小众软件
F
Fortinet All Blogs

博客园 - 秋忆

跑在Docker下的RHEL7编译Java8源码包 利用pyinotify监控文件内容,像tailf命令但比它更强 AWS SDK for C++调用第三方S3 API Windows 10恢复Shift+右键打开命令提示符窗口 TP-LINK WR841N V8刷OpenWRT OpenWrt自定义和官方一样的固件 Windows 10下通过蓝牙连接iPhone个人热点进行共享上网 Broadcom有线网卡在Windows 8/8.1/10下使用系统自带驱动会断网的解决办法 BCM94352HMB蓝牙BCM20702A0在Ubuntu 14.04下的驱动方法 C语言实现GPT头和分区表的读取(gcc) C/C++用OpenSSL库进行Base64编码 把Windows CA根证书安装到iPhone 编程实现设置“启动与故障恢复”的“在需要时显示恢复选项的时间” 笔记本电脑键盘状态助手KeyboardState Windows x64与x86混合编程需要注意的API 查看.NET程序集编译类型命令corflags 开启Windows7多用户远程桌面 Windows优化大师已经成为“流氓大师” C#打开目录并选中文件(夹)的实现
Build subversion 1.8 with SSL on OS X Yosemite
秋忆 · 2015-06-24 · via 博客园 - 秋忆

mkdir -p /tmp/buildroot && cd /tmp/buildroot

# Need to build the latest libtool and automake first.

wget http://apache.mirrors.ionfish.org/apr/apr-1.5.2.tar.bz2
tar -jxf apr-1.5.2.tar.bz2 && cd apr-1.5.2
./configure
make && make install
cd ..

wget http://apache.mirrors.ionfish.org/apr/apr-util-1.5.4.tar.bz2
tar -jxf apr-util-1.5.4.tar.bz2 && cd apr-util-1.5.4
./configure
make && make install
cd ..

wget http://serf.googlecode.com/svn/src_releases/serf-1.3.8.tar.bz2
tar -jxf serf-1.3.8.tar.bz2 && cd serf-1.3.8

wget http://liquidtelecom.dl.sourceforge.net/project/scons/scons-local/2.3.0/scons-local-2.3.0.tar.gz
mkdir -p scons-2.3.0 && cd scons-2.3.0
tar -zxf ../scons-local-2.3.0.tar.gz
cd .. && ln -s scons-2.3.0/scons.py scons

./scons APR=/usr/local/apr APU=/usr/local/apr OPENSSL=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/usr PREFIX=/usr/local
./scons install
cd ..

wget http://apache.fayea.com/subversion/subversion-1.8.13.tar.bz2
tar -jxf subversion-1.8.13.tar.bz2 && cd subversion-1.8.13
./configure --with-openssl --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr --with-serf=/usr/local
make && make install