1 | The contents of this directory were extracted from the contents of the
|
---|
2 | archive xorg-server-1.17.1.tar.bz2, as downloaded from ftp.x.org, using the
|
---|
3 | following shell script:
|
---|
4 |
|
---|
5 | for i in `find xorg-server-1.17.1 -name '*.h' | grep -v hw/xwin |
|
---|
6 | grep -v hw/xquartz | grep -v hw/kdrive | grep -v hw/xnest |
|
---|
7 | grep -v hw/xprint | grep -v hw/xgl`
|
---|
8 | do
|
---|
9 | cp ${i} ${PATH_VBOX}/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
|
---|
10 | done
|
---|
11 | sed -e 's/\(Uchar.*:[0-9];$\)/__extension__ \1/g' \
|
---|
12 | -e '/union {/,/}/ s/};/} dummy;/' \
|
---|
13 | ${PATH_VBOX}/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/edid.h \
|
---|
14 | > ${PATH_VBOX}/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/\
|
---|
15 | edid-new.h
|
---|
16 | mv ${PATH_VBOX}/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/\
|
---|
17 | edid-new.h \
|
---|
18 | ${PATH_VBOX}/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/edid.h
|
---|