aboutsummaryrefslogtreecommitdiff
path: root/libs/libmariadb/patches/010-link-to-libucontext.patch
Commit message (Collapse)AuthorAge
* libmariadb: Fix async api by linking to libucontextVolker Christian2023-09-23
The asynchronous API of libmariadb uses cooperative multi threading by using the system calls * makecontext * swapcontext * getcontext * setcontext of the ucontext.h C-API. Thus additionally link libmariadb to libucontext which is a library providing these system calls on platforms not supporting them out of the box - like musl based platforms. Signed-off-by: Volker Christian <me@vchrist.at>