File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Release Notes
55.. toctree ::
66 :maxdepth: 2
77
8+ release-notes/version-4.5.22
89 release-notes/version-4.5.21
910 release-notes/version-4.5.20
1011 release-notes/version-4.5.19
Original file line number Diff line number Diff line change 1+ ==============
2+ Version 4.5.22
3+ ==============
4+
5+ Version 4.5.22 of mod_wsgi can be obtained from:
6+
7+ https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.5.22
8+
9+ Bugs Fixed
10+ ----------
11+
12+ * Change in version 4.5.21 caused Windows builds to break with undefined
13+ symbol ``wsgi_daemon_shutdown ``.
Original file line number Diff line number Diff line change @@ -1996,7 +1996,9 @@ apr_status_t wsgi_python_term(void)
19961996
19971997 apr_thread_mutex_lock (wsgi_shutdown_lock );
19981998
1999+ #if defined(MOD_WSGI_WITH_DAEMONS )
19992000 wsgi_daemon_shutdown ++ ;
2001+ #endif
20002002
20012003 Py_Finalize ();
20022004
Original file line number Diff line number Diff line change 2525
2626#define MOD_WSGI_MAJORVERSION_NUMBER 4
2727#define MOD_WSGI_MINORVERSION_NUMBER 5
28- #define MOD_WSGI_MICROVERSION_NUMBER 21
29- #define MOD_WSGI_VERSION_STRING "4.5.21 "
28+ #define MOD_WSGI_MICROVERSION_NUMBER 22
29+ #define MOD_WSGI_VERSION_STRING "4.5.22 "
3030
3131/* ------------------------------------------------------------------------- */
3232
You can’t perform that action at this time.
0 commit comments