ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/reconf
Revision: 1.41
Committed: Sun Feb 20 19:45:30 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-5_3
Changes since 1.40: +7 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/bin/sh
2
3 # this is the configure script I use. It represents most of the features I
4 # support and is a good baseline :)
5
6 # just set some compiler options
7 if [ "x$HOSTNAME" = xcerebro -o "x$HOSTNAME" = xfuji ]; then
8 CC=ccache\ gcc-3.4
9 CXX=ccache\ g++-3.4
10 export CC CXX
11 fi
12
13 ./configure --prefix=/opt/rxvt --enable-utmp \
14 --enable-wtmp --enable-lastlog --disable-strings --enable-xim \
15 --disable-keepscrolling --enable-xft --enable-mousewheel \
16 --with-name=rxvt --enable-selectionscrolling --enable-pointer-blank \
17 --enable-frills --enable-swapscreen --enable-transparency --enable-slipwheeling \
18 --with-codesets=zh,jp,kr --enable-menubar --enable-tinting \
19 --enable-cursor-blink --enable-text-blink --enable-fading \
20 --enable-plain-scroll --enable-rxvt-scroll --enable-combining --enable-iso14755 \
21 --enable-font-styles --enable-xpm-background --enable-xgetdefault \
22 --enable-next-scroll --enable-xterm-scroll \
23 "$@"