mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 15:12:11 +08:00
Update to sudo-1.8.17p1.
Update to gtksourceview-3.20.4. Update sqlite CFLAGS. git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@17523 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
9318937b6d
commit
7594f109fe
@ -1,12 +1,12 @@
|
||||
<!-- $LastChangedBy$ $Date$ -->
|
||||
|
||||
<!ENTITY day "22"> <!-- Always 2 digits -->
|
||||
<!ENTITY day "23"> <!-- Always 2 digits -->
|
||||
<!ENTITY month "06"> <!-- Always 2 digits -->
|
||||
<!ENTITY year "2016">
|
||||
<!ENTITY copyrightdate "2001-&year;">
|
||||
<!ENTITY copyholder "The BLFS Development Team">
|
||||
<!ENTITY version "&year;-&month;-&day;">
|
||||
<!ENTITY releasedate "June 22st &year;">
|
||||
<!ENTITY releasedate "June 23st &year;">
|
||||
<!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
|
||||
<!ENTITY blfs-version "svn"> <!-- svn|[release #] -->
|
||||
<!ENTITY lfs-version "development"> <!-- x.y|development -->
|
||||
|
@ -43,6 +43,24 @@
|
||||
</listitem>
|
||||
|
||||
-->
|
||||
<listitem>
|
||||
<para>June 23nd, 2016</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to sudo-1.8.17p1. Fixes
|
||||
<ulink url="&blfs-ticket-root;7976">#7976</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to gtksourceview-3.20.4. Fixes
|
||||
<ulink url="&blfs-ticket-root;7982">#7992</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update sqlite CFLAGS. Fixes
|
||||
<ulink url="&blfs-ticket-root;7991">#7991</ulink>.</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</listitem>
|
||||
|
||||
<listitem>
|
||||
<para>June 22nd, 2016</para>
|
||||
<itemizedlist>
|
||||
@ -51,7 +69,7 @@
|
||||
<ulink url="&blfs-ticket-root;7989">#7989</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to libwnch-3.20.0. Fixes
|
||||
<para>[bdubbs] - Update to libwnck-3.20.0. Fixes
|
||||
<ulink url="&blfs-ticket-root;7988">#7988</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -39,7 +39,7 @@
|
||||
<!ENTITY shadow-version "4.2.1">
|
||||
<!ENTITY ssh-askpass-version "&openssh-version;">
|
||||
<!ENTITY stunnel-version "5.32">
|
||||
<!ENTITY sudo-version "1.8.17">
|
||||
<!ENTITY sudo-version "1.8.17p1">
|
||||
<!ENTITY tripwire-version "2.4.2.2">
|
||||
|
||||
<!-- Chapter 5 -->
|
||||
@ -518,7 +518,7 @@
|
||||
<!ENTITY gtk-engines-version "2.20.2">
|
||||
<!ENTITY gtkmm2-version "2.24.4">
|
||||
<!ENTITY gtkmm3-version "3.20.1">
|
||||
<!ENTITY gtksourceview-version "3.20.3">
|
||||
<!ENTITY gtksourceview-version "3.20.4">
|
||||
<!ENTITY gtk-vnc-version "0.5.4">
|
||||
<!ENTITY imlib2-version "1.4.9">
|
||||
<!ENTITY keybinder2-version "0.3.0">
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
<!ENTITY sudo-download-http "http://www.sudo.ws/dist/sudo-&sudo-version;.tar.gz">
|
||||
<!ENTITY sudo-download-ftp "ftp://ftp.sudo.ws/pub/sudo/sudo-&sudo-version;.tar.gz">
|
||||
<!ENTITY sudo-md5sum "01518df10b12c5396c498cdc15d2475f">
|
||||
<!ENTITY sudo-md5sum "50a840a688ceb6fa3ab24fc0adf4fa23">
|
||||
<!ENTITY sudo-size "2.7 MB">
|
||||
<!ENTITY sudo-buildsize "27 MB (with tests)">
|
||||
<!ENTITY sudo-time "0.4 SBU (with tests)">
|
||||
|
@ -128,6 +128,7 @@
|
||||
|
||||
<screen><userinput>./configure --prefix=/usr --disable-static \
|
||||
CFLAGS="-g -O2 -DSQLITE_ENABLE_FTS3=1 \
|
||||
-DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
|
||||
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
|
||||
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 \
|
||||
-DSQLITE_SECURE_DELETE=1 \
|
||||
@ -162,17 +163,18 @@ cp -v -R sqlite-doc-&sqlite-doc-version;/* /usr/share/doc/sqlite-&sqlite-version
|
||||
|
||||
<para>
|
||||
<parameter>CFLAGS="-g -O2 -DSQLITE_ENABLE_FTS3=1
|
||||
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_SECURE_DELETE
|
||||
-DSQLITE_ENABLE_UNLOCK_NOTIFY=1 -DSQLITE_ENABLE_DBSTAT_VTAB=1"</parameter>:
|
||||
Applications such as <application>Firefox</application> require secure
|
||||
delete and enable unlock notify to be turned on. Since
|
||||
<application>firefox-41</application> the dbstat virtual table is also
|
||||
required. The only way to do this is to include them in the
|
||||
-DSQLITE_ENABLE_FTS3_TOKENIZER=1 -DSQLITE_ENABLE_COLUMN_METADATA=1
|
||||
-DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY=1
|
||||
-DSQLITE_ENABLE_DBSTAT_VTAB=1"</parameter>: Applications such as
|
||||
<application>Firefox</application> require secure delete and enable
|
||||
unlock notify to be turned on. Thunderbird requires teh fts3_tokenizer
|
||||
option. Since <application>firefox-41</application> the dbstat virtual
|
||||
table is also required. The only way to do this is to include them in the
|
||||
CFLAGS. By default, these are set to <literal>"-g -O2"</literal> so we
|
||||
specify that to preserve those settings. You may, of course, wish to omit
|
||||
the <literal>'-g'</literal> if you do not wish to create debugging
|
||||
information. For further information on what can be specified see
|
||||
<ulink url="http://www.sqlite.org/compile.html"/>.
|
||||
information. For further information on what can be specified see <ulink
|
||||
url="http://www.sqlite.org/compile.html"/>.
|
||||
</para>
|
||||
|
||||
</sect2>
|
||||
|
@ -8,7 +8,7 @@
|
||||
"&gnome-download-http;/gtksourceview/&gnome-minor-20;/gtksourceview->ksourceview-version;.tar.xz">
|
||||
<!ENTITY gtksourceview-download-ftp
|
||||
"&gnome-download-ftp;/gtksourceview/&gnome-minor-20;/gtksourceview->ksourceview-version;.tar.xz">
|
||||
<!ENTITY gtksourceview-md5sum "15f21354054a52595f26cea6f7749cb9">
|
||||
<!ENTITY gtksourceview-md5sum "d1f56a0ff3a87b0f4ffde50c6c99a8d5">
|
||||
<!ENTITY gtksourceview-size "1.5 MB">
|
||||
<!ENTITY gtksourceview-buildsize "80 MB (with tests)">
|
||||
<!ENTITY gtksourceview-time "0.6 SBU (with tests)">
|
||||
@ -37,8 +37,7 @@
|
||||
text functions to include syntax highlighting.
|
||||
</para>
|
||||
|
||||
&lfs79_checked;
|
||||
&gcc6_checked;
|
||||
&lfs79_checked;&gcc6_checked;
|
||||
|
||||
<bridgehead renderas="sect3">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
|
Loading…
Reference in New Issue
Block a user