ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/sqlite.spec
Revision: 1.12
Committed: Mon Jun 25 13:23:22 2007 UTC (17 years, 10 months ago) by elmer
Branch: MAIN
CVS Tags: pe20070626c-ports, pe20070626b-ports, sm20070626a-ports, pe20070626a-ports, pe20070625b-ports
Changes since 1.11: +8 -0 lines
Log Message:
Very Ugly hack to build properly in 32-bit mode on 64-bit machines

File Contents

# User Rev Content
1 elmer 1.11 ### RPM external sqlite 3.3.5-XXXX
2     Source: http://www.sqlite.org/%{n}-%{realversion}.tar.gz
3 elmer 1.12 Patch1: sqlite_3.3.5_readline_for_32bit_on_64bit_build
4 elmer 1.11
5     %prep
6     %setup -n %n-%{realversion}
7 elmer 1.12 # The following hack and patch are there because the libreadline.so soft
8     # link is missing from the 32-bit compatibility area on the 64-bit build
9     # machines and apparently they don't have a -devel build with it. It
10     # definitely should be reviewed at some point.
11     %patch1 -p1
12     mkdir .libs
13     ln -s /usr/lib/libreadline.so.4.3 .libs/libreadline.so
14 elmer 1.11
15 eulisse 1.1 %build
16     ./configure --prefix=%i --disable-tcl
17 eulisse 1.2 make %makeprocesses