f41829b753
- version update to 2.0.25.1 * fixed build with gcc14 2.0.25.1 * Fix build when pcre is not found and is optional (umut) 2.0.25 * Update glusterfs io callback function signature for 6.0 (Ralf Ertzinger) * Fix default values in help for min-worker-lifetime & legion-skew-tolerance (Thomas Riccardi) * Fix build regression with gcc < 5 (Riccardo Magliocchetti) * Add support for building against prcre2. This changes the regexp internal data structures (Alexandre Rossi) * Allow the valgrind generator script to run with a different python version (Wynn Wilkes) * Fix a potential error with not releasing the gil in uwsgi_python_rpc (Wynn Wilkes) * Rework threading cancellation handling. This can fix issues with threading, missing atexit callbacks and whatnot. (Inada Naoki) - modified patches % uwsgi-1.9.17-plugin_build_path.patch (refreshed) - deleted patches - uwsgi-2.0.24-update-glusterfs-io-callback-signature.patch (upstreamed) OBS-URL: https://build.opensuse.org/request/show/1173910 OBS-URL: https://build.opensuse.org/package/show/server:http/uwsgi?expand=0&rev=127
17 lines
500 B
Diff
17 lines
500 B
Diff
Index: uwsgi-2.0.25.1/uwsgiconfig.py
|
|
===================================================================
|
|
--- uwsgi-2.0.25.1.orig/uwsgiconfig.py
|
|
+++ uwsgi-2.0.25.1/uwsgiconfig.py
|
|
@@ -1444,10 +1444,7 @@ def build_plugin(path, uc, cflags, ldfla
|
|
except:
|
|
pass
|
|
|
|
- if uc:
|
|
- plugin_dest = uc.get('plugin_build_dir', uc.get('plugin_dir')) + '/' + name + '_plugin'
|
|
- else:
|
|
- plugin_dest = name + '_plugin'
|
|
+ plugin_dest = name + '_plugin'
|
|
|
|
shared_flag = '-shared'
|
|
|