Overview
| Comment: | configure.in |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e356777f67c0d3f11e13d37fea94e470 |
| User & Date: | johannes@zellner.org on 1999-08-23 09:17:34.000 |
| Other Links: | manifest | tags |
Context
|
1999-08-23
| ||
| 15:51 | Modified Files: Makefile.in README configure.in sample.tclshrc tclreadlineSetup.tcl.in check-in: 46ef5876f1 user: johannes@zellner.org tags: trunk | |
| 09:17 | configure.in check-in: e356777f67 user: johannes@zellner.org tags: trunk | |
|
1999-08-22
| ||
| 23:09 | Modified Files: .tclshrc src/tclreadline/sample.tclshrc src/tclreadline/tclreadlineSetup.tcl.in Added Files: src/tclreadline/Makefile.in src/tclreadline/tclreadline.c src/tclreadline/tclreadlineConfig.sh.in src/tclreadline/tclreadlineInit.tcl.in check-in: 32bab3b327 user: johannes@zellner.org tags: trunk | |
Changes
Modified configure.in
from [fc7ee17026]
to [bb83c845d2].
1 | # -*- autoconf -*- | | | | 1 2 3 4 5 6 7 8 9 10 | # -*- autoconf -*- # FILE: "/diska/home/joze/src/tclreadline/configure.in" # LAST MODIFICATION: "Mon Aug 23 10:59:40 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
| ︙ | ︙ | |||
53 54 55 56 57 58 59 |
#--------------------------------------------------------------------
# See if there was a command-line option for where Tcl is; if
# not, search for Tcl.
#--------------------------------------------------------------------
AC_ARG_WITH(
tcl,
| | | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
#--------------------------------------------------------------------
# See if there was a command-line option for where Tcl is; if
# not, search for Tcl.
#--------------------------------------------------------------------
AC_ARG_WITH(
tcl,
[ --with-tcl=DIR where to look for tclConfig.sh],
tcl_search=$withval,
tcl_search=""
)
AC_MSG_CHECKING([which tclConfig.sh to use])
TCL_LIB_DIR=""
for dir in $tcl_search /usr/lib /usr/local/lib $exec_prefix/lib /usr/local/lib/unix; do
|
| ︙ | ︙ |