# 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() t' value='switch'/> Multi-Tech CoreCDP 1.x OpenEmbedded TreeMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/packages/zlib
AgeCommit message (Expand)AuthorFiles
2007-01-07zlib: dropped older then 1.2.3Marcin Juszkiewicz7
2006-10-14zlib 1.2.3: Include zlib.h and zconf.h in the zlib-dev package byJamie Lenehan2
2006-10-10Remove MAINTAINER fields from recipes, add MAINTAINER file to replace them.Koen Kooi3
2006-10-02zlib-native: stage zlib.h, spotted by Leon WoestenbergKoen Kooi1
2006-08-07zli/zlib-native_1.2.3.bb: after switching zlib to autotools the darwin hack i...Henning Heinold1
2006-08-07zlib-1.2.3: -made zlib uses autotools, that introduced autotools.patch andHenning Heinold4
2006-08-06packaes/zlib: Do not use uname to determine the library endingHolger Freyther3
2006-08-05packages: sed -i s/^"include "/"require "/ */*.bb GNU sed rocks!Holger Freyther3
2006-07-24zlib - Create a libtool package for other libtool builds to link against.Raymond Danks3
2005-07-21added zlib 1.2.3Marcin Juszkiewicz4
2005-07-12zlib: add debian patch fixing the Vulnerability mentioned in http://secunia.c...Michael Lauer2
2005-06-30import clean BK tree at cset 1.3670Koen Kooi2
2005-05-23Merge bk://oe-devel.bkbits.net/openembeddednslu2-linux.adm@bkbits.net1
2005-03-01Merge bk://oe-devel.bkbits.net/openembeddednslu2-linux.adm@bkbits.net2