root / makewin32.sh
History | View | Annotate | Download (417 Bytes)
| 1 | #!/bin/sh |
|---|---|
| 2 | |
| 3 | export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib |
| 4 | export C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/local/include |
| 5 | |
| 6 | ./configure --prefix=$HOME/dist --with-localedir=lib/locale \ |
| 7 | --enable-oniguruma --enable-threads \ |
| 8 | 'CC=gcc -mtune=pentium3' CFLAGS=-O3 \ |
| 9 | && make \ |
| 10 | && make install-strip \ |
| 11 | && (cd plugin/attachment_tool; make install-plugin) \ |
| 12 | && strip $HOME/dist/lib/sylpheed/plugins/attachment_tool.dll |