-
- Downloads
Implement a few changes to how shared libraries and dynamically loadable
modules are built. Foremost, it creates a solid distinction between these two types of targets based on what had already been implemented and duplicated in ad hoc ways before. Specifically, - Dynamically loadable modules no longer get a soname. The numbers previously set in the makefiles were dummy numbers anyway, and the presence of a soname upset a few packaging tools, so it is nicer not to have one. - The cumbersome detour taken on installation (build a libfoo.so.0.0.0 and then override the rule to install foo.so instead) is removed. - Lots of duplicated code simplified.
Showing
- src/Makefile.shlib 148 additions, 60 deletionssrc/Makefile.shlib
- src/backend/snowball/Makefile 5 additions, 13 deletionssrc/backend/snowball/Makefile
- src/backend/utils/mb/conversion_procs/proc.mk 3 additions, 12 deletionssrc/backend/utils/mb/conversion_procs/proc.mk
- src/interfaces/ecpg/compatlib/Makefile 2 additions, 4 deletionssrc/interfaces/ecpg/compatlib/Makefile
- src/interfaces/ecpg/ecpglib/Makefile 2 additions, 4 deletionssrc/interfaces/ecpg/ecpglib/Makefile
- src/interfaces/ecpg/pgtypeslib/Makefile 2 additions, 4 deletionssrc/interfaces/ecpg/pgtypeslib/Makefile
- src/interfaces/libpq/Makefile 3 additions, 4 deletionssrc/interfaces/libpq/Makefile
- src/makefiles/pgxs.mk 14 additions, 12 deletionssrc/makefiles/pgxs.mk
- src/pl/plperl/GNUmakefile 5 additions, 16 deletionssrc/pl/plperl/GNUmakefile
- src/pl/plpgsql/src/Makefile 5 additions, 21 deletionssrc/pl/plpgsql/src/Makefile
- src/pl/plpython/Makefile 5 additions, 16 deletionssrc/pl/plpython/Makefile
- src/pl/tcl/Makefile 6 additions, 18 deletionssrc/pl/tcl/Makefile
- src/test/regress/GNUmakefile 3 additions, 10 deletionssrc/test/regress/GNUmakefile
- src/tutorial/Makefile 1 addition, 3 deletionssrc/tutorial/Makefile
Loading
Please register or sign in to comment