37e2216775
The use case is kiosk systems where leaving the application idle for a period of time means that the user left, and the session is reset so the next user starts off clean. The implementation uses libXss and uses XScreenSaverQueryExtension which means it is for now supported on X11 only. Right now reset means closing any opens web pages and opening the original web page. Currently --inactivity-reset is only supported with --app.
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
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.
|
|
|
|
import platform
|
|
|
|
progressive = True
|
|
libs = 'M UNIQUE LIBSOUP GMODULE GTHREAD LIBIDN GIO GTK SQLITE ' \
|
|
'LIBNOTIFY WEBKIT LIBXML X11 XSS WS2_32 OPENSSL HILDON HILDON_FM'
|
|
|
|
if progressive or Options.commands['check']:
|
|
obj = bld.new_task_gen ('cc', 'staticlib')
|
|
obj.target = 'midori-core'
|
|
obj.includes = '.. ../katze .'
|
|
obj.find_sources_in_dirs ('../katze . ../panels', excludes=['main.c'])
|
|
obj.uselib = libs
|
|
obj.add_marshal_file ('marshal.list', 'midori_cclosure_marshal')
|
|
obj.install_path = None
|
|
bld.add_group ()
|
|
|
|
if progressive:
|
|
obj = bld.new_task_gen ('cc', 'program')
|
|
obj.target = 'midori'
|
|
obj.includes = '.. ../katze . ../panels'
|
|
obj.source = './main.c'
|
|
obj.uselib = libs
|
|
obj.uselib_local = 'midori-core'
|
|
if bld.env['WINRC']:
|
|
obj.source += ' ../data/midori.rc'
|
|
else:
|
|
obj = bld.new_task_gen ('cc', 'program')
|
|
obj.target = 'midori'
|
|
obj.includes = '.. ../katze . ../panels'
|
|
obj.find_sources_in_dirs ('../katze . ../panels')
|
|
obj.add_marshal_file ('marshal.list', 'midori_cclosure_marshal')
|
|
obj.uselib = libs
|
|
if bld.env['WINRC']:
|
|
obj.source += ' ../data/midori.rc'
|