Description: Look for the default xterm256.so instead of building one's own
Author: Simon Chopin <chopin.simon@gmail.com>
Forwarded: not-needed
Last-Update: 2013-04-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/fabulous/xterm256.py
+++ b/fabulous/xterm256.py
@@ -80,14 +80,13 @@
     You need:
 
     - Python >= 2.5 for ctypes library
-    - gcc (``sudo apt-get install gcc``)
 
     """
     import os
     import ctypes
     from os.path import join, dirname, getmtime, exists, expanduser
     # library = join(dirname(__file__), '_xterm256.so')
-    library = expanduser('~/.xterm256.so')
+    library = '/usr/lib/fabulous/xtermspeedup.so'
     sauce = join(dirname(__file__), '_xterm256.c')
     if not exists(library) or getmtime(sauce) > getmtime(library):
         build = "gcc -fPIC -shared -o %s %s" % (library, sauce)
