Mercurial > hgrepos > FreeBSD > ports > www > uwsginl
view files/patch-uwsgiconfig.py @ 13:9086ac6e44fb
FIX: Fix patch generation with "make makepatch"
| author | Franz Glasner <hg@dom66.de> |
|---|---|
| date | Sun, 24 Sep 2017 13:32:42 +0200 |
| parents | 2d507ba64af4 |
| children |
line wrap: on
line source
--- uwsgiconfig.py.orig 2017-03-30 22:11:36 UTC +++ uwsgiconfig.py @@ -91,7 +91,7 @@ report = { 'ucontext': False, } -verbose_build = False +verbose_build = True def print_compilation_output(default_str, verbose_str): if verbose_build: @@ -826,15 +826,6 @@ class uConf(object): self.cflags.append('-DUWSGI_HAS_IFADDRS') report['ifaddrs'] = True - if uwsgi_os in ('FreeBSD', 'OpenBSD'): - if self.has_include('execinfo.h') or os.path.exists('/usr/local/include/execinfo.h'): - if os.path.exists('/usr/local/include/execinfo.h'): - self.cflags.append('-I/usr/local/include') - self.ldflags.append('-L/usr/local/lib') - self.cflags.append('-DUWSGI_HAS_EXECINFO') - self.libs.append('-lexecinfo') - report['execinfo'] = True - if uwsgi_os == 'GNU/kFreeBSD': if self.has_include('execinfo.h'): self.cflags.append('-DUWSGI_HAS_EXECINFO')
