root / makewin32.sh @ 2601
History | View | Annotate | Download (311 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 | 2278 | hiro | --enable-oniguruma --enable-threads --disable-ipv6 \ |
| 8 | 980 | hiro | 'CC=gcc -mtune=pentium3' CFLAGS=-O3 \ |
| 9 | 622 | hiro | && make \ |
| 10 | 2164 | hiro | && make install-strip |