--- rxvt-unicode/reconf 2003/11/24 17:28:07 1.1 +++ rxvt-unicode/reconf 2006/10/23 16:37:00 1.52 @@ -1,6 +1,15 @@ -./configure --prefix=/opt/rxvt --enable-utmp \ - --enable-wtmp --enable-lastlog --enable-xim --disable-strings --enable-xterm-scroll \ - --with-term=xterm --enable-keepscrolling --enable-xft \ - --enable-cursor-blink --enable-frills --disable-swapscreen \ - --with-codesets=eu,jp - #--enable-pointer-blank +#!/bin/sh + +# this is the configure script I use. It represents most of the features I +# support and is a good baseline :) + +# just set some compiler options +if [ "x$HOSTNAME" = xcerebro -o "x$HOSTNAME" = xfuji ]; then + CC=ccache\ gcc + CXX=ccache\ g++ + export CC CXX + unset CXXFLAGS CFLAGS +fi + +./configure --prefix=/opt/rxvt --with-name=rxvt --enable-menubar \ + "$@"