Changeset 2176
- Timestamp:
- 06/15/07 14:53:57
- Files:
-
- trunk/docs/building.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docs/building.txt
r2080 r2176 133 133 ./autogen.sh --prefix=/opt/tinymail --enable-asyncworker --enable-tests --enable-unit-tests && make && sudo make install 134 134 135 Typical for development 136 ----------------------- 137 CFLAGS="-DDEBUG -DDBC -O0 -Wstrict-prototypes -Wall -g -ggdb" ./autogen.sh --prefix=/opt/tinymail --with-platform=maemo --with-ssl=openssl && make && make install 138 139 You typically compile E-mail clients this way now: 140 PKG_CONFIG_PATH=/opt/tinymail/lib/pkgconfig/ ./autogen --prefix=/opt/myclient --with-platform=maemo 141 135 142 SSL support 136 143 ----------- 137 144 If you want to build with support for SSL, you can either choose for Mozilla's NSS or OpenSSL: 138 145 139 --with-ssl=nssDetect NSS and if available, use it140 --with-ssl=nss -must Require NSS and if not available, fail the build141 --with-ssl=openssl Detect OpenSSL and if available, use it146 Default Detect NSS and if available, use it 147 --with-ssl=nss Use NSS 148 --with-ssl=openssl Use OpenSSL 142 149 --with-ssl=none Do NOT detect any SSL, and DON'T use it 143 150 151
