summaryrefslogtreecommitdiff
path: root/pango/mini-xft/README
diff options
context:
space:
mode:
Diffstat (limited to 'pango/mini-xft/README')
-rw-r--r--pango/mini-xft/README14
1 files changed, 0 insertions, 14 deletions
diff --git a/pango/mini-xft/README b/pango/mini-xft/README
deleted file mode 100644
index 11ea3392..00000000
--- a/pango/mini-xft/README
+++ /dev/null
@@ -1,14 +0,0 @@
-This is a copy of the libXft library from the XFree86 cvs server, with
-all the X specific parts removed. It is used by pangoft2 to locate
-fonts and to handle font aliases in exactly the same way as Xft does.
-
-In order to not have symbols collide, the following sed scripts were run
-on the code:
-
-for file in xftgram.y xftlex.l xftdir.c xftcache.c xftdpy.c xftfs.c xftname.c xftcfg.c xftfont.c xftinit.c xftlist.c xftpat.c xftdbg.c xftfreetype.c xftmatrix.c xftmatch.c xftstr.c xftgram.h xftint.h ; do
- sed s#Xft#MiniXft#g $file | sed s#/X11/MiniXftConfig#/X11/XftConfig#g | sed s/xftint.h/minixftint.h/g | sed s/xftgram.h/minixftgram.h/g> mini-xft/mini$file;
-done
-
-for file in XftFreetype.h Xft.h; do
- sed s/Xft/MiniXft/g $file > mini-xft/Mini$file;
-done