libsoup3: update to 3.6.0; fix GTK2/3 app startup
[oi-userland.git] / components / network / avahi / patches / 22-use-ndbm.patch
blobf3f8b705d37687a8813367b2eac079abadaae056
1 Python 3 uses gdbm by default, but we explicitly enable ndbm, so fix build script to create ndbm DB
2 --- avahi-0.7/service-type-database/build-db.1 2020-01-20 12:58:41.232303391 +0000
3 +++ avahi-0.7/service-type-database/build-db 2020-01-20 12:59:04.296418239 +0000
4 @@ -20,7 +20,7 @@
5 try:
6 import anydbm as dbm
7 except ImportError:
8 - import dbm
9 + import dbm.ndbm as dbm
11 import sys