Changeset 85e109d
- Timestamp:
- 09/14/2014 01:39:38 PM (10 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 7.10, 7.6, 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, 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, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 547042b2
- Parents:
- b62ac136
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
general/prog/tcl.xml
rb62ac136 r85e109d 124 124 </para> 125 125 126 <screen><userinput>cd unix && 126 <screen><userinput>rm -rf pkgs/sqlite3.8.6 && 127 export SRCDIR=`pwd` && 128 129 cd unix && 130 127 131 ./configure --prefix=/usr \ 128 132 --without-tzdata \ … … 130 134 $([ $(uname -m) = x86_64 ] && echo --enable-64bit) && 131 135 make && 132 136 <!-- 133 137 sed -e "s@^\(TCL_SRC_DIR='\).*@\1/usr/include'@" \ 134 138 -e "/TCL_B/s@='\(-L\)\?.*unix@='\1/usr/lib@" \ 135 -i tclConfig.sh</userinput></screen> 139 -i tclConfig.sh</userinput></screen>--> 140 sed -e "s#$SRCDIR/unix#/usr/lib#" \ 141 -e "s#$SRCDIR#/usr/include#" \ 142 -i tclConfig.sh && 143 144 sed -e "s#$SRCDIR/unix/pkgs/tdbc1.0.1#/usr/lib/tdbc1.0.0#" \ 145 -e "s#$SRCDIR/pkgs/tdbc1.0.1/generic#/usr/include#" \ 146 -e "s#$SRCDIR/pkgs/tdbc1.0.1/library#/usr/lib/tcl8.6#" \ 147 -e "s#$SRCDIR/pkgs/tdbc1.0.1#/usr/include#" \ 148 -i pkgs/tdbc1.0.1/tdbcConfig.sh && 149 150 sed -e "s#$SRCDIR/unix/pkgs/itcl4.0.1#/usr/lib/itcl4.0.0#" \ 151 -e "s#$SRCDIR/pkgs/itcl4.0.1/generic#/usr/include#" \ 152 -e "s#$SRCDIR/pkgs/itcl4.0.1#/usr/include#" \ 153 -i pkgs/itcl4.0.1/itclConfig.sh && 154 155 unset SRCDIR</userinput></screen> 156 136 157 137 158 <para> … … 190 211 191 212 <para> 192 <command>sed -e ... tclConfig.sh</command>: The 193 <application>Tcl</application> package expects that its source tree is 194 preserved so that packages depending on it for their compilation 195 can utilize it. This <command>sed</command> removes the references to the 196 build directory and replaces them with saner system-wide locations. 213 <command>rm -rf pkgs/sqlite3.8.6 </command>: <application>SQLite Tcl 214 Extension Architecture (TEA)</application> is removed, because it is 215 optionally installed by <xref linkend="sqlite"/> 216 </para> 217 218 <para> 219 <command>sed -e ...</command>: The <application>Tcl</application> package 220 expects that its source tree is preserved so that packages depending on 221 it for their compilation can utilize it. These <command>sed</command> 222 remove the references to the build directory and replace them with saner 223 system-wide locations. 197 224 </para> 198 225 … … 216 243 <seg> 217 244 /usr/lib/itcl4.0.1, 218 /usr/lib/sqlite3.8.6,219 245 /usr/lib/tcl8, 220 246 /usr/lib/tcl&tcl-ver;, -
introduction/welcome/changelog.xml
rb62ac136 r85e109d 48 48 <para>September 14th, 2014</para> 49 49 <itemizedlist> 50 <listitem> 51 <para>[fernando] - Add optional instructions for sqlite-tcl to 52 SQLite-3.8.6. Fixes 53 <ulink url="&blfs-ticket-root;5512">#5512</ulink>.</para> 54 </listitem> 55 <listitem> 56 <para>[fernando] - tcl-8.6.2: fixes for the build instructions. Fixes 57 <ulink url="&blfs-ticket-root;5511">#5511</ulink>.</para> 58 </listitem> 50 59 <listitem> 51 60 <para>[bdubbs] - Update to valgrind-3.10.0. Fixes -
server/databases/sqlite.xml
rb62ac136 r85e109d 105 105 <bridgehead renderas="sect4">Optional</bridgehead> 106 106 <para role="optional"> 107 <xref linkend="unzip"/> (required to unzip the documentation). 107 <xref linkend="tcl"/> (required to build <application>SQLite Tcl 108 Extension Architecture - TEA</application>, also know as 109 <application>sqlite-tcl</application>) and 110 <xref linkend="unzip"/> (required to unzip the documentation) 108 111 </para> 109 112 … … 136 139 137 140 <para> 141 If you wish to install <application>sqlite-tcl</application>, run the 142 following commands: 143 </para> 144 145 <screen><userinput>cd tea && 146 ./configure --prefix=/usr --with-system-sqlite && 147 make && 148 cd ..</userinput></screen> 149 150 <para> 138 151 This package does not come with a test suite. 139 152 </para> … … 152 165 <screen role="root"><userinput>install -v -m755 -d /usr/share/doc/sqlite-&sqlite-version; && 153 166 cp -v -R sqlite-doc-&sqlite-doc-version;/* /usr/share/doc/sqlite-&sqlite-version;</userinput></screen> 167 168 <para> 169 If you decided to install <application>sqlite-tcl</application>, issue 170 the following commands as the 171 <systemitem class="username">root</systemitem> user: 172 </para> 173 174 <screen><userinput>cd tea && 175 make install && 176 cd ..</userinput></screen> 177 154 178 </sect2> 155 179 … … 180 204 <segmentedlist> 181 205 <segtitle>Installed Program</segtitle> 182 <segtitle>Installed Librar y</segtitle>183 <segtitle>Installed Director y</segtitle>206 <segtitle>Installed Libraries</segtitle> 207 <segtitle>Installed Directories</segtitle> 184 208 185 209 <seglistitem> … … 188 212 </seg> 189 213 <seg> 190 libsqlite3.so 214 libsqlite3.so and (optionally) 215 /usr/lib/sqlite&sqlite-version;/libsqlite&sqlite-version;.so 191 216 </seg> 192 217 <seg> 218 /usr/lib/sqlite&sqlite-version; (optionally) and 193 219 /usr/share/doc/sqlite-&sqlite-version; 194 220 </seg>
Note:
See TracChangeset
for help on using the changeset viewer.