~ubuntu-branches/ubuntu/trusty/expect/trusty

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2006-10-01 22:23:00 UTC
  • mfrom: (2.1.7 edgy)
  • Revision ID: james.westby@ubuntu.com-20061001222300-08nd1wqc92mxggdq
Tags: 5.43.0-8
* Added patch from Niko Tyni <ntyni@iki.fi> to fix static library name on
  alpha, mips and mipsel (Closes: #390366).
* Added *.so symlink (Closes: #390365).

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
# note when updating version numbers here, also update pkgIndex.in (see
11
11
# comments in Makefile)
12
12
EXP_MAJOR_VERSION=5
13
 
EXP_MINOR_VERSION=42
14
 
EXP_MICRO_VERSION=1
 
13
EXP_MINOR_VERSION=43
 
14
EXP_MICRO_VERSION=0
15
15
EXP_VERSION=$EXP_MAJOR_VERSION.$EXP_MINOR_VERSION
16
16
EXP_VERSION_NODOTS=$EXP_MAJOR_VERSION$EXP_MINOR_VERSION
17
17
EXP_VERSION_FULL=$EXP_VERSION.$EXP_MICRO_VERSION
319
319
  AC_MSG_RESULT(unshared)
320
320
fi
321
321
 
322
 
# now see if we can/should use Tcl stubs
323
 
AC_MSG_CHECKING([whether to use Tcl stubs])
324
 
AC_ARG_ENABLE(stubs,
325
 
        [  --enable-stubs     use Tcl stubs, if available],
326
 
        [enable_stubs=$enableval], [enable_stubs=no])
327
 
if test "$enable_shared" = "yes" && test "$enable_stubs" = "yes" && test "x${TCL_SUPPORTS_STUBS}" = "x1"; then
328
 
  AC_MSG_RESULT(yes)
329
 
  EXP_CFLAGS="$EXP_CFLAGS -DUSE_TCL_STUBS"
330
 
else
331
 
  AC_MSG_RESULT(no)
332
 
fi
333
 
 
334
322
#
335
323
# Now that we've found the Tcl sources, configure the debugger
336
324
# this is a little tricky because it has its own configure script
1186
1174
else
1187
1175
        # seems a little strange to build in Tcl's build-lib, but
1188
1176
        # that's what Tk does.
1189
 
        if test "$enable_stubs" = "yes"; then
1190
 
          EXP_SHLIB_LD_LIBS="$TCL_BUILD_STUB_LIB_SPEC $TCL_DL_LIBS $LIBS $LIBS -lc"
1191
 
        else
1192
 
          EXP_SHLIB_LD_LIBS="$TCL_BUILD_LIB_SPEC $TCL_DL_LIBS $LIBS -lc"
1193
 
        fi
 
1177
        EXP_SHLIB_LD_LIBS="$TCL_BUILD_LIB_SPEC $TCL_DL_LIBS $LIBS -lc"
1194
1178
fi
1195
1179
 
1196
1180
#--------------------------------------------------------------------