summaryrefslogtreecommitdiff
path: root/noncore/net/mail
authoralwin <alwin>2004-02-13 13:14:17 (UTC)
committer alwin <alwin>2004-02-13 13:14:17 (UTC)
commit8149606231ee4aa03e5232eae27a358fedd32cd5 (patch) (unidiff)
treef2c628246438dbc20fb019def50a032d16f67ee2 /noncore/net/mail
parentaca5ba5ed24b4da61517560ea91f566afd132d28 (diff)
downloadopie-8149606231ee4aa03e5232eae27a358fedd32cd5.zip
opie-8149606231ee4aa03e5232eae27a358fedd32cd5.tar.gz
opie-8149606231ee4aa03e5232eae27a358fedd32cd5.tar.bz2
just short instruction how to get libetpan compiled in cross compiler
Diffstat (limited to 'noncore/net/mail') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/libetpanstuff/Build-libetpan-cross.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/noncore/net/mail/libetpanstuff/Build-libetpan-cross.txt b/noncore/net/mail/libetpanstuff/Build-libetpan-cross.txt
new file mode 100644
index 0000000..9b84b6d
--- a/dev/null
+++ b/noncore/net/mail/libetpanstuff/Build-libetpan-cross.txt
@@ -0,0 +1,29 @@
1Steps for building libetpan for arm-zaurus environment:
21. export PATH=$PATH:/usr/local/arm/2.95.3/bin
32. cd into the libetpan sourcedir
43. run
5./configure --host=arm-linux --prefix=/usr/local/arm/2.95.3/arm-linux --disable-db --disable-debug
6
7the disable-db is required!!!!
84. check the output of configure, you MUST find a line
9 "checking for openssl/ssl.h... yes" and
10 "checking for SSL_library_init in -lssl... yes"
11
12If not, you don't have SSL installed into your crosscompiling chain. Thats bad.
13SSL is strongly needed!
14
155. Check the file Rules in top-srcdir. There is a line
16 "CFLAGS = -O2 -W -Wall -g -DDEBUG -DHAVE_CONFIG_H"
17
18 remove the -g option
19
20For remote debugging this is not required, but the local copy must contain debug
21code for that.
22
236. make, make install
24 Now you should find libetpan in /usr/local/arm/2.95.3/arm-linux/lib
25
26If you're using other pathes then you should give that of course instead of 2.95.3.
27
28Alwin
29