Changeset 9eb5bbe
- Timestamp:
- 08/09/2013 09:18:59 PM (11 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 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:
- c766cdc2
- Parents:
- b6518af
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
rb6518af r9eb5bbe 2 2 3 3 <!ENTITY day "08"> <!-- Always 2 digits --> 4 <!ENTITY month "0 8"> <!-- Always 2 digits -->4 <!ENTITY month "09"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2013"> 6 6 <!ENTITY copyrightdate "2001-&year;"> 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "August 7th, &year;">9 <!ENTITY releasedate "August 9th, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
introduction/welcome/changelog.xml
rb6518af r9eb5bbe 45 45 --> 46 46 <listitem> 47 <para>August 9th, 2013</para> 48 <itemizedlist> 49 <listitem> 50 <para>[bdubbs] - Update to xprop-1.2.2, xset-1.2.3, and 51 xwd-1.0.6 in Xorg Apps.</para> 52 </listitem> 53 </itemizedlist> 54 </listitem> 55 56 <listitem> 47 57 <para>August 8th, 2013</para> 48 58 <itemizedlist> -
x/installing/x7app.xml
rb6518af r9eb5bbe 95 95 <!ENTITY xpr-md5sum "6101f04731ffd40803df80eca274ec4b"> 96 96 97 <!ENTITY xprop-version "1.2. 1">98 <!ENTITY xprop-md5sum " d5529dc8d811efabd136ca2d8e857deb">97 <!ENTITY xprop-version "1.2.2"> 98 <!ENTITY xprop-md5sum "fae3d2fda07684027a643ca783d595cc"> 99 99 100 100 <!ENTITY xrandr-version "1.4.1"> … … 107 107 <!ENTITY xrefresh-md5sum "a896382bc53ef3e149eaf9b13bc81d42"> 108 108 109 <!ENTITY xset-version "1.2. 2">110 <!ENTITY xset-md5sum "d 44e0057d6722b25d5a314e82e0b7e7c">109 <!ENTITY xset-version "1.2.3"> 110 <!ENTITY xset-md5sum "dcd227388b57487d543cab2fd7a602d7"> 111 111 112 112 <!ENTITY xsetroot-version "1.1.1"> … … 116 116 <!ENTITY xvinfo-md5sum "1fbd65e81323a8c0a4b5e24db0058405"> 117 117 118 <!ENTITY xwd-version "1.0. 5">119 <!ENTITY xwd-md5sum " 2113126f9ac9c02bb8547c112c5d037e">118 <!ENTITY xwd-version "1.0.6"> 119 <!ENTITY xwd-md5sum "6b5d48464c5f366e91efd08b62b12d94"> 120 120 121 121 <!ENTITY xwininfo-version "1.1.3"> … … 263 263 case $packagedir in 264 264 xmodmap-[0-9]* ) 265 sed -e 's@#include <X11/Xos.h>@#ifdef HAVE_CONFIG_H\n# include "config.h"\n#endif\n\n&@' \ 266 -i {exec,pf,xmodmap}.c 265 line1='#ifdef HAVE_CONFIG_H' 266 line2='# include "config.h"' 267 line3='#endif' 268 sed -i -e "s@#include <X11/Xos.h>@$line1\n$line2\n$line3\n\n&@" \ 269 exec.c pf.c xmodmap.c 270 unset line1 line2 line3 267 271 ;; 268 272 luit-[0-9]* ) 269 sed -e 's@#ifdef HAVE_CONFIG_H@#ifdef _XOPEN_SOURCE\n#undef _XOPEN_SOURCE\n#define _XOPEN_SOURCE 600\n#endif\n\n&@' \ 270 -i sys.c 273 line1="#ifdef _XOPEN_SOURCE" 274 line2="# undef _XOPEN_SOURCE" 275 line3="# define _XOPEN_SOURCE 600" 276 line4="#endif" 277 278 sed -i -e "s@#ifdef HAVE_CONFIG_H@$line1\n$line2#$line3\n$line4\n\n&@" sys.c 279 unset line1 line2 line3 line4 271 280 ;; 272 281 esac
Note:
See TracChangeset
for help on using the changeset viewer.