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