1. 下载源代码
- 首先在https://github.com/上找到postgre项目源码,我帮你找到了:
- clone 源代码:点击下图位置,copy仓库URL。
- 在Linux下clone代码。
git clone https://github.com/postgres/postgres.git
2. 配置
如果不熟悉源代码目录结构,可以看文章:《第 3 课 PostgreSQL代码结构》,我这里就不赘述了。
进入根目录下,执行下面命令:
$./configure --prefix=`pwd`/release --with-openssl --without-ldap --with-libxml --enable-thread-safety --enable-debug
–pre