# OpenEmbedded sitecustomize.py (C) 2002-2008 Michael 'Mickey' Lauer # GPLv2 or later # Version: 20081123 # Features: # * set proper default encoding # * enable readline completion in the interactive interpreter # * load command line history on startup # * save command line history on exit import os def __exithandler(): try: readline.write_history_file( "%s/.python-history" % os.getenv( "HOME", "/tmp" ) ) except IOError: pass def __registerExitHandler(): import atexit atexit.register( __exithandler ) def __enableReadlineSupport(): readline.set_history_length( 1000 ) readline.parse_and_bind( "tab: complete" ) try: readline.read_history_file( "%s/.python-history" % os.getenv( "HOME", "/tmp" ) ) except IOError: pass def __enableDefaultEncoding(): import sys try: sys.setdefaultencoding( "utf8" ) except LookupError: pass import sys try: import rlcompleter, readline except ImportError: pass else: __enableDefaultEncoding() __registerExitHandler() __enableReadlineSupport() aster-next Mirror of openembedded-coreMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/meta/recipes-graphics/x11vnc
AgeCommit message (Expand)AuthorFiles
2016-01-07x11vnc: move recipe to meta-oeIoan-Adrian Ratiu2
2016-01-07x11vnc: move recipe to meta-oeIoan-Adrian Ratiu1
2015-12-08package_regex.inc: split sourceforge related entries to their own recipesAlexander Kanavin1
2015-03-09recipes: add x11 to required DISTRO_FEATURESMartin Jansa1
2014-04-25Globally replace 'base_contains' calls with 'bb.utils.contains'Otavio Salvador1
2014-02-28autotools-brokensep: Mark recipes with broken separate build dir supportRichard Purdie1
2014-01-16x11vnc: fix CAPS_LOCK issuesLaurentiu Palcu1
2014-01-02Replace one-line DESCRIPTION with SUMMARYPaul Eggleton1
2013-10-06x11vnc: Add PACKAGECONFIG for xineramaMartin Jansa1
2013-09-20x11vnc: respect zeroconf DISTRO_FEATURE to enable Avahi supportRoss Burton1
2013-09-11x11vnc: add dependencies for xrandr/xfixes/xdamage/xtstRoss Burton1
2012-12-11x11vnc: bind vnc server to port 5900Laurentiu Palcu1
2011-12-02x11vnc: Upgrade to 0.9.13Zhai Edwin1
2011-11-30PR Bump for OpenSSL 1.0Saul Wold1
2011-05-12recipes: Add Upstream-Status to multiple recipesZhai Edwin2
2011-04-18x11vnc: fix SRC_URIKoen Kooi1
2011-03-04x11vnc: fix the endian issue in mips for bug 782Yu Ke2
2011-03-03Fixup merge error and apply cleanupsRichard Purdie1
2011-03-03x11vnc: Fix the start failureZhai Edwin2
2010-12-09SRC_URI Checksums AdditionalsSaul Wold1
2010-12-06x11vnc: Update to 0.9.12Zhai Edwin1
2010-09-01packages: Separate out most of the remaining packages into recipesRichard Purdie1