Changeset 8d237953
- Timestamp:
- 05/31/2007 07:26:12 AM (17 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 048bc8cc
- Parents:
- 9ae86120
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
r9ae86120 r8d237953 50 50 DJ Lucas.</para> 51 51 </listitem> 52 <listitem> 53 <para>[dnicholson] - Streamlined the commands for each Xorg 54 section.</para> 55 </listitem> 52 56 </itemizedlist> 53 57 </listitem> -
x/installing/x7app.xml
r9ae86120 r8d237953 11 11 <!ENTITY x7apps-buildsize "30.7 MB"> 12 12 <!ENTITY x7apps-time "2.9 SBU"> 13 14 <!-- Versions for patches --> 15 <!ENTITY xload-version "1.0.1"> 13 16 14 17 ]> … … 63 66 <listitem> 64 67 <para>Required patch: <ulink 65 url="&patch-root;/xload- 1.0.1-setuid-1.patch"/></para>68 url="&patch-root;/xload-&xload-version;-setuid-1.patch"/></para> 66 69 </listitem> 67 70 </itemizedlist> … … 105 108 deprecated and should not be installed.</para></warning> 106 109 107 <para>A <ulink url='http://wiki.x.org/wiki/Development/Security'>security108 vulnerability</ulink> has been identified in the xload package.109 Before building this package with the commands110 shown below, be sure to apply the supplied patches. The patch can be111 applied with with the following command:</para>112 113 <screen><userinput>patch -Np1 -i ../xload-1.0.1-setuid-1.patch</userinput></screen>114 115 110 <para>Install the applications by running the following commands for each 116 chosen package:</para> 117 118 <screen><userinput>./configure $XORG_CONFIG && 111 package:</para> 112 113 <screen><userinput>case $(basename "$PWD") in 114 xload-&xload-version; ) 115 patch -Np1 -i ../xload-&xload-version;-setuid-1.patch 116 ;; 117 esac && 118 ./configure $XORG_CONFIG && 119 119 make</userinput></screen> 120 120 … … 125 125 126 126 <screen role="root"><userinput>make install</userinput></screen> 127 128 </sect2> 129 130 <sect2 role="commands"> 131 <title>Command Explanations</title> 132 133 <para><command>patch -Np1 -i 134 ../xload-&xload-version;-setuid-1.patch</command>: This patch fixes a 135 <ulink url='http://wiki.x.org/wiki/Development/Security'>security 136 vulnerability</ulink> that has been identified in the xload package.</para> 127 137 128 138 </sect2> -
x/installing/x7driver.xml
r9ae86120 r8d237953 86 86 <title>Installation of Xorg Drivers</title> 87 87 88 <para>The <application>xf86-input-evdev</application>,89 <application>xf86-video-ati</application>,90 <application>xf86-video-fbdev</application>,91 <application>xf86-video-glint</application>, and92 <application>xf86-video-newport</application> packages install93 man pages in UTF-8 encoding, and they will not display correctly94 using <application>Man-DB</application>. Issue the following95 command before building these packages to replace the offending96 characters with ones that <command>man</command> can properly97 display.</para>98 99 <screen><userinput>sed -i -e "s/\xc3\xb8/\\\\[\/o]/" \100 -e "s/\xc3\xa4/\\\\[:a]/" \101 -e "s/\xc3\x9c/\\\\[:U]/" man/*.man</userinput></screen>102 103 88 <warning><para>It is very important not to build display drivers that 104 89 cannot be used with your hardware. For instance, do not build Sun drivers … … 111 96 package:</para> 112 97 113 <screen><userinput>./configure $XORG_CONFIG \ 98 <screen><userinput>case $(basename "$PWD") in 99 xf86-input-evdev-[0-9]* | xf86-video-ati-[0-9]* | \ 100 xf86-video-fbdev-[0-9]* | xf86-video-glint-[0-9]* | \ 101 xf86-video-newport-[0-9]* ) 102 sed -i -e "s/\xc3\xb8/\\\\[\/o]/" \ 103 -e "s/\xc3\xa4/\\\\[:a]/" \ 104 -e "s/\xc3\x9c/\\\\[:U]/" man/*.man 105 ;; 106 esac && 107 ./configure $XORG_CONFIG \ 114 108 --with-xorg-module-dir=$XORG_PREFIX/lib/X11/modules && 115 109 make</userinput></screen> … … 126 120 <sect2 role="commands"> 127 121 <title>Command Explanations</title> 122 123 <para><command>sed -i ... man/*.man</command>: A few packages install 124 man pages in UTF-8 encoding, and they will not display correctly 125 using <application>Man-DB</application>. This command converts the 126 offending characters to ones that <command>man</command> can properly 127 display.</para> 128 128 129 129 <para><parameter>--with-xorg-module-dir=...</parameter>: This switch -
x/installing/x7lib.xml
r9ae86120 r8d237953 11 11 <!ENTITY x7libs-buildsize "186 MB"> 12 12 <!ENTITY x7libs-time "6.6 SBU"> 13 14 <!-- Versions for patches --> 15 <!ENTITY libX11-version "1.1.1"> 16 <!ENTITY libXfont-version "1.2.7"> 13 17 14 18 ]> … … 62 66 <listitem> 63 67 <para>Required patch: <ulink 64 url="&patch-root;/libX11- 1.1.1-xinitimage-1.patch"/></para>68 url="&patch-root;/libX11-&libX11-version;-xinitimage-1.patch"/></para> 65 69 </listitem> 66 70 <listitem> 67 71 <para>Required patch: <ulink 68 url="&patch-root;/libXfont- 1.2.7-bdf_fontsdir-1.patch"/></para>72 url="&patch-root;/libXfont-&libXfont-version;-bdf_fontsdir-1.patch"/></para> 69 73 </listitem> 70 74 </itemizedlist> … … 104 108 <title>Installation of Xorg Libraries</title> 105 109 106 <para><ulink url='http://wiki.x.org/wiki/Development/Security'>Security107 vulnerabilities</ulink> have been identified in the108 <application>libX11</application> and <application>libXfont</application>109 packages. Before building these packages with the commands shown below,110 be sure to apply the supplied patches. For <application>libX11</application>,111 this can be done by issuing the following command:</para>112 113 <screen><userinput>patch -Np1 -i ../libX11-1.1.1-xinitimage-1.patch</userinput></screen>114 115 <para>For <application>libXfont</application>, the patch can be applied116 with the following command:</para>117 118 <screen><userinput>patch -Np1 -i ../libXfont-1.2.7-bdf_fontsdir-1.patch</userinput></screen>119 120 110 <para>Install the libraries by running the following commands for each 121 of the chosen packages:</para> 122 123 <screen><userinput>./configure $XORG_CONFIG --without-xcb && 111 package:</para> 112 113 <screen><userinput>case $(basename "$PWD") in 114 libX11-&libX11-version; ) 115 patch -Np1 -i ../libX11-&libX11-version;-xinitimage-1.patch 116 ;; 117 libXfont-&libXfont-version; ) 118 patch -Np1 -i ../libXfont-&libXfont-version;-bdf_fontsdir-1.patch 119 ;; 120 esac && 121 ./configure $XORG_CONFIG && 124 122 make</userinput></screen> 125 123 … … 141 139 for it's transport layer unless this parameter is supplied. This parameter 142 140 will be ignored for other packages.</para> 141 142 <para><command>patch -Np1 -i ...</command>: These commands apply patches 143 to fix <ulink url='http://wiki.x.org/wiki/Development/Security'>security 144 vulnerabilities</ulink> identified in the 145 <application>libX11</application> and <application>libXfont</application> 146 packages.</para> 143 147 144 148 </sect2>
Note:
See TracChangeset
for help on using the changeset viewer.