File: configure.in

package info (click to toggle)
otcl 1.14~RC2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 792 kB
  • ctags: 182
  • sloc: sh: 2,825; ansic: 1,949; tcl: 825; makefile: 114; perl: 49
file content (32 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
AC_INIT(otcl.c)

#XXX
V_PROG="otclsh"
V_ALL="$V_PROG"
V_SHM="-DUSE_SHM"

builtin(include, ./conf/configure.in.fns)

builtin(include, ./conf/configure.in.head)
builtin(include, ./conf/configure.in.tcl)
builtin(include, ./conf/configure.in.tk)
builtin(include, ./conf/configure.in.x11)

# These must follow configure.in.head because they mess
# with $*.
AC_PROG_RANLIB
AC_PROG_INSTALL

builtin(include, ./conf/configure.in.dynamic)
#
# decide where to install the shared library
#

INST_OLIBSH="${prefix}/lib"
if test -d ${prefix}/shlib ; then
  INST_OLIBSH="${prefix}/shlib"
fi
AC_SUBST(INST_OLIBSH)

NS_FNS_TAIL
builtin(include, ./conf/configure.in.tail)