source: branches/r9/pkgs/optimizer/configure.in @ 4912

Last change on this file since 4912 was 4912, checked in by gah, 9 years ago
File size: 507 bytes
Line 
1AC_INIT
2AC_PREFIX
3AC_CANONICAL_TARGET
4
5if test "${prefix}" = "NONE"; then
6    prefix=/usr/local
7fi
8if test "${exec_prefix}" = "NONE"; then
9    exec_prefix=$prefix
10fi
11libdir=${exec_prefix}/lib
12includedir=${prefix}/include
13PATH=${exec_prefix}/bin:$PATH
14
15. ${libdir}/tclConfig.sh
16
17rm -rf *
18tar -C ${srcdir}/src -clf - . | tar -xpf -
19
20tclsh=${bindir}/tclsh
21
22./configure \
23            --with-tclsh=$tclsh \
24            --enable-shared \
25            --disable-threads \
26            --prefix=$exec_prefix \
27            --exec_prefix=$exec_prefix
28
Note: See TracBrowser for help on using the repository browser.