File: reconf

package info (click to toggle)
rxvt-unicode 7.9-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,312 kB
  • ctags: 4,499
  • sloc: ansic: 37,552; cpp: 17,600; sh: 2,916; perl: 2,035; makefile: 1,834
file content (15 lines) | stat: -rwxr-xr-x 392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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-4.0
   CXX=ccache\ g++-4.0
   export CC CXX
   unset CXXFLAGS CFLAGS
fi

./configure --prefix=/opt/rxvt --with-name=rxvt --enable-menubar \
            "$@"