summaryrefslogtreecommitdiff
path: root/philip-make.sh
blob: 50db10ee1b71aa83ba5362a0b989c03ce743e9b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/bash

# my build of Lynx with hardcoded 
# mime type treatment removed
# see src/HTInit.c

make clean
rm config.cache

./configure \
    --prefix="/usr" \
    --sysconfdir="/etc" \
    --mandir="/usr/share/man" \
    --with-ssl="/usr" \
    --enable-ipv6 \
    --enable-externs \
    --enable-nls

make
    
doas make install