The crude loop I wrote to come up with this changeset:
find -L package/feeds/packages/ -name patches | \
sed 's/patches$/refresh/' | sort | xargs make
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
(cherry picked from commit 5d8d4fbbcb
)
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
19 lines
664 B
Diff
19 lines
664 B
Diff
--- a/uwsgiconfig.py
|
|
+++ b/uwsgiconfig.py
|
|
@@ -856,11 +856,11 @@ class uConf(object):
|
|
self.cflags.append('-DUWSGI_HAS_EXECINFO')
|
|
report['execinfo'] = True
|
|
|
|
- if self.has_include('zlib.h'):
|
|
- self.cflags.append('-DUWSGI_ZLIB')
|
|
- self.libs.append('-lz')
|
|
- self.gcc_list.append('core/zlib')
|
|
- report['zlib'] = True
|
|
+# if self.has_include('zlib.h'):
|
|
+# self.cflags.append('-DUWSGI_ZLIB')
|
|
+# self.libs.append('-lz')
|
|
+# self.gcc_list.append('core/zlib')
|
|
+ report['zlib'] = False
|
|
|
|
if uwsgi_os == 'OpenBSD':
|
|
try:
|