5c69e0269d
KatzeNet can from now on be used where URIs are handled and one would have used libSoup and/ or local file handling as appropriate, whereas KatzeNet does both. Since we are displaying icons in several places KatzeNet also provides an icon loader that saves us from doublicating even more code. All bookmarks and also history items have icons now, since KatzeNet makes that incredibly easy. Search engines are also using favicons now, and right now custom icons don't work, we still need to fix that. Note that only icons are cached, nothing else and the code is known to have a hidden, hard to reproduce crasher which may appear when an icon is newly loaded.
13 lines
359 B
Python
13 lines
359 B
Python
#! /usr/bin/env python
|
|
# WAF build script for midori
|
|
# This file is licensed under the terms of the expat license, see the file EXPAT.
|
|
|
|
obj = bld.create_obj ('cc', 'staticlib')
|
|
obj.name = 'katze'
|
|
obj.target = 'katze'
|
|
obj.includes = '.'
|
|
obj.find_sources_in_dirs ('.')
|
|
obj.uselib = 'LIBSOUP GTK LIBXML'
|
|
obj.inst_var = 0
|
|
|
|
# FIXME: Do not install this static lib
|