Open
Conversation
* Add `load_module` function that dynamically opens shared object and calls special `schaufel_module_init` func; * Create `contrib` directory for modules and a Makefile to build modules in the directory; * Extracted postgres module to `contrib` directory and added a Makefile to build it as a shared library.
… that print include path and library path and make use of those to build contribs and extensions
autogenerated headers and update .gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for extensions implemented as shared libraries. External modules must implement the interface provided by
modules.hand register themselves withregister_module()function. A single library can register multiple modules.Some of existing modules (those that depend on other libraries) were moved to
contribdirectory and were provided with its own Makefiles. Contrib modules and extensions should includecontrib.mkwhich incorporates all necessary targets for building and installing modules.Top level
Makefilehas been splitted into to parts:Makefileitself andMakefile.global. The latter contains common variables useful for bothMakefileandcontrib.mk. After installation theMakefile.globalandcontrib.mkfile are located inschaufel's libraries path.Added
-L(library path) and-I(include path) options toschaufelexecutable. Those are needed bycontrib.mkto provide correct include path to a compiler and to install modules.Also
autoconfscript has been added. It checks for compiler options, shared libraries needed byschaufelto build, generates makefiles andbuild.hheader file.