在编译postgresql 源码的时候,postgresql 的configure 干了些什么呢?
应该是对系统进行了一系列的探测,比如OS种类之类。
具体来说,这些探测的结果,表现在,运行后,生成下列的文件(以postgresql9.0.2为例):
复制代码
./postgresql-9.0.2/config.log
./postgresql-9.0.2/config.status
./postgresql-9.0.2/GNUmakefile
./postgresql-9.0.2/src/backend/port/dynloader.c
./postgresql-9.0.2/src/backend/port/pg_sema.c
./postgresql-9.0.2/src/backend/port/pg_shmem.c
./postgresql-9.0.2/src/backend/port/tas.s
./postgresql-9.0.2/src/include/dynloader.h
./postgresql-9.0.2/src/include/pg_config.h
./postgresql-9.0.2/src/include/pg_config_os.h
./postgresql-9.0.2/src/include/stamp-h
./postgresql-9.0.2/src/interfaces/ecpg/include/ecpg_config.h
./postgresql-9.0.2/src/interfaces/ecpg/include/stamp-h
./postgresql-9.0.2/src/Makefile.global
./postgresql-9.0.2/src/Makefile.port
复制代码
与传统的make 不同,postgresql的configure 运行完毕后,要运行gmake和gmake install。
所以也未生成 config.h头文件,而是生成 pg_config.h,还伴随着其他的文件。
本文转自健哥的数据花园博客园博客,原文链接:http://www.cnblogs.com/gaojian/archive/2012/07/18/2596927.html,如需转载请自行联系原作者