tcl.m4
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:99k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #------------------------------------------------------------------------
  2. # SC_PATH_TCLCONFIG --
  3. #
  4. # Locate the tclConfig.sh file and perform a sanity check on
  5. # the Tcl compile flags
  6. #
  7. # Arguments:
  8. # none
  9. #
  10. # Results:
  11. #
  12. # Adds the following arguments to configure:
  13. # --with-tcl=...
  14. #
  15. # Defines the following vars:
  16. # TCL_BIN_DIR Full path to the directory containing
  17. # the tclConfig.sh file
  18. #------------------------------------------------------------------------
  19. AC_DEFUN([SC_PATH_TCLCONFIG], [
  20.     #
  21.     # Ok, lets find the tcl configuration
  22.     # First, look for one uninstalled.
  23.     # the alternative search directory is invoked by --with-tcl
  24.     #
  25.     if test x"${no_tcl}" = x ; then
  26. # we reset no_tcl in case something fails here
  27. no_tcl=true
  28. AC_ARG_WITH(tcl, [  --with-tcl              directory containing tcl configuration (tclConfig.sh)], with_tclconfig=${withval})
  29. AC_MSG_CHECKING([for Tcl configuration])
  30. AC_CACHE_VAL(ac_cv_c_tclconfig,[
  31.     # First check to see if --with-tcl was specified.
  32.     if test x"${with_tclconfig}" != x ; then
  33. if test -f "${with_tclconfig}/tclConfig.sh" ; then
  34.     ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
  35. else
  36.     AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])
  37. fi
  38.     fi
  39.     # then check for a private Tcl installation
  40.     if test x"${ac_cv_c_tclconfig}" = x ; then
  41. for i in 
  42. ../tcl 
  43. `ls -dr ../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` 
  44. `ls -dr ../tcl[[8-9]].[[0-9]] 2>/dev/null` 
  45. `ls -dr ../tcl[[8-9]].[[0-9]]* 2>/dev/null` 
  46. ../../tcl 
  47. `ls -dr ../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` 
  48. `ls -dr ../../tcl[[8-9]].[[0-9]] 2>/dev/null` 
  49. `ls -dr ../../tcl[[8-9]].[[0-9]]* 2>/dev/null` 
  50. ../../../tcl 
  51. `ls -dr ../../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` 
  52. `ls -dr ../../../tcl[[8-9]].[[0-9]] 2>/dev/null` 
  53. `ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
  54.     if test -f "$i/unix/tclConfig.sh" ; then
  55. ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
  56. break
  57.     fi
  58. done
  59.     fi
  60.     # on Darwin, check in Framework installation locations
  61.     if test "`uname -s`" = "Darwin" -a x"${ac_cv_c_tclconfig}" = x ; then
  62. for i in `ls -d ~/Library/Frameworks 2>/dev/null` 
  63. `ls -d /Library/Frameworks 2>/dev/null` 
  64. `ls -d /Network/Library/Frameworks 2>/dev/null` 
  65. `ls -d /System/Library/Frameworks 2>/dev/null` 
  66. ; do
  67.     if test -f "$i/Tcl.framework/tclConfig.sh" ; then
  68. ac_cv_c_tclconfig=`(cd $i/Tcl.framework; pwd)`
  69. break
  70.     fi
  71. done
  72.     fi
  73.     # check in a few common install locations
  74.     if test x"${ac_cv_c_tclconfig}" = x ; then
  75. for i in `ls -d ${libdir} 2>/dev/null` 
  76. `ls -d ${exec_prefix}/lib 2>/dev/null` 
  77. `ls -d ${prefix}/lib 2>/dev/null` 
  78. `ls -d /usr/local/lib 2>/dev/null` 
  79. `ls -d /usr/contrib/lib 2>/dev/null` 
  80. `ls -d /usr/lib 2>/dev/null` 
  81. ; do
  82.     if test -f "$i/tclConfig.sh" ; then
  83. ac_cv_c_tclconfig=`(cd $i; pwd)`
  84. break
  85.     fi
  86. done
  87.     fi
  88.     # check in a few other private locations
  89.     if test x"${ac_cv_c_tclconfig}" = x ; then
  90. for i in 
  91. ${srcdir}/../tcl 
  92. `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` 
  93. `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]] 2>/dev/null` 
  94. `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
  95.     if test -f "$i/unix/tclConfig.sh" ; then
  96.     ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
  97.     break
  98. fi
  99. done
  100.     fi
  101. ])
  102. if test x"${ac_cv_c_tclconfig}" = x ; then
  103.     TCL_BIN_DIR="# no Tcl configs found"
  104.     AC_MSG_WARN([Can't find Tcl configuration definitions])
  105.     exit 0
  106. else
  107.     no_tcl=
  108.     TCL_BIN_DIR=${ac_cv_c_tclconfig}
  109.     AC_MSG_RESULT([found ${TCL_BIN_DIR}/tclConfig.sh])
  110. fi
  111.     fi
  112. ])
  113. #------------------------------------------------------------------------
  114. # SC_PATH_TKCONFIG --
  115. #
  116. # Locate the tkConfig.sh file
  117. #
  118. # Arguments:
  119. # none
  120. #
  121. # Results:
  122. #
  123. # Adds the following arguments to configure:
  124. # --with-tk=...
  125. #
  126. # Defines the following vars:
  127. # TK_BIN_DIR Full path to the directory containing
  128. # the tkConfig.sh file
  129. #------------------------------------------------------------------------
  130. AC_DEFUN([SC_PATH_TKCONFIG], [
  131.     #
  132.     # Ok, lets find the tk configuration
  133.     # First, look for one uninstalled.
  134.     # the alternative search directory is invoked by --with-tk
  135.     #
  136.     if test x"${no_tk}" = x ; then
  137. # we reset no_tk in case something fails here
  138. no_tk=true
  139. AC_ARG_WITH(tk, [  --with-tk               directory containing tk configuration (tkConfig.sh)], with_tkconfig=${withval})
  140. AC_MSG_CHECKING([for Tk configuration])
  141. AC_CACHE_VAL(ac_cv_c_tkconfig,[
  142.     # First check to see if --with-tkconfig was specified.
  143.     if test x"${with_tkconfig}" != x ; then
  144. if test -f "${with_tkconfig}/tkConfig.sh" ; then
  145.     ac_cv_c_tkconfig=`(cd ${with_tkconfig}; pwd)`
  146. else
  147.     AC_MSG_ERROR([${with_tkconfig} directory doesn't contain tkConfig.sh])
  148. fi
  149.     fi
  150.     # then check for a private Tk library
  151.     if test x"${ac_cv_c_tkconfig}" = x ; then
  152. for i in 
  153. ../tk 
  154. `ls -dr ../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` 
  155. `ls -dr ../tk[[8-9]].[[0-9]] 2>/dev/null` 
  156. `ls -dr ../tk[[8-9]].[[0-9]]* 2>/dev/null` 
  157. ../../tk 
  158. `ls -dr ../../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` 
  159. `ls -dr ../../tk[[8-9]].[[0-9]] 2>/dev/null` 
  160. `ls -dr ../../tk[[8-9]].[[0-9]]* 2>/dev/null` 
  161. ../../../tk 
  162. `ls -dr ../../../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` 
  163. `ls -dr ../../../tk[[8-9]].[[0-9]] 2>/dev/null` 
  164. `ls -dr ../../../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do
  165.     if test -f "$i/unix/tkConfig.sh" ; then
  166. ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
  167. break
  168.     fi
  169. done
  170.     fi
  171.     # on Darwin, check in Framework installation locations
  172.     if test "`uname -s`" = "Darwin" -a x"${ac_cv_c_tkconfig}" = x ; then
  173. for i in `ls -d ~/Library/Frameworks 2>/dev/null` 
  174. `ls -d /Library/Frameworks 2>/dev/null` 
  175. `ls -d /Network/Library/Frameworks 2>/dev/null` 
  176. `ls -d /System/Library/Frameworks 2>/dev/null` 
  177. ; do
  178.     if test -f "$i/Tk.framework/tkConfig.sh" ; then
  179. ac_cv_c_tkconfig=`(cd $i/Tk.framework; pwd)`
  180. break
  181.     fi
  182. done
  183.     fi
  184.     # check in a few common install locations
  185.     if test x"${ac_cv_c_tkconfig}" = x ; then
  186. for i in `ls -d ${libdir} 2>/dev/null` 
  187. `ls -d ${exec_prefix}/lib 2>/dev/null` 
  188. `ls -d ${prefix}/lib 2>/dev/null` 
  189. `ls -d /usr/local/lib 2>/dev/null` 
  190. `ls -d /usr/contrib/lib 2>/dev/null` 
  191. `ls -d /usr/lib 2>/dev/null` 
  192. ; do
  193.     if test -f "$i/tkConfig.sh" ; then
  194. ac_cv_c_tkconfig=`(cd $i; pwd)`
  195. break
  196.     fi
  197. done
  198.     fi
  199.     # check in a few other private locations
  200.     if test x"${ac_cv_c_tkconfig}" = x ; then
  201. for i in 
  202. ${srcdir}/../tk 
  203. `ls -dr ${srcdir}/../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` 
  204. `ls -dr ${srcdir}/../tk[[8-9]].[[0-9]] 2>/dev/null` 
  205. `ls -dr ${srcdir}/../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do
  206.     if test -f "$i/unix/tkConfig.sh" ; then
  207. ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
  208. break
  209.     fi
  210. done
  211.     fi
  212. ])
  213. if test x"${ac_cv_c_tkconfig}" = x ; then
  214.     TK_BIN_DIR="# no Tk configs found"
  215.     AC_MSG_WARN([Can't find Tk configuration definitions])
  216.     exit 0
  217. else
  218.     no_tk=
  219.     TK_BIN_DIR=${ac_cv_c_tkconfig}
  220.     AC_MSG_RESULT([found ${TK_BIN_DIR}/tkConfig.sh])
  221. fi
  222.     fi
  223. ])
  224. #------------------------------------------------------------------------
  225. # SC_LOAD_TCLCONFIG --
  226. #
  227. # Load the tclConfig.sh file
  228. #
  229. # Arguments:
  230. #
  231. # Requires the following vars to be set:
  232. # TCL_BIN_DIR
  233. #
  234. # Results:
  235. #
  236. # Subst the following vars:
  237. # TCL_BIN_DIR
  238. # TCL_SRC_DIR
  239. # TCL_LIB_FILE
  240. #
  241. #------------------------------------------------------------------------
  242. AC_DEFUN([SC_LOAD_TCLCONFIG], [
  243.     AC_MSG_CHECKING([for existence of ${TCL_BIN_DIR}/tclConfig.sh])
  244.     if test -f "${TCL_BIN_DIR}/tclConfig.sh" ; then
  245.         AC_MSG_RESULT([loading])
  246. . ${TCL_BIN_DIR}/tclConfig.sh
  247.     else
  248.         AC_MSG_RESULT([could not find ${TCL_BIN_DIR}/tclConfig.sh])
  249.     fi
  250.     # eval is required to do the TCL_DBGX substitution
  251.     eval "TCL_LIB_FILE="${TCL_LIB_FILE}""
  252.     eval "TCL_STUB_LIB_FILE="${TCL_STUB_LIB_FILE}""
  253.     # If the TCL_BIN_DIR is the build directory (not the install directory),
  254.     # then set the common variable name to the value of the build variables.
  255.     # For example, the variable TCL_LIB_SPEC will be set to the value
  256.     # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC
  257.     # instead of TCL_BUILD_LIB_SPEC since it will work with both an
  258.     # installed and uninstalled version of Tcl.
  259.     if test -f ${TCL_BIN_DIR}/Makefile ; then
  260.         TCL_LIB_SPEC=${TCL_BUILD_LIB_SPEC}
  261.         TCL_STUB_LIB_SPEC=${TCL_BUILD_STUB_LIB_SPEC}
  262.         TCL_STUB_LIB_PATH=${TCL_BUILD_STUB_LIB_PATH}
  263.     elif test "`uname -s`" = "Darwin"; then
  264. # If Tcl was built as a framework, attempt to use the libraries
  265. # from the framework at the given location so that linking works
  266. # against Tcl.framework installed in an arbitary location.
  267. case ${TCL_DEFS} in
  268.     *TCL_FRAMEWORK*)
  269. if test -f ${TCL_BIN_DIR}/${TCL_LIB_FILE}; then
  270.     for i in "`cd ${TCL_BIN_DIR}; pwd`" 
  271.      "`cd ${TCL_BIN_DIR}/../..; pwd`"; do
  272. if test "`basename "$i"`" = "${TCL_LIB_FILE}.framework"; then
  273.     TCL_LIB_SPEC="-F`dirname "$i"` -framework ${TCL_LIB_FILE}"
  274.     break
  275. fi
  276.     done
  277. fi
  278. if test -f ${TCL_BIN_DIR}/${TCL_STUB_LIB_FILE}; then
  279.     TCL_STUB_LIB_SPEC="-L${TCL_BIN_DIR} ${TCL_STUB_LIB_FLAG}"
  280.     TCL_STUB_LIB_PATH="${TCL_BIN_DIR}/${TCL_STUB_LIB_FILE}"
  281. fi
  282. ;;
  283. esac
  284.     fi
  285.     # eval is required to do the TCL_DBGX substitution
  286.     eval "TCL_LIB_FLAG="${TCL_LIB_FLAG}""
  287.     eval "TCL_LIB_SPEC="${TCL_LIB_SPEC}""
  288.     eval "TCL_STUB_LIB_FLAG="${TCL_STUB_LIB_FLAG}""
  289.     eval "TCL_STUB_LIB_SPEC="${TCL_STUB_LIB_SPEC}""
  290.     AC_SUBST(TCL_VERSION)
  291.     AC_SUBST(TCL_PATCH_LEVEL)
  292.     AC_SUBST(TCL_BIN_DIR)
  293.     AC_SUBST(TCL_SRC_DIR)
  294.     AC_SUBST(TCL_LIB_FILE)
  295.     AC_SUBST(TCL_LIB_FLAG)
  296.     AC_SUBST(TCL_LIB_SPEC)
  297.     AC_SUBST(TCL_STUB_LIB_FILE)
  298.     AC_SUBST(TCL_STUB_LIB_FLAG)
  299.     AC_SUBST(TCL_STUB_LIB_SPEC)
  300. ])
  301. #------------------------------------------------------------------------
  302. # SC_LOAD_TKCONFIG --
  303. #
  304. # Load the tkConfig.sh file
  305. #
  306. # Arguments:
  307. #
  308. # Requires the following vars to be set:
  309. # TK_BIN_DIR
  310. #
  311. # Results:
  312. #
  313. # Sets the following vars that should be in tkConfig.sh:
  314. # TK_BIN_DIR
  315. #------------------------------------------------------------------------
  316. AC_DEFUN([SC_LOAD_TKCONFIG], [
  317.     AC_MSG_CHECKING([for existence of ${TK_BIN_DIR}/tkConfig.sh])
  318.     if test -f "${TK_BIN_DIR}/tkConfig.sh" ; then
  319.         AC_MSG_RESULT([loading])
  320. . ${TK_BIN_DIR}/tkConfig.sh
  321.     else
  322.         AC_MSG_RESULT([could not find ${TK_BIN_DIR}/tkConfig.sh])
  323.     fi
  324.     # eval is required to do the TK_DBGX substitution
  325.     eval "TK_LIB_FILE="${TK_LIB_FILE}""
  326.     eval "TK_STUB_LIB_FILE="${TK_STUB_LIB_FILE}""
  327.     # If the TK_BIN_DIR is the build directory (not the install directory),
  328.     # then set the common variable name to the value of the build variables.
  329.     # For example, the variable TK_LIB_SPEC will be set to the value
  330.     # of TK_BUILD_LIB_SPEC. An extension should make use of TK_LIB_SPEC
  331.     # instead of TK_BUILD_LIB_SPEC since it will work with both an
  332.     # installed and uninstalled version of Tcl.
  333.     if test -f ${TK_BIN_DIR}/Makefile ; then
  334.         TK_LIB_SPEC=${TK_BUILD_LIB_SPEC}
  335.         TK_STUB_LIB_SPEC=${TK_BUILD_STUB_LIB_SPEC}
  336.         TK_STUB_LIB_PATH=${TK_BUILD_STUB_LIB_PATH}
  337.     elif test "`uname -s`" = "Darwin"; then
  338. # If Tk was built as a framework, attempt to use the libraries
  339. # from the framework at the given location so that linking works
  340. # against Tk.framework installed in an arbitary location.
  341. case ${TK_DEFS} in
  342.     *TK_FRAMEWORK*)
  343. if test -f ${TK_BIN_DIR}/${TK_LIB_FILE}; then
  344.     for i in "`cd ${TK_BIN_DIR}; pwd`" 
  345.      "`cd ${TK_BIN_DIR}/../..; pwd`"; do
  346. if test "`basename "$i"`" = "${TK_LIB_FILE}.framework"; then
  347.     TK_LIB_SPEC="-F`dirname "$i"` -framework ${TK_LIB_FILE}"
  348.     break
  349. fi
  350.     done
  351. fi
  352. if test -f ${TK_BIN_DIR}/${TK_STUB_LIB_FILE}; then
  353.     TK_STUB_LIB_SPEC="-L${TK_BIN_DIR} ${TK_STUB_LIB_FLAG}"
  354.     TK_STUB_LIB_PATH="${TK_BIN_DIR}/${TK_STUB_LIB_FILE}"
  355. fi
  356. ;;
  357. esac
  358.     fi
  359.     # eval is required to do the TK_DBGX substitution
  360.     eval "TK_LIB_FLAG="${TK_LIB_FLAG}""
  361.     eval "TK_LIB_SPEC="${TK_LIB_SPEC}""
  362.     eval "TK_STUB_LIB_FLAG="${TK_STUB_LIB_FLAG}""
  363.     eval "TK_STUB_LIB_SPEC="${TK_STUB_LIB_SPEC}""
  364.     AC_SUBST(TK_VERSION)
  365.     AC_SUBST(TK_BIN_DIR)
  366.     AC_SUBST(TK_SRC_DIR)
  367.     AC_SUBST(TK_LIB_FILE)
  368.     AC_SUBST(TK_LIB_FLAG)
  369.     AC_SUBST(TK_LIB_SPEC)
  370.     AC_SUBST(TK_STUB_LIB_FILE)
  371.     AC_SUBST(TK_STUB_LIB_FLAG)
  372.     AC_SUBST(TK_STUB_LIB_SPEC)
  373. ])
  374. #------------------------------------------------------------------------
  375. # SC_PROG_TCLSH
  376. # Locate a tclsh shell installed on the system path. This macro
  377. # will only find a Tcl shell that already exists on the system.
  378. # It will not find a Tcl shell in the Tcl build directory or
  379. # a Tcl shell that has been installed from the Tcl build directory.
  380. # If a Tcl shell can't be located on the PATH, then TCLSH_PROG will
  381. # be set to "". Extensions should take care not to create Makefile
  382. # rules that are run by default and depend on TCLSH_PROG. An
  383. # extension can't assume that an executable Tcl shell exists at
  384. # build time.
  385. #
  386. # Arguments
  387. # none
  388. #
  389. # Results
  390. # Subst's the following values:
  391. # TCLSH_PROG
  392. #------------------------------------------------------------------------
  393. AC_DEFUN([SC_PROG_TCLSH], [
  394.     AC_MSG_CHECKING([for tclsh])
  395.     AC_CACHE_VAL(ac_cv_path_tclsh, [
  396. search_path=`echo ${PATH} | sed -e 's/:/ /g'`
  397. for dir in $search_path ; do
  398.     for j in `ls -r $dir/tclsh[[8-9]]* 2> /dev/null` 
  399.     `ls -r $dir/tclsh* 2> /dev/null` ; do
  400. if test x"$ac_cv_path_tclsh" = x ; then
  401.     if test -f "$j" ; then
  402. ac_cv_path_tclsh=$j
  403. break
  404.     fi
  405. fi
  406.     done
  407. done
  408.     ])
  409.     if test -f "$ac_cv_path_tclsh" ; then
  410. TCLSH_PROG="$ac_cv_path_tclsh"
  411. AC_MSG_RESULT([$TCLSH_PROG])
  412.     else
  413. # It is not an error if an installed version of Tcl can't be located.
  414. TCLSH_PROG=""
  415. AC_MSG_RESULT([No tclsh found on PATH])
  416.     fi
  417.     AC_SUBST(TCLSH_PROG)
  418. ])
  419. #------------------------------------------------------------------------
  420. # SC_BUILD_TCLSH
  421. # Determine the fully qualified path name of the tclsh executable
  422. # in the Tcl build directory. This macro will correctly determine
  423. # the name of the tclsh executable even if tclsh has not yet
  424. # been built in the build directory. The build tclsh must be used
  425. # when running tests from an extension build directory. It is not
  426. # correct to use the TCLSH_PROG in cases like this.
  427. #
  428. # Arguments
  429. # none
  430. #
  431. # Results
  432. # Subst's the following values:
  433. # BUILD_TCLSH
  434. #------------------------------------------------------------------------
  435. AC_DEFUN([SC_BUILD_TCLSH], [
  436.     AC_MSG_CHECKING([for tclsh in Tcl build directory])
  437.     BUILD_TCLSH=${TCL_BIN_DIR}/tclsh
  438.     AC_MSG_RESULT([$BUILD_TCLSH])
  439.     AC_SUBST(BUILD_TCLSH)
  440. ])
  441. #------------------------------------------------------------------------
  442. # SC_ENABLE_SHARED --
  443. #
  444. # Allows the building of shared libraries
  445. #
  446. # Arguments:
  447. # none
  448. #
  449. # Results:
  450. #
  451. # Adds the following arguments to configure:
  452. # --enable-shared=yes|no
  453. #
  454. # Defines the following vars:
  455. # STATIC_BUILD Used for building import/export libraries
  456. # on Windows.
  457. #
  458. # Sets the following vars:
  459. # SHARED_BUILD Value of 1 or 0
  460. #------------------------------------------------------------------------
  461. AC_DEFUN([SC_ENABLE_SHARED], [
  462.     AC_MSG_CHECKING([how to build libraries])
  463.     AC_ARG_ENABLE(shared,
  464. [  --enable-shared         build and link with shared libraries [--enable-shared]],
  465. [tcl_ok=$enableval], [tcl_ok=yes])
  466.     if test "${enable_shared+set}" = set; then
  467. enableval="$enable_shared"
  468. tcl_ok=$enableval
  469.     else
  470. tcl_ok=yes
  471.     fi
  472.     if test "$tcl_ok" = "yes" ; then
  473. AC_MSG_RESULT([shared])
  474. SHARED_BUILD=1
  475.     else
  476. AC_MSG_RESULT([static])
  477. SHARED_BUILD=0
  478. AC_DEFINE(STATIC_BUILD)
  479.     fi
  480. ])
  481. #------------------------------------------------------------------------
  482. # SC_ENABLE_FRAMEWORK --
  483. #
  484. # Allows the building of shared libraries into frameworks
  485. #
  486. # Arguments:
  487. # none
  488. #
  489. # Results:
  490. #
  491. # Adds the following arguments to configure:
  492. # --enable-framework=yes|no
  493. #
  494. # Sets the following vars:
  495. # FRAMEWORK_BUILD Value of 1 or 0
  496. #------------------------------------------------------------------------
  497. AC_DEFUN([SC_ENABLE_FRAMEWORK], [
  498.     if test "`uname -s`" = "Darwin" ; then
  499. AC_MSG_CHECKING([how to package libraries])
  500. AC_ARG_ENABLE(framework,
  501.     [  --enable-framework      package shared libraries in MacOSX frameworks [--disable-framework]],
  502.     [enable_framework=$enableval], [enable_framework=no])
  503. if test $enable_framework = yes; then
  504.     if test $SHARED_BUILD = 0; then
  505. AC_MSG_WARN([Frameworks can only be built if --enable-shared is yes])
  506. enable_framework=no
  507.     fi
  508.     if test $tcl_corefoundation = no; then
  509. AC_MSG_WARN([Frameworks can only be used when CoreFoundation is available])
  510. enable_framework=no
  511.     fi
  512. fi
  513. if test $enable_framework = yes; then
  514.     AC_MSG_RESULT([framework])
  515.     FRAMEWORK_BUILD=1
  516. else
  517.     if test $SHARED_BUILD = 1; then
  518. AC_MSG_RESULT([shared library])
  519.     else
  520. AC_MSG_RESULT([static library])
  521.     fi
  522.     FRAMEWORK_BUILD=0
  523. fi
  524.     fi
  525. ])
  526. #------------------------------------------------------------------------
  527. # SC_ENABLE_THREADS --
  528. #
  529. # Specify if thread support should be enabled.  TCL_THREADS is
  530. # checked so that if you are compiling an extension against a
  531. # threaded core, your extension must be compiled threaded as well.
  532. #
  533. # Arguments:
  534. # none
  535. #
  536. # Results:
  537. #
  538. # Adds the following arguments to configure:
  539. # --enable-threads
  540. #
  541. # Sets the following vars:
  542. # THREADS_LIBS Thread library(s)
  543. #
  544. # Defines the following vars:
  545. # TCL_THREADS
  546. # _REENTRANT
  547. # _THREAD_SAFE
  548. #
  549. #------------------------------------------------------------------------
  550. AC_DEFUN([SC_ENABLE_THREADS], [
  551.     AC_ARG_ENABLE(threads, [  --enable-threads        build with threads],
  552. [tcl_ok=$enableval], [tcl_ok=no])
  553.     if test "${TCL_THREADS}" = 1; then
  554. tcl_threaded_core=1;
  555.     fi
  556.     if test "$tcl_ok" = "yes" -o "${TCL_THREADS}" = 1; then
  557. TCL_THREADS=1
  558. # USE_THREAD_ALLOC tells us to try the special thread-based
  559. # allocator that significantly reduces lock contention
  560. AC_DEFINE(USE_THREAD_ALLOC)
  561. AC_DEFINE(_REENTRANT)
  562. if test "`uname -s`" = "SunOS" ; then
  563.     AC_DEFINE(_POSIX_PTHREAD_SEMANTICS)
  564. fi
  565. AC_DEFINE(_THREAD_SAFE)
  566. AC_CHECK_LIB(pthread,pthread_mutex_init,tcl_ok=yes,tcl_ok=no)
  567. if test "$tcl_ok" = "no"; then
  568.     # Check a little harder for __pthread_mutex_init in the same
  569.     # library, as some systems hide it there until pthread.h is
  570.     # defined.  We could alternatively do an AC_TRY_COMPILE with
  571.     # pthread.h, but that will work with libpthread really doesn't
  572.     # exist, like AIX 4.2.  [Bug: 4359]
  573.     AC_CHECK_LIB(pthread, __pthread_mutex_init,
  574. tcl_ok=yes, tcl_ok=no)
  575. fi
  576. if test "$tcl_ok" = "yes"; then
  577.     # The space is needed
  578.     THREADS_LIBS=" -lpthread"
  579. else
  580.     AC_CHECK_LIB(pthreads, pthread_mutex_init,
  581. tcl_ok=yes, tcl_ok=no)
  582.     if test "$tcl_ok" = "yes"; then
  583. # The space is needed
  584. THREADS_LIBS=" -lpthreads"
  585.     else
  586. AC_CHECK_LIB(c, pthread_mutex_init,
  587.     tcl_ok=yes, tcl_ok=no)
  588. if test "$tcl_ok" = "no"; then
  589.     AC_CHECK_LIB(c_r, pthread_mutex_init,
  590. tcl_ok=yes, tcl_ok=no)
  591.     if test "$tcl_ok" = "yes"; then
  592. # The space is needed
  593. THREADS_LIBS=" -pthread"
  594.     else
  595. TCL_THREADS=0
  596. AC_MSG_WARN([Don't know how to find pthread lib on your system - you must disable thread support or edit the LIBS in the Makefile...])
  597.     fi
  598. fi
  599.     fi
  600. fi
  601. # Does the pthread-implementation provide
  602. # 'pthread_attr_setstacksize' ?
  603. ac_saved_libs=$LIBS
  604. LIBS="$LIBS $THREADS_LIBS"
  605. AC_CHECK_FUNCS(pthread_attr_setstacksize)
  606. AC_CHECK_FUNCS(pthread_atfork)
  607. LIBS=$ac_saved_libs
  608.     else
  609. TCL_THREADS=0
  610.     fi
  611.     # Do checking message here to not mess up interleaved configure output
  612.     AC_MSG_CHECKING([for building with threads])
  613.     if test "${TCL_THREADS}" = 1; then
  614. AC_DEFINE(TCL_THREADS, 1, [Are we building with threads enabled?])
  615. if test "${tcl_threaded_core}" = 1; then
  616.     AC_MSG_RESULT([yes (threaded core)])
  617. else
  618.     AC_MSG_RESULT([yes])
  619. fi
  620.     else
  621. AC_MSG_RESULT([no (default)])
  622.     fi
  623.     AC_SUBST(TCL_THREADS)
  624. ])
  625. #------------------------------------------------------------------------
  626. # SC_ENABLE_SYMBOLS --
  627. #
  628. # Specify if debugging symbols should be used.
  629. # Memory (TCL_MEM_DEBUG) and compile (TCL_COMPILE_DEBUG) debugging
  630. # can also be enabled.
  631. #
  632. # Arguments:
  633. # none
  634. #
  635. # Requires the following vars to be set in the Makefile:
  636. # CFLAGS_DEBUG
  637. # CFLAGS_OPTIMIZE
  638. # LDFLAGS_DEBUG
  639. # LDFLAGS_OPTIMIZE
  640. #
  641. # Results:
  642. #
  643. # Adds the following arguments to configure:
  644. # --enable-symbols
  645. #
  646. # Defines the following vars:
  647. # CFLAGS_DEFAULT Sets to $(CFLAGS_DEBUG) if true
  648. # Sets to $(CFLAGS_OPTIMIZE) if false
  649. # LDFLAGS_DEFAULT Sets to $(LDFLAGS_DEBUG) if true
  650. # Sets to $(LDFLAGS_OPTIMIZE) if false
  651. # DBGX Debug library extension
  652. #
  653. #------------------------------------------------------------------------
  654. AC_DEFUN([SC_ENABLE_SYMBOLS], [
  655.     AC_MSG_CHECKING([for build with symbols])
  656.     AC_ARG_ENABLE(symbols, [  --enable-symbols        build with debugging symbols [--disable-symbols]],    [tcl_ok=$enableval], [tcl_ok=no])
  657. # FIXME: Currently, LDFLAGS_DEFAULT is not used, it should work like CFLAGS_DEFAULT.
  658.     if test "$tcl_ok" = "no"; then
  659. CFLAGS_DEFAULT='$(CFLAGS_OPTIMIZE)'
  660. LDFLAGS_DEFAULT='$(LDFLAGS_OPTIMIZE)'
  661. DBGX=""
  662. AC_MSG_RESULT([no])
  663.     else
  664. CFLAGS_DEFAULT='$(CFLAGS_DEBUG)'
  665. LDFLAGS_DEFAULT='$(LDFLAGS_DEBUG)'
  666. DBGX=g
  667. if test "$tcl_ok" = "yes"; then
  668.     AC_MSG_RESULT([yes (standard debugging)])
  669. fi
  670.     fi
  671.     AC_SUBST(CFLAGS_DEFAULT)
  672.     AC_SUBST(LDFLAGS_DEFAULT)
  673.     if test "$tcl_ok" = "mem" -o "$tcl_ok" = "all"; then
  674. AC_DEFINE(TCL_MEM_DEBUG)
  675.     fi
  676.     if test "$tcl_ok" = "compile" -o "$tcl_ok" = "all"; then
  677. AC_DEFINE(TCL_COMPILE_DEBUG)
  678. AC_DEFINE(TCL_COMPILE_STATS)
  679.     fi
  680.     if test "$tcl_ok" != "yes" -a "$tcl_ok" != "no"; then
  681. if test "$tcl_ok" = "all"; then
  682.     AC_MSG_RESULT([enabled symbols mem compile debugging])
  683. else
  684.     AC_MSG_RESULT([enabled $tcl_ok debugging])
  685. fi
  686.     fi
  687. ])
  688. #------------------------------------------------------------------------
  689. # SC_ENABLE_LANGINFO --
  690. #
  691. # Allows use of modern nl_langinfo check for better l10n.
  692. # This is only relevant for Unix.
  693. #
  694. # Arguments:
  695. # none
  696. #
  697. # Results:
  698. #
  699. # Adds the following arguments to configure:
  700. # --enable-langinfo=yes|no (default is yes)
  701. #
  702. # Defines the following vars:
  703. # HAVE_LANGINFO Triggers use of nl_langinfo if defined.
  704. #
  705. #------------------------------------------------------------------------
  706. AC_DEFUN([SC_ENABLE_LANGINFO], [
  707.     AC_ARG_ENABLE(langinfo,
  708. [  --enable-langinfo   use nl_langinfo if possible to determine
  709.   encoding at startup, otherwise use old heuristic],
  710. [langinfo_ok=$enableval], [langinfo_ok=yes])
  711.     HAVE_LANGINFO=0
  712.     if test "$langinfo_ok" = "yes"; then
  713. AC_CHECK_HEADER(langinfo.h,[langinfo_ok=yes],[langinfo_ok=no])
  714.     fi
  715.     AC_MSG_CHECKING([whether to use nl_langinfo])
  716.     if test "$langinfo_ok" = "yes"; then
  717. AC_CACHE_VAL(tcl_cv_langinfo_h, [
  718.     AC_TRY_COMPILE([#include <langinfo.h>], [nl_langinfo(CODESET);],
  719.     [tcl_cv_langinfo_h=yes],[tcl_cv_langinfo_h=no])])
  720. AC_MSG_RESULT([$tcl_cv_langinfo_h])
  721. if test $tcl_cv_langinfo_h = yes; then
  722.     AC_DEFINE(HAVE_LANGINFO)
  723. fi
  724.     else 
  725. AC_MSG_RESULT([$langinfo_ok])
  726.     fi
  727. ])
  728. #--------------------------------------------------------------------
  729. # SC_CONFIG_MANPAGES
  730. #
  731. # Decide whether to use symlinks for linking the manpages,
  732. # whether to compress the manpages after installation, and
  733. # whether to add a package name suffix to the installed
  734. # manpages to avoidfile name clashes.
  735. # If compression is enabled also find out what file name suffix
  736. # the given compression program is using.
  737. #
  738. # Arguments:
  739. # none
  740. #
  741. # Results:
  742. #
  743. # Adds the following arguments to configure:
  744. # --enable-man-symlinks
  745. # --enable-man-compression=PROG
  746. # --enable-man-suffix[=STRING]
  747. #
  748. # Defines the following variable:
  749. #
  750. # MAN_FLAGS - The apropriate flags for installManPage
  751. # according to the user's selection.
  752. #
  753. #--------------------------------------------------------------------
  754. AC_DEFUN([SC_CONFIG_MANPAGES], [
  755.     AC_MSG_CHECKING([whether to use symlinks for manpages])
  756.     AC_ARG_ENABLE(man-symlinks,
  757.     [  --enable-man-symlinks   use symlinks for the manpages],
  758. test "$enableval" != "no" && MAN_FLAGS="$MAN_FLAGS --symlinks",
  759. enableval="no")
  760.     AC_MSG_RESULT([$enableval])
  761.     AC_MSG_CHECKING([whether to compress the manpages])
  762.     AC_ARG_ENABLE(man-compression,
  763.     [  --enable-man-compression=PROG
  764.       compress the manpages with PROG],
  765. [case $enableval in
  766.     yes) AC_MSG_ERROR([missing argument to --enable-man-compression]);;
  767.     no)  ;;
  768.     *)   MAN_FLAGS="$MAN_FLAGS --compress $enableval";;
  769. esac],
  770. enableval="no")
  771.     AC_MSG_RESULT([$enableval])
  772.     if test "$enableval" != "no"; then
  773. AC_MSG_CHECKING([for compressed file suffix])
  774. touch TeST
  775. $enableval TeST
  776. Z=`ls TeST* | sed 's/^....//'`
  777. rm -f TeST*
  778. MAN_FLAGS="$MAN_FLAGS --extension $Z"
  779. AC_MSG_RESULT([$Z])
  780.     fi
  781.     AC_MSG_CHECKING([whether to add a package name suffix for the manpages])
  782.     AC_ARG_ENABLE(man-suffix,
  783.     [  --enable-man-suffix=STRING
  784.       use STRING as a suffix to manpage file names
  785.       (default: $1)],
  786. [case $enableval in
  787.     yes) enableval="$1" MAN_FLAGS="$MAN_FLAGS --suffix $enableval";;
  788.     no)  ;;
  789.     *)   MAN_FLAGS="$MAN_FLAGS --suffix $enableval";;
  790. esac],
  791. enableval="no")
  792.     AC_MSG_RESULT([$enableval])
  793.     AC_SUBST(MAN_FLAGS)
  794. ])
  795. #--------------------------------------------------------------------
  796. # SC_CONFIG_SYSTEM
  797. #
  798. # Determine what the system is (some things cannot be easily checked
  799. # on a feature-driven basis, alas). This can usually be done via the
  800. # "uname" command, but there are a few systems, like Next, where
  801. # this doesn't work.
  802. #
  803. # Arguments:
  804. # none
  805. #
  806. # Results:
  807. # Defines the following var:
  808. #
  809. # system - System/platform/version identification code.
  810. #
  811. #--------------------------------------------------------------------
  812. AC_DEFUN([SC_CONFIG_SYSTEM], [
  813.     AC_CACHE_CHECK([system version], tcl_cv_sys_version, [
  814. if test -f /usr/lib/NextStep/software_version; then
  815.     tcl_cv_sys_version=NEXTSTEP-`awk '/3/,/3/' /usr/lib/NextStep/software_version`
  816. else
  817.     tcl_cv_sys_version=`uname -s`-`uname -r`
  818.     if test "$?" -ne 0 ; then
  819. AC_MSG_WARN([can't find uname command])
  820. tcl_cv_sys_version=unknown
  821.     else
  822. # Special check for weird MP-RAS system (uname returns weird
  823. # results, and the version is kept in special file).
  824. if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
  825.     tcl_cv_sys_version=MP-RAS-`awk '{print $[3]}' /etc/.relid`
  826. fi
  827. if test "`uname -s`" = "AIX" ; then
  828.     tcl_cv_sys_version=AIX-`uname -v`.`uname -r`
  829. fi
  830.     fi
  831. fi
  832.     ])
  833.     system=$tcl_cv_sys_version
  834. ])
  835. #--------------------------------------------------------------------
  836. # SC_CONFIG_CFLAGS
  837. #
  838. # Try to determine the proper flags to pass to the compiler
  839. # for building shared libraries and other such nonsense.
  840. #
  841. # Arguments:
  842. # none
  843. #
  844. # Results:
  845. #
  846. # Defines and substitutes the following vars:
  847. #
  848. #       DL_OBJS -       Name of the object file that implements dynamic
  849. #                       loading for Tcl on this system.
  850. #       DL_LIBS -       Library file(s) to include in tclsh and other base
  851. #                       applications in order for the "load" command to work.
  852. #       LDFLAGS -      Flags to pass to the compiler when linking object
  853. #                       files into an executable application binary such
  854. #                       as tclsh.
  855. #       LD_SEARCH_FLAGS-Flags to pass to ld, such as "-R /usr/local/tcl/lib",
  856. #                       that tell the run-time dynamic linker where to look
  857. #                       for shared libraries such as libtcl.so.  Depends on
  858. #                       the variable LIB_RUNTIME_DIR in the Makefile. Could
  859. #                       be the same as CC_SEARCH_FLAGS if ${CC} is used to link.
  860. #       CC_SEARCH_FLAGS-Flags to pass to ${CC}, such as "-Wl,-rpath,/usr/local/tcl/lib",
  861. #                       that tell the run-time dynamic linker where to look
  862. #                       for shared libraries such as libtcl.so.  Depends on
  863. #                       the variable LIB_RUNTIME_DIR in the Makefile.
  864. #       MAKE_LIB -      Command to execute to build the a library;
  865. #                       differs when building shared or static.
  866. #       MAKE_STUB_LIB -
  867. #                       Command to execute to build a stub library.
  868. #       INSTALL_LIB -   Command to execute to install a library;
  869. #                       differs when building shared or static.
  870. #       INSTALL_STUB_LIB -
  871. #                       Command to execute to install a stub library.
  872. #       STLIB_LD -      Base command to use for combining object files
  873. #                       into a static library.
  874. #       SHLIB_CFLAGS -  Flags to pass to cc when compiling the components
  875. #                       of a shared library (may request position-independent
  876. #                       code, among other things).
  877. #       SHLIB_LD -      Base command to use for combining object files
  878. #                       into a shared library.
  879. #       SHLIB_LD_LIBS - Dependent libraries for the linker to scan when
  880. #                       creating shared libraries.  This symbol typically
  881. #                       goes at the end of the "ld" commands that build
  882. #                       shared libraries. The value of the symbol is
  883. #                       "${LIBS}" if all of the dependent libraries should
  884. #                       be specified when creating a shared library.  If
  885. #                       dependent libraries should not be specified (as on
  886. #                       SunOS 4.x, where they cause the link to fail, or in
  887. #                       general if Tcl and Tk aren't themselves shared
  888. #                       libraries), then this symbol has an empty string
  889. #                       as its value.
  890. #       SHLIB_SUFFIX -  Suffix to use for the names of dynamically loadable
  891. #                       extensions.  An empty string means we don't know how
  892. #                       to use shared libraries on this platform.
  893. # TCL_SHLIB_LD_EXTRAS - Additional element which are added to SHLIB_LD_LIBS
  894. #  TK_SHLIB_LD_EXTRAS   for the build of Tcl and Tk, but not recorded in the
  895. #                       tclConfig.sh, since they are only used for the build
  896. #                       of Tcl and Tk. 
  897. #                       Examples: MacOS X records the library version and
  898. #                       compatibility version in the shared library.  But
  899. #                       of course the Tcl version of this is only used for Tcl.
  900. #       LIB_SUFFIX -    Specifies everything that comes after the "libfoo"
  901. #                       in a static or shared library name, using the $VERSION variable
  902. #                       to put the version in the right place.  This is used
  903. #                       by platforms that need non-standard library names.
  904. #                       Examples:  ${VERSION}.so.1.1 on NetBSD, since it needs
  905. #                       to have a version after the .so, and ${VERSION}.a
  906. #                       on AIX, since a shared library needs to have
  907. #                       a .a extension whereas shared objects for loadable
  908. #                       extensions have a .so extension.  Defaults to
  909. #                       ${VERSION}${SHLIB_SUFFIX}.
  910. #       TCL_NEEDS_EXP_FILE -
  911. #                       1 means that an export file is needed to link to a
  912. #                       shared library.
  913. #       TCL_EXP_FILE -  The name of the installed export / import file which
  914. #                       should be used to link to the Tcl shared library.
  915. #                       Empty if Tcl is unshared.
  916. #       TCL_BUILD_EXP_FILE -
  917. #                       The name of the built export / import file which
  918. #                       should be used to link to the Tcl shared library.
  919. #                       Empty if Tcl is unshared.
  920. # CFLAGS_DEBUG -
  921. # Flags used when running the compiler in debug mode
  922. # CFLAGS_OPTIMIZE -
  923. # Flags used when running the compiler in optimize mode
  924. # CFLAGS - Additional CFLAGS added as necessary (usually 64-bit)
  925. #
  926. #--------------------------------------------------------------------
  927. AC_DEFUN([SC_CONFIG_CFLAGS], [
  928.     # Step 0.a: Enable 64 bit support?
  929.     AC_MSG_CHECKING([if 64bit support is requested])
  930.     AC_ARG_ENABLE(64bit,[  --enable-64bit          enable 64bit support (where applicable)],
  931. [do64bit=$enableval], [do64bit=no])
  932.     AC_MSG_RESULT([$do64bit])
  933.     # Step 0.b: Enable Solaris 64 bit VIS support?
  934.     AC_MSG_CHECKING([if 64bit Sparc VIS support is requested])
  935.     AC_ARG_ENABLE(64bit-vis,[  --enable-64bit-vis      enable 64bit Sparc VIS support],
  936. [do64bitVIS=$enableval], [do64bitVIS=no])
  937.     AC_MSG_RESULT([$do64bitVIS])
  938.     if test "$do64bitVIS" = "yes"; then
  939. # Force 64bit on with VIS
  940. do64bit=yes
  941.     fi
  942.     # Step 1: set the variable "system" to hold the name and version number
  943.     # for the system.
  944.     SC_CONFIG_SYSTEM
  945.     # Step 2: check for existence of -ldl library.  This is needed because
  946.     # Linux can use either -ldl or -ldld for dynamic loading.
  947.     AC_CHECK_LIB(dl, dlopen, have_dl=yes, have_dl=no)
  948.     # Require ranlib early so we can override it in special cases below.
  949.     AC_REQUIRE([AC_PROG_RANLIB])
  950.     # Step 3: set configuration options based on system name and version.
  951.     do64bit_ok=no
  952.     LDFLAGS_ORIG="$LDFLAGS"
  953.     TCL_EXPORT_FILE_SUFFIX=""
  954.     UNSHARED_LIB_SUFFIX=""
  955.     TCL_TRIM_DOTS='`echo ${VERSION} | tr -d .`'
  956.     ECHO_VERSION='`echo ${VERSION}`'
  957.     TCL_LIB_VERSIONS_OK=ok
  958.     CFLAGS_DEBUG=-g
  959.     CFLAGS_OPTIMIZE=-O
  960.     if test "$GCC" = "yes" ; then
  961. CFLAGS_WARNING="-Wall -Wno-implicit-int -fno-strict-aliasing"
  962.     else
  963. CFLAGS_WARNING=""
  964.     fi
  965.     TCL_NEEDS_EXP_FILE=0
  966.     TCL_BUILD_EXP_FILE=""
  967.     TCL_EXP_FILE=""
  968. dnl FIXME: Replace AC_CHECK_PROG with AC_CHECK_TOOL once cross compiling is fixed.
  969. dnl AC_CHECK_TOOL(AR, ar)
  970.     AC_CHECK_PROG(AR, ar, ar)
  971.     if test "${AR}" = "" ; then
  972. AC_MSG_ERROR([Required archive tool 'ar' not found on PATH.])
  973.     fi
  974.     STLIB_LD='${AR} cr'
  975.     LD_LIBRARY_PATH_VAR="LD_LIBRARY_PATH"
  976.     PLAT_OBJS=""
  977.     PLAT_SRCS=""
  978.     case $system in
  979. AIX-*)
  980.     if test "${TCL_THREADS}" = "1" -a "$GCC" != "yes" ; then
  981. # AIX requires the _r compiler when gcc isn't being used
  982. case "${CC}" in
  983.     *_r)
  984. # ok ...
  985. ;;
  986.     *)
  987. CC=${CC}_r
  988. ;;
  989. esac
  990. AC_MSG_RESULT([Using $CC for compiling with threads])
  991.     fi
  992.     LIBS="$LIBS -lc"
  993.     SHLIB_CFLAGS=""
  994.     # Note: need the LIBS below, otherwise Tk won't find Tcl's
  995.     # symbols when dynamically loaded into tclsh.
  996.     SHLIB_LD_LIBS='${LIBS}'
  997.     SHLIB_SUFFIX=".so"
  998.     DL_OBJS="tclLoadDl.o"
  999.     LD_LIBRARY_PATH_VAR="LIBPATH"
  1000.     # Check to enable 64-bit flags for compiler/linker on AIX 4+
  1001.     if test "$do64bit" = "yes" -a "`uname -v`" -gt "3" ; then
  1002. if test "$GCC" = "yes" ; then
  1003.     AC_MSG_WARN([64bit mode not supported with GCC on $system])
  1004. else 
  1005.     do64bit_ok=yes
  1006.     CFLAGS="$CFLAGS -q64"
  1007.     LDFLAGS="$LDFLAGS -q64"
  1008.     RANLIB="${RANLIB} -X64"
  1009.     AR="${AR} -X64"
  1010.     SHLIB_LD_FLAGS="-b64"
  1011. fi
  1012.     fi
  1013.     if test "`uname -m`" = "ia64" ; then
  1014. # AIX-5 uses ELF style dynamic libraries on IA-64, but not PPC
  1015. SHLIB_LD="/usr/ccs/bin/ld -G -z text"
  1016. # AIX-5 has dl* in libc.so
  1017. DL_LIBS=""
  1018. if test "$GCC" = "yes" ; then
  1019.     CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}'
  1020. else
  1021.     CC_SEARCH_FLAGS='-R${LIB_RUNTIME_DIR}'
  1022. fi
  1023. LD_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}'
  1024.     else
  1025. if test "$GCC" = "yes" ; then
  1026.     SHLIB_LD="gcc -shared"
  1027. else
  1028.     SHLIB_LD="/bin/ld -bhalt:4 -bM:SRE -bE:lib.exp -H512 -T512 -bnoentry"
  1029. fi
  1030. SHLIB_LD="${TCL_SRC_DIR}/unix/ldAix ${SHLIB_LD} ${SHLIB_LD_FLAGS}"
  1031. DL_LIBS="-ldl"
  1032. CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1033. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1034. TCL_NEEDS_EXP_FILE=1
  1035. TCL_EXPORT_FILE_SUFFIX='${VERSION}${DBGX}.exp'
  1036.     fi
  1037.     # AIX v<=4.1 has some different flags than 4.2+
  1038.     if test "$system" = "AIX-4.1" -o "`uname -v`" -lt "4" ; then
  1039. LIBOBJS="$LIBOBJS tclLoadAix.o"
  1040. DL_LIBS="-lld"
  1041.     fi
  1042.     # On AIX <=v4 systems, libbsd.a has to be linked in to support
  1043.     # non-blocking file IO.  This library has to be linked in after
  1044.     # the MATH_LIBS or it breaks the pow() function.  The way to
  1045.     # insure proper sequencing, is to add it to the tail of MATH_LIBS.
  1046.     # This library also supplies gettimeofday.
  1047.     #
  1048.     # AIX does not have a timezone field in struct tm. When the AIX
  1049.     # bsd library is used, the timezone global and the gettimeofday
  1050.     # methods are to be avoided for timezone deduction instead, we
  1051.     # deduce the timezone by comparing the localtime result on a
  1052.     # known GMT value.
  1053.     AC_CHECK_LIB(bsd, gettimeofday, libbsd=yes, libbsd=no)
  1054.     if test $libbsd = yes; then
  1055.      MATH_LIBS="$MATH_LIBS -lbsd"
  1056.      AC_DEFINE(USE_DELTA_FOR_TZ)
  1057.     fi
  1058.     ;;
  1059. BeOS*)
  1060.     SHLIB_CFLAGS="-fPIC"
  1061.     SHLIB_LD="${CC} -nostart"
  1062.     SHLIB_LD_LIBS='${LIBS}'
  1063.     SHLIB_SUFFIX=".so"
  1064.     DL_OBJS="tclLoadDl.o"
  1065.     DL_LIBS="-ldl"
  1066.     #-----------------------------------------------------------
  1067.     # Check for inet_ntoa in -lbind, for BeOS (which also needs
  1068.     # -lsocket, even if the network functions are in -lnet which
  1069.     # is always linked to, for compatibility.
  1070.     #-----------------------------------------------------------
  1071.     AC_CHECK_LIB(bind, inet_ntoa, [LIBS="$LIBS -lbind -lsocket"])
  1072.     ;;
  1073. BSD/OS-2.1*|BSD/OS-3*)
  1074.     SHLIB_CFLAGS=""
  1075.     SHLIB_LD="shlicc -r"
  1076.     SHLIB_LD_LIBS='${LIBS}'
  1077.     SHLIB_SUFFIX=".so"
  1078.     DL_OBJS="tclLoadDl.o"
  1079.     DL_LIBS="-ldl"
  1080.     CC_SEARCH_FLAGS=""
  1081.     LD_SEARCH_FLAGS=""
  1082.     ;;
  1083. BSD/OS-4.*)
  1084.     SHLIB_CFLAGS="-export-dynamic -fPIC"
  1085.     SHLIB_LD="cc -shared"
  1086.     SHLIB_LD_LIBS='${LIBS}'
  1087.     SHLIB_SUFFIX=".so"
  1088.     DL_OBJS="tclLoadDl.o"
  1089.     DL_LIBS="-ldl"
  1090.     LDFLAGS="$LDFLAGS -export-dynamic"
  1091.     CC_SEARCH_FLAGS=""
  1092.     LD_SEARCH_FLAGS=""
  1093.     ;;
  1094. dgux*)
  1095.     SHLIB_CFLAGS="-K PIC"
  1096.     SHLIB_LD="cc -G"
  1097.     SHLIB_LD_LIBS=""
  1098.     SHLIB_SUFFIX=".so"
  1099.     DL_OBJS="tclLoadDl.o"
  1100.     DL_LIBS="-ldl"
  1101.     CC_SEARCH_FLAGS=""
  1102.     LD_SEARCH_FLAGS=""
  1103.     ;;
  1104. HP-UX-*.11.*)
  1105.     # Use updated header definitions where possible
  1106.     AC_DEFINE(_XOPEN_SOURCE)          # Use the XOPEN network library
  1107.     AC_DEFINE(_XOPEN_SOURCE_EXTENDED) # Use the XOPEN network library
  1108.     LIBS="$LIBS -lxnet"               # Use the XOPEN network library
  1109.     if test "`uname -m`" = "ia64" ; then
  1110. SHLIB_SUFFIX=".so"
  1111.     else
  1112. SHLIB_SUFFIX=".sl"
  1113.     fi
  1114.     AC_CHECK_LIB(dld, shl_load, tcl_ok=yes, tcl_ok=no)
  1115.     if test "$tcl_ok" = yes; then
  1116. SHLIB_CFLAGS="+z"
  1117. SHLIB_LD="ld -b"
  1118. SHLIB_LD_LIBS='${LIBS}'
  1119. DL_OBJS="tclLoadShl.o"
  1120. DL_LIBS="-ldld"
  1121. LDFLAGS="$LDFLAGS -Wl,-E"
  1122. CC_SEARCH_FLAGS='-Wl,+s,+b,${LIB_RUNTIME_DIR}:.'
  1123. LD_SEARCH_FLAGS='+s +b ${LIB_RUNTIME_DIR}:.'
  1124. LD_LIBRARY_PATH_VAR="SHLIB_PATH"
  1125.     fi
  1126.     if test "$GCC" = "yes" ; then
  1127. SHLIB_LD="gcc -shared"
  1128. SHLIB_LD_LIBS='${LIBS}'
  1129. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1130.     fi
  1131.     # Users may want PA-RISC 1.1/2.0 portable code - needs HP cc
  1132.     #CFLAGS="$CFLAGS +DAportable"
  1133.     # Check to enable 64-bit flags for compiler/linker
  1134.     if test "$do64bit" = "yes" ; then
  1135. if test "$GCC" = "yes" ; then
  1136.     hpux_arch=`${CC} -dumpmachine`
  1137.     case $hpux_arch in
  1138. hppa64*)
  1139.     # 64-bit gcc in use.  Fix flags for GNU ld.
  1140.     do64bit_ok=yes
  1141.     SHLIB_LD="${CC} -shared"
  1142.     SHLIB_LD_LIBS='${LIBS}'
  1143.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1144.     LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1145.     ;;
  1146. *)
  1147.     AC_MSG_WARN([64bit mode not supported with GCC on $system])
  1148.     ;;
  1149.     esac
  1150. else
  1151.     do64bit_ok=yes
  1152.     CFLAGS="$CFLAGS +DD64"
  1153.     LDFLAGS="$LDFLAGS +DD64"
  1154. fi
  1155.     fi
  1156.     ;;
  1157. HP-UX-*.08.*|HP-UX-*.09.*|HP-UX-*.10.*)
  1158.     SHLIB_SUFFIX=".sl"
  1159.     AC_CHECK_LIB(dld, shl_load, tcl_ok=yes, tcl_ok=no)
  1160.     if test "$tcl_ok" = yes; then
  1161. SHLIB_CFLAGS="+z"
  1162. SHLIB_LD="ld -b"
  1163. SHLIB_LD_LIBS=""
  1164. DL_OBJS="tclLoadShl.o"
  1165. DL_LIBS="-ldld"
  1166. LDFLAGS="$LDFLAGS -Wl,-E"
  1167. CC_SEARCH_FLAGS='-Wl,+s,+b,${LIB_RUNTIME_DIR}:.'
  1168. LD_SEARCH_FLAGS='+s +b ${LIB_RUNTIME_DIR}:.'
  1169. LD_LIBRARY_PATH_VAR="SHLIB_PATH"
  1170.     fi
  1171.     ;;
  1172. IRIX-4.*)
  1173.     SHLIB_CFLAGS="-G 0"
  1174.     SHLIB_SUFFIX=".a"
  1175.     SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r -G 0"
  1176.     SHLIB_LD_LIBS='${LIBS}'
  1177.     DL_OBJS="tclLoadAout.o"
  1178.     DL_LIBS=""
  1179.     LDFLAGS="$LDFLAGS -Wl,-D,08000000"
  1180.     CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1181.     LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1182.     SHARED_LIB_SUFFIX='${VERSION}${DBGX}.a'
  1183.     ;;
  1184. IRIX-5.*)
  1185.     SHLIB_CFLAGS=""
  1186.     SHLIB_LD="ld -shared -rdata_shared"
  1187.     SHLIB_LD_LIBS='${LIBS}'
  1188.     SHLIB_SUFFIX=".so"
  1189.     DL_OBJS="tclLoadDl.o"
  1190.     DL_LIBS=""
  1191.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1192.     LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1193.     ;;
  1194. IRIX-6.*)
  1195.     SHLIB_CFLAGS=""
  1196.     SHLIB_LD="ld -n32 -shared -rdata_shared"
  1197.     SHLIB_LD_LIBS='${LIBS}'
  1198.     SHLIB_SUFFIX=".so"
  1199.     DL_OBJS="tclLoadDl.o"
  1200.     DL_LIBS=""
  1201.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1202.     LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1203.     if test "$GCC" = "yes" ; then
  1204. CFLAGS="$CFLAGS -mabi=n32"
  1205. LDFLAGS="$LDFLAGS -mabi=n32"
  1206.     else
  1207. case $system in
  1208.     IRIX-6.3)
  1209. # Use to build 6.2 compatible binaries on 6.3.
  1210. CFLAGS="$CFLAGS -n32 -D_OLD_TERMIOS"
  1211. ;;
  1212.     *)
  1213. CFLAGS="$CFLAGS -n32"
  1214. ;;
  1215. esac
  1216. LDFLAGS="$LDFLAGS -n32"
  1217.     fi
  1218.     ;;
  1219. IRIX64-6.*)
  1220.     SHLIB_CFLAGS=""
  1221.     SHLIB_LD="ld -n32 -shared -rdata_shared"
  1222.     SHLIB_LD_LIBS='${LIBS}'
  1223.     SHLIB_SUFFIX=".so"
  1224.     DL_OBJS="tclLoadDl.o"
  1225.     DL_LIBS=""
  1226.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1227.     LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1228.     # Check to enable 64-bit flags for compiler/linker
  1229.     if test "$do64bit" = "yes" ; then
  1230.         if test "$GCC" = "yes" ; then
  1231.             AC_MSG_WARN([64bit mode not supported by gcc])
  1232.         else
  1233.             do64bit_ok=yes
  1234.             SHLIB_LD="ld -64 -shared -rdata_shared"
  1235.             CFLAGS="$CFLAGS -64"
  1236.             LDFLAGS="$LDFLAGS -64"
  1237.         fi
  1238.     fi
  1239.     ;;
  1240. Linux*)
  1241.     SHLIB_CFLAGS="-fPIC"
  1242.     SHLIB_LD_LIBS='${LIBS}'
  1243.     SHLIB_SUFFIX=".so"
  1244.     CFLAGS_OPTIMIZE=-O2
  1245.     # egcs-2.91.66 on Redhat Linux 6.0 generates lots of warnings 
  1246.     # when you inline the string and math operations.  Turn this off to
  1247.     # get rid of the warnings.
  1248.     #CFLAGS_OPTIMIZE="${CFLAGS_OPTIMIZE} -D__NO_STRING_INLINES -D__NO_MATH_INLINES"
  1249.     if test "$have_dl" = yes; then
  1250. SHLIB_LD='${CC} -shared ${CFLAGS} ${LDFLAGS}'
  1251. DL_OBJS="tclLoadDl.o"
  1252. DL_LIBS="-ldl"
  1253. LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
  1254. CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1255. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1256.     else
  1257. AC_CHECK_HEADER(dld.h, [
  1258.     SHLIB_LD="ld -shared"
  1259.     DL_OBJS="tclLoadDld.o"
  1260.     DL_LIBS="-ldld"
  1261.     CC_SEARCH_FLAGS=""
  1262.     LD_SEARCH_FLAGS=""])
  1263.     fi
  1264.     if test "`uname -m`" = "alpha" ; then
  1265. CFLAGS="$CFLAGS -mieee"
  1266.     fi
  1267.     if test $do64bit = yes; then
  1268. AC_CACHE_CHECK([if compiler accepts -m64 flag], tcl_cv_cc_m64, [
  1269.     hold_cflags=$CFLAGS
  1270.     CFLAGS="$CFLAGS -m64"
  1271.     AC_TRY_LINK(,, tcl_cv_cc_m64=yes, tcl_cv_cc_m64=no)
  1272.     CFLAGS=$hold_cflags])
  1273. if test $tcl_cv_cc_m64 = yes; then
  1274.     CFLAGS="$CFLAGS -m64"
  1275.     do64bit_ok=yes
  1276. fi
  1277.     fi
  1278.     # The combo of gcc + glibc has a bug related
  1279.     # to inlining of functions like strtod(). The
  1280.     # -fno-builtin flag should address this problem
  1281.     # but it does not work. The -fno-inline flag
  1282.     # is kind of overkill but it works.
  1283.     # Disable inlining only when one of the
  1284.     # files in compat/*.c is being linked in.
  1285.     if test x"${LIBOBJS}" != x ; then
  1286.         CFLAGS="$CFLAGS -fno-inline"
  1287.     fi
  1288.     # XIM peeking works under XFree86.
  1289.     AC_DEFINE(PEEK_XCLOSEIM)
  1290.     ;;
  1291. CYGWIN*)
  1292.     SHLIB_CFLAGS="-fPIC"
  1293.     SHLIB_LD_LIBS='${LIBS}'
  1294.     SHLIB_SUFFIX=".dll"
  1295.     CFLAGS_OPTIMIZE=-O2
  1296.     # egcs-2.91.66 on Redhat Linux 6.0 generates lots of warnings 
  1297.     # when you inline the string and math operations.  Turn this off to
  1298.     # get rid of the warnings.
  1299.     #CFLAGS_OPTIMIZE="${CFLAGS_OPTIMIZE} -D__NO_STRING_INLINES -D__NO_MATH_INLINES"
  1300.     if test "$have_dl" = yes; then
  1301. SHLIB_LD="${CC} -shared"
  1302. DL_OBJS="tclLoadDl.o"
  1303. DL_LIBS="-ldl"
  1304. LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
  1305. CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1306. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1307.     else
  1308. AC_CHECK_HEADER(dld.h, [
  1309.     SHLIB_LD="ld -shared"
  1310.     DL_OBJS="tclLoadDld.o"
  1311.     DL_LIBS="-ldld"
  1312.     CC_SEARCH_FLAGS=""
  1313.     LD_SEARCH_FLAGS=""])
  1314.     fi
  1315.     if test "`uname -m`" = "alpha" ; then
  1316. CFLAGS="$CFLAGS -mieee"
  1317.     fi
  1318.     # The combo of gcc + glibc has a bug related
  1319.     # to inlining of functions like strtod(). The
  1320.     # -fno-builtin flag should address this problem
  1321.     # but it does not work. The -fno-inline flag
  1322.     # is kind of overkill but it works.
  1323.     # Disable inlining only when one of the
  1324.     # files in compat/*.c is being linked in.
  1325.     if test x"${LIBOBJS}" != x ; then
  1326.         CFLAGS="$CFLAGS -fno-inline"
  1327.     fi
  1328.     # XIM peeking works under XFree86.
  1329.     AC_DEFINE(PEEK_XCLOSEIM)
  1330.     ;;
  1331. CYGWIN*)
  1332.     SHLIB_CFLAGS="-fPIC"
  1333.     SHLIB_LD_LIBS='${LIBS}'
  1334.     SHLIB_SUFFIX=".dll"
  1335.     CFLAGS_OPTIMIZE=-O2
  1336.     # egcs-2.91.66 on Redhat Linux 6.0 generates lots of warnings 
  1337.     # when you inline the string and math operations.  Turn this off to
  1338.     # get rid of the warnings.
  1339.     #CFLAGS_OPTIMIZE="${CFLAGS_OPTIMIZE} -D__NO_STRING_INLINES -D__NO_MATH_INLINES"
  1340.     if test "$have_dl" = yes; then
  1341. SHLIB_LD="${CC} -shared"
  1342. DL_OBJS="tclLoadDl.o"
  1343. DL_LIBS="-ldl"
  1344. LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
  1345. CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1346. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1347.     else
  1348. AC_CHECK_HEADER(dld.h, [
  1349.     SHLIB_LD="ld -shared"
  1350.     DL_OBJS="tclLoadDld.o"
  1351.     DL_LIBS="-ldld"
  1352.     CC_SEARCH_FLAGS=""
  1353.     LD_SEARCH_FLAGS=""])
  1354.     fi
  1355.     if test "`uname -m`" = "alpha" ; then
  1356. CFLAGS="$CFLAGS -mieee"
  1357.     fi
  1358.     # The combo of gcc + glibc has a bug related
  1359.     # to inlining of functions like strtod(). The
  1360.     # -fno-builtin flag should address this problem
  1361.     # but it does not work. The -fno-inline flag
  1362.     # is kind of overkill but it works.
  1363.     # Disable inlining only when one of the
  1364.     # files in compat/*.c is being linked in.
  1365.     if test x"${LIBOBJS}" != x ; then
  1366.         CFLAGS="$CFLAGS -fno-inline"
  1367.     fi
  1368.     # XIM peeking works under XFree86.
  1369.     AC_DEFINE(PEEK_XCLOSEIM)
  1370.     ;;
  1371. GNU*)
  1372.     SHLIB_CFLAGS="-fPIC"
  1373.     SHLIB_LD_LIBS='${LIBS}'
  1374.     SHLIB_SUFFIX=".so"
  1375.     if test "$have_dl" = yes; then
  1376. SHLIB_LD="${CC} -shared"
  1377. DL_OBJS=""
  1378. DL_LIBS="-ldl"
  1379. LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
  1380. CC_SEARCH_FLAGS=""
  1381. LD_SEARCH_FLAGS=""
  1382.     else
  1383. AC_CHECK_HEADER(dld.h, [
  1384.     SHLIB_LD="ld -shared"
  1385.     DL_OBJS=""
  1386.     DL_LIBS="-ldld"
  1387.     CC_SEARCH_FLAGS=""
  1388.     LD_SEARCH_FLAGS=""])
  1389.     fi
  1390.     if test "`uname -m`" = "alpha" ; then
  1391. CFLAGS="$CFLAGS -mieee"
  1392.     fi
  1393.     ;;
  1394. Lynx*)
  1395.     SHLIB_CFLAGS="-fPIC"
  1396.     SHLIB_LD_LIBS='${LIBS}'
  1397.     SHLIB_SUFFIX=".so"
  1398.     CFLAGS_OPTIMIZE=-02
  1399.     SHLIB_LD="${CC} -shared "
  1400.     DL_OBJS="tclLoadDl.o"
  1401.     DL_LIBS="-mshared -ldl"
  1402.     LD_FLAGS="-Wl,--export-dynamic"
  1403.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1404.     LD_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1405.     ;;
  1406. MP-RAS-02*)
  1407.     SHLIB_CFLAGS="-K PIC"
  1408.     SHLIB_LD="cc -G"
  1409.     SHLIB_LD_LIBS=""
  1410.     SHLIB_SUFFIX=".so"
  1411.     DL_OBJS="tclLoadDl.o"
  1412.     DL_LIBS="-ldl"
  1413.     CC_SEARCH_FLAGS=""
  1414.     LD_SEARCH_FLAGS=""
  1415.     ;;
  1416. MP-RAS-*)
  1417.     SHLIB_CFLAGS="-K PIC"
  1418.     SHLIB_LD="cc -G"
  1419.     SHLIB_LD_LIBS=""
  1420.     SHLIB_SUFFIX=".so"
  1421.     DL_OBJS="tclLoadDl.o"
  1422.     DL_LIBS="-ldl"
  1423.     LDFLAGS="$LDFLAGS -Wl,-Bexport"
  1424.     CC_SEARCH_FLAGS=""
  1425.     LD_SEARCH_FLAGS=""
  1426.     ;;
  1427. NetBSD-*|FreeBSD-[[1-2]].*)
  1428.     # Not available on all versions:  check for include file.
  1429.     AC_CHECK_HEADER(dlfcn.h, [
  1430. # NetBSD/SPARC needs -fPIC, -fpic will not do.
  1431. SHLIB_CFLAGS="-fPIC"
  1432. SHLIB_LD="ld -Bshareable -x"
  1433. SHLIB_LD_LIBS='${LIBS}'
  1434. SHLIB_SUFFIX=".so"
  1435. DL_OBJS="tclLoadDl.o"
  1436. DL_LIBS=""
  1437. CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1438. LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1439. AC_CACHE_CHECK([for ELF], tcl_cv_ld_elf, [
  1440.     AC_EGREP_CPP(yes, [
  1441. #ifdef __ELF__
  1442. yes
  1443. #endif
  1444.     ], tcl_cv_ld_elf=yes, tcl_cv_ld_elf=no)])
  1445. if test $tcl_cv_ld_elf = yes; then
  1446.     SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so'
  1447. else
  1448.     SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so.1.0'
  1449. fi
  1450.     ], [
  1451. SHLIB_CFLAGS=""
  1452. SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r"
  1453. SHLIB_LD_LIBS='${LIBS}'
  1454. SHLIB_SUFFIX=".a"
  1455. DL_OBJS="tclLoadAout.o"
  1456. DL_LIBS=""
  1457. CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1458. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1459. SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1460.     ])
  1461.     # FreeBSD doesn't handle version numbers with dots.
  1462.     UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1463.     TCL_LIB_VERSIONS_OK=nodots
  1464.     ;;
  1465. OpenBSD-*)
  1466.     case `arch -s` in
  1467.     m88k|vax)
  1468. SHLIB_CFLAGS=""
  1469. SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r"
  1470. SHLIB_LD_LIBS='${LIBS}'
  1471. SHLIB_SUFFIX=".a"
  1472. DL_OBJS="tclLoadAout.o"
  1473. DL_LIBS=""
  1474. LDFLAGS=""
  1475. CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1476. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1477. SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1478. ;;
  1479.     *)
  1480. # OpenBSD/SPARC[64] needs -fPIC, -fpic will not do.
  1481. case `machine` in
  1482. sparc|sparc64)
  1483.     SHLIB_CFLAGS="-fPIC";;
  1484.         *)
  1485.     SHLIB_CFLAGS="-fpic";;
  1486.         esac
  1487. SHLIB_LD="${CC} -shared ${SHLIB_CFLAGS}"
  1488. SHLIB_LD_LIBS='${LIBS}'
  1489. SHLIB_SUFFIX=".so"
  1490. DL_OBJS="tclLoadDl.o"
  1491. DL_LIBS=""
  1492. CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1493. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1494. SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so.1.0'
  1495. AC_CACHE_CHECK([for ELF], tcl_cv_ld_elf, [
  1496.     AC_EGREP_CPP(yes, [
  1497. #ifdef __ELF__
  1498. yes
  1499. #endif
  1500.     ], tcl_cv_ld_elf=yes, tcl_cv_ld_elf=no)])
  1501. if test $tcl_cv_ld_elf = yes; then
  1502.     LDFLAGS=-Wl,-export-dynamic
  1503. else
  1504.     LDFLAGS=""
  1505.         fi
  1506. ;;
  1507.     esac
  1508.     # OpenBSD doesn't do version numbers with dots.
  1509.     UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1510.     TCL_LIB_VERSIONS_OK=nodots
  1511.     ;;
  1512. FreeBSD-*)
  1513.     # FreeBSD 3.* and greater have ELF.
  1514.     SHLIB_CFLAGS="-fPIC"
  1515.     SHLIB_LD="ld -Bshareable -x"
  1516.     SHLIB_LD_LIBS='${LIBS}'
  1517.     SHLIB_SUFFIX=".so"
  1518.     DL_OBJS="tclLoadDl.o"
  1519.     DL_LIBS=""
  1520.     LDFLAGS="$LDFLAGS -export-dynamic"
  1521.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1522.     LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1523.     if test "${TCL_THREADS}" = "1" ; then
  1524. # The -pthread needs to go in the CFLAGS, not LIBS
  1525. LIBS=`echo $LIBS | sed s/-pthread//`
  1526. CFLAGS="$CFLAGS -pthread"
  1527.      LDFLAGS="$LDFLAGS -pthread"
  1528.     fi
  1529.     case $system in
  1530.     FreeBSD-3.*)
  1531.      # FreeBSD-3 doesn't handle version numbers with dots.
  1532.      UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1533.      SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so'
  1534.      TCL_LIB_VERSIONS_OK=nodots
  1535. ;;
  1536.     esac
  1537.     ;;
  1538. Darwin-*)
  1539.     CFLAGS_OPTIMIZE="-Os"
  1540.     SHLIB_CFLAGS="-fno-common"
  1541.     # To avoid discrepancies between what headers configure sees during
  1542.     # preprocessing tests and compiling tests, move any -isysroot and
  1543.     # -mmacosx-version-min flags from CFLAGS to CPPFLAGS:
  1544.     CPPFLAGS="${CPPFLAGS} `echo " ${CFLAGS}" | 
  1545. awk 'BEGIN {FS=" +-";ORS=" "}; {for (i=2;i<=NF;i++) 
  1546. if ([$]i~/^(isysroot|mmacosx-version-min)/) print "-"[$]i}'`"
  1547.     CFLAGS="`echo " ${CFLAGS}" | 
  1548. awk 'BEGIN {FS=" +-";ORS=" "}; {for (i=2;i<=NF;i++) 
  1549. if (!([$]i~/^(isysroot|mmacosx-version-min)/)) print "-"[$]i}'`"
  1550.     if test $do64bit = yes; then
  1551. case `arch` in
  1552.     ppc)
  1553. AC_CACHE_CHECK([if compiler accepts -arch ppc64 flag],
  1554. tcl_cv_cc_arch_ppc64, [
  1555.     hold_cflags=$CFLAGS
  1556.     CFLAGS="$CFLAGS -arch ppc64 -mpowerpc64 -mcpu=G5"
  1557.     AC_TRY_LINK(,, tcl_cv_cc_arch_ppc64=yes,
  1558.     tcl_cv_cc_arch_ppc64=no)
  1559.     CFLAGS=$hold_cflags])
  1560. if test $tcl_cv_cc_arch_ppc64 = yes; then
  1561.     CFLAGS="$CFLAGS -arch ppc64 -mpowerpc64 -mcpu=G5"
  1562.     do64bit_ok=yes
  1563. fi;;
  1564.     i386)
  1565. AC_CACHE_CHECK([if compiler accepts -arch x86_64 flag],
  1566. tcl_cv_cc_arch_x86_64, [
  1567.     hold_cflags=$CFLAGS
  1568.     CFLAGS="$CFLAGS -arch x86_64"
  1569.     AC_TRY_LINK(,, tcl_cv_cc_arch_x86_64=yes,
  1570.     tcl_cv_cc_arch_x86_64=no)
  1571.     CFLAGS=$hold_cflags])
  1572. if test $tcl_cv_cc_arch_x86_64 = yes; then
  1573.     CFLAGS="$CFLAGS -arch x86_64"
  1574.     do64bit_ok=yes
  1575. fi;;
  1576.     *)
  1577. AC_MSG_WARN([Don't know how enable 64-bit on architecture `arch`]);;
  1578. esac
  1579.     else
  1580. # Check for combined 32-bit and 64-bit fat build
  1581. echo "$CFLAGS " | grep -E -q -- '-arch (ppc64|x86_64) ' && 
  1582.     echo "$CFLAGS " | grep -E -q -- '-arch (ppc|i386) ' && 
  1583.     fat_32_64=yes
  1584.     fi
  1585.     SHLIB_LD='${CC} -dynamiclib ${CFLAGS} ${LDFLAGS}'
  1586.     AC_CACHE_CHECK([if ld accepts -single_module flag], tcl_cv_ld_single_module, [
  1587. hold_ldflags=$LDFLAGS
  1588. LDFLAGS="$LDFLAGS -dynamiclib -Wl,-single_module"
  1589. AC_TRY_LINK(, [int i;], tcl_cv_ld_single_module=yes, tcl_cv_ld_single_module=no)
  1590. LDFLAGS=$hold_ldflags])
  1591.     if test $tcl_cv_ld_single_module = yes; then
  1592. SHLIB_LD="${SHLIB_LD} -Wl,-single_module"
  1593.     fi
  1594.     SHLIB_LD_LIBS='${LIBS}'
  1595.     SHLIB_SUFFIX=".dylib"
  1596.     DL_OBJS="tclLoadDyld.o"
  1597.     DL_LIBS=""
  1598.     # Don't use -prebind when building for Mac OS X 10.4 or later only:
  1599.     test "`echo "${MACOSX_DEPLOYMENT_TARGET}" | awk -F '10\.' '{print int([$]2)}'`" -lt 4 -a 
  1600. "`echo "${CPPFLAGS}" | awk -F '-mmacosx-version-min=10\.' '{print int([$]2)}'`" -lt 4 && 
  1601. LDFLAGS="$LDFLAGS -prebind"
  1602.     LDFLAGS="$LDFLAGS -headerpad_max_install_names"
  1603.     AC_CACHE_CHECK([if ld accepts -search_paths_first flag], tcl_cv_ld_search_paths_first, [
  1604. hold_ldflags=$LDFLAGS
  1605. LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
  1606. AC_TRY_LINK(, [int i;], tcl_cv_ld_search_paths_first=yes, tcl_cv_ld_search_paths_first=no)
  1607. LDFLAGS=$hold_ldflags])
  1608.     if test $tcl_cv_ld_search_paths_first = yes; then
  1609. LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
  1610.     fi
  1611.     CC_SEARCH_FLAGS=""
  1612.     LD_SEARCH_FLAGS=""
  1613.     LD_LIBRARY_PATH_VAR="DYLD_LIBRARY_PATH"
  1614.     PLAT_OBJS=$(MAC_OSX_OBJS)
  1615.     PLAT_SRCS=$(MAC_OSX_SRCS)
  1616.     AC_MSG_CHECKING([whether to use CoreFoundation])
  1617.     AC_ARG_ENABLE(corefoundation, [  --enable-corefoundation use CoreFoundation API [--enable-corefoundation]],
  1618. [tcl_corefoundation=$enableval], [tcl_corefoundation=yes])
  1619.     AC_MSG_RESULT([$tcl_corefoundation])
  1620.     if test $tcl_corefoundation = yes; then
  1621. AC_CACHE_CHECK([for CoreFoundation.framework], tcl_cv_lib_corefoundation, [
  1622.     hold_libs=$LIBS
  1623.     if test "$fat_32_64" = yes; then for v in CFLAGS CPPFLAGS LDFLAGS; do
  1624. # On Tiger there is no 64-bit CF, so remove 64-bit archs
  1625. # from CFLAGS et al. while testing for presence of CF.
  1626. # 64-bit CF is disabled in tclUnixPort.h if necessary.
  1627. eval 'hold_'$v'="$'$v'";'$v'="`echo "$'$v' "|sed -e "s/-arch ppc64 / /g" -e "s/-arch x86_64 / /g"`"'
  1628.     done; fi
  1629.     LIBS="$LIBS -framework CoreFoundation"
  1630.     AC_TRY_LINK([#include <CoreFoundation/CoreFoundation.h>], 
  1631. [CFBundleRef b = CFBundleGetMainBundle();], 
  1632. tcl_cv_lib_corefoundation=yes, tcl_cv_lib_corefoundation=no)
  1633.     if test "$fat_32_64" = yes; then for v in CFLAGS CPPFLAGS LDFLAGS; do
  1634. eval $v'="$hold_'$v'"'
  1635.     done; fi; LIBS=$hold_libs])
  1636. if test $tcl_cv_lib_corefoundation = yes; then
  1637.     LIBS="$LIBS -framework CoreFoundation"
  1638.     AC_DEFINE(HAVE_COREFOUNDATION)
  1639. else
  1640.     tcl_corefoundation=no
  1641. fi
  1642. if test "$fat_32_64" = yes -a $tcl_corefoundation = yes; then
  1643.     AC_CACHE_CHECK([for 64-bit CoreFoundation], tcl_cv_lib_corefoundation_64, [
  1644. for v in CFLAGS CPPFLAGS LDFLAGS; do
  1645.     eval 'hold_'$v'="$'$v'";'$v'="`echo "$'$v' "|sed -e "s/-arch ppc / /g" -e "s/-arch i386 / /g"`"'
  1646. done
  1647. AC_TRY_LINK([#include <CoreFoundation/CoreFoundation.h>], 
  1648.     [CFBundleRef b = CFBundleGetMainBundle();], 
  1649.     tcl_cv_lib_corefoundation_64=yes, tcl_cv_lib_corefoundation_64=no)
  1650. for v in CFLAGS CPPFLAGS LDFLAGS; do
  1651.     eval $v'="$hold_'$v'"'
  1652. done])
  1653.     if test $tcl_cv_lib_corefoundation_64 = no; then
  1654. AC_DEFINE(NO_COREFOUNDATION_64)
  1655.     fi
  1656. fi
  1657.     fi
  1658.     AC_DEFINE(MAC_OSX_TCL)
  1659.     ;;
  1660. NEXTSTEP-*)
  1661.     SHLIB_CFLAGS=""
  1662.     SHLIB_LD="cc -nostdlib -r"
  1663.     SHLIB_LD_LIBS=""
  1664.     SHLIB_SUFFIX=".so"
  1665.     DL_OBJS="tclLoadNext.o"
  1666.     DL_LIBS=""
  1667.     CC_SEARCH_FLAGS=""
  1668.     LD_SEARCH_FLAGS=""
  1669.     ;;
  1670. OS/390-*)
  1671.     CFLAGS_OPTIMIZE="" # Optimizer is buggy
  1672.     AC_DEFINE(_OE_SOCKETS) # needed in sys/socket.h
  1673.     ;;      
  1674. OSF1-1.0|OSF1-1.1|OSF1-1.2)
  1675.     # OSF/1 1.[012] from OSF, and derivatives, including Paragon OSF/1
  1676.     SHLIB_CFLAGS=""
  1677.     # Hack: make package name same as library name
  1678.     SHLIB_LD='ld -R -export $@:'
  1679.     SHLIB_LD_LIBS=""
  1680.     SHLIB_SUFFIX=".so"
  1681.     DL_OBJS="tclLoadOSF.o"
  1682.     DL_LIBS=""
  1683.     CC_SEARCH_FLAGS=""
  1684.     LD_SEARCH_FLAGS=""
  1685.     ;;
  1686. OSF1-1.*)
  1687.     # OSF/1 1.3 from OSF using ELF, and derivatives, including AD2
  1688.     SHLIB_CFLAGS="-fPIC"
  1689.     if test "$SHARED_BUILD" = "1" ; then
  1690.         SHLIB_LD="ld -shared"
  1691.     else
  1692.         SHLIB_LD="ld -non_shared"
  1693.     fi
  1694.     SHLIB_LD_LIBS=""
  1695.     SHLIB_SUFFIX=".so"
  1696.     DL_OBJS="tclLoadDl.o"
  1697.     DL_LIBS=""
  1698.     CC_SEARCH_FLAGS=""
  1699.     LD_SEARCH_FLAGS=""
  1700.     ;;
  1701. OSF1-V*)
  1702.     # Digital OSF/1
  1703.     SHLIB_CFLAGS=""
  1704.     if test "$SHARED_BUILD" = "1" ; then
  1705.         SHLIB_LD='ld -shared -expect_unresolved "*"'
  1706.     else
  1707.         SHLIB_LD='ld -non_shared -expect_unresolved "*"'
  1708.     fi
  1709.     SHLIB_LD_LIBS=""
  1710.     SHLIB_SUFFIX=".so"
  1711.     DL_OBJS="tclLoadDl.o"
  1712.     DL_LIBS=""
  1713.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1714.     LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1715.     if test "$GCC" = "yes" ; then
  1716. CFLAGS="$CFLAGS -mieee"
  1717.             else
  1718. CFLAGS="$CFLAGS -DHAVE_TZSET -std1 -ieee"
  1719.     fi
  1720.     # see pthread_intro(3) for pthread support on osf1, k.furukawa
  1721.     if test "${TCL_THREADS}" = "1" ; then
  1722. CFLAGS="$CFLAGS -DHAVE_PTHREAD_ATTR_SETSTACKSIZE"
  1723. CFLAGS="$CFLAGS -DTCL_THREAD_STACK_MIN=PTHREAD_STACK_MIN*64"
  1724. LIBS=`echo $LIBS | sed s/-lpthreads//`
  1725. if test "$GCC" = "yes" ; then
  1726.     LIBS="$LIBS -lpthread -lmach -lexc"
  1727. else
  1728.     CFLAGS="$CFLAGS -pthread"
  1729.     LDFLAGS="$LDFLAGS -pthread"
  1730. fi
  1731.     fi
  1732.     ;;
  1733. QNX-6*)
  1734.     # QNX RTP
  1735.     # This may work for all QNX, but it was only reported for v6.
  1736.     SHLIB_CFLAGS="-fPIC"
  1737.     SHLIB_LD="ld -Bshareable -x"
  1738.     SHLIB_LD_LIBS=""
  1739.     SHLIB_SUFFIX=".so"
  1740.     DL_OBJS="tclLoadDl.o"
  1741.     # dlopen is in -lc on QNX
  1742.     DL_LIBS=""
  1743.     CC_SEARCH_FLAGS=""
  1744.     LD_SEARCH_FLAGS=""
  1745.     ;;
  1746. RISCos-*)
  1747.     SHLIB_CFLAGS="-G 0"
  1748.     SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r -G 0"
  1749.     SHLIB_LD_LIBS='${LIBS}'
  1750.     SHLIB_SUFFIX=".a"
  1751.     DL_OBJS="tclLoadAout.o"
  1752.     DL_LIBS=""
  1753.     LDFLAGS="$LDFLAGS -Wl,-D,08000000"
  1754.     CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1755.     LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1756.     ;;
  1757. SCO_SV-3.2*)
  1758.     # Note, dlopen is available only on SCO 3.2.5 and greater. However,
  1759.     # this test works, since "uname -s" was non-standard in 3.2.4 and
  1760.     # below.
  1761.     if test "$GCC" = "yes" ; then
  1762.      SHLIB_CFLAGS="-fPIC -melf"
  1763.      LDFLAGS="$LDFLAGS -melf -Wl,-Bexport"
  1764.     else
  1765.      SHLIB_CFLAGS="-Kpic -belf"
  1766.      LDFLAGS="$LDFLAGS -belf -Wl,-Bexport"
  1767.     fi
  1768.     SHLIB_LD="ld -G"
  1769.     SHLIB_LD_LIBS=""
  1770.     SHLIB_SUFFIX=".so"
  1771.     DL_OBJS="tclLoadDl.o"
  1772.     DL_LIBS=""
  1773.     CC_SEARCH_FLAGS=""
  1774.     LD_SEARCH_FLAGS=""
  1775.     ;;
  1776. SINIX*5.4*)
  1777.     SHLIB_CFLAGS="-K PIC"
  1778.     SHLIB_LD="cc -G"
  1779.     SHLIB_LD_LIBS=""
  1780.     SHLIB_SUFFIX=".so"
  1781.     DL_OBJS="tclLoadDl.o"
  1782.     DL_LIBS="-ldl"
  1783.     CC_SEARCH_FLAGS=""
  1784.     LD_SEARCH_FLAGS=""
  1785.     ;;
  1786. SunOS-4*)
  1787.     SHLIB_CFLAGS="-PIC"
  1788.     SHLIB_LD="ld"
  1789.     SHLIB_LD_LIBS=""
  1790.     SHLIB_SUFFIX=".so"
  1791.     DL_OBJS="tclLoadDl.o"
  1792.     DL_LIBS="-ldl"
  1793.     CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1794.     LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1795.     # SunOS can't handle version numbers with dots in them in library
  1796.     # specs, like -ltcl7.5, so use -ltcl75 instead.  Also, it
  1797.     # requires an extra version number at the end of .so file names.
  1798.     # So, the library has to have a name like libtcl75.so.1.0
  1799.     SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so.1.0'
  1800.     UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1801.     TCL_LIB_VERSIONS_OK=nodots
  1802.     ;;
  1803. SunOS-5.[[0-6]])
  1804.     # Careful to not let 5.10+ fall into this case
  1805.     # Note: If _REENTRANT isn't defined, then Solaris
  1806.     # won't define thread-safe library routines.
  1807.     AC_DEFINE(_REENTRANT)
  1808.     AC_DEFINE(_POSIX_PTHREAD_SEMANTICS)
  1809.     SHLIB_CFLAGS="-KPIC"
  1810.     # Note: need the LIBS below, otherwise Tk won't find Tcl's
  1811.     # symbols when dynamically loaded into tclsh.
  1812.     SHLIB_LD_LIBS='${LIBS}'
  1813.     SHLIB_SUFFIX=".so"
  1814.     DL_OBJS="tclLoadDl.o"
  1815.     DL_LIBS="-ldl"
  1816.     if test "$GCC" = "yes" ; then
  1817. SHLIB_LD="$CC -shared"
  1818. CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}'
  1819. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1820.     else
  1821. SHLIB_LD="/usr/ccs/bin/ld -G -z text"
  1822. CC_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}'
  1823. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1824.     fi
  1825.     ;;
  1826. SunOS-5*)
  1827.     # Note: If _REENTRANT isn't defined, then Solaris
  1828.     # won't define thread-safe library routines.
  1829.     AC_DEFINE(_REENTRANT)
  1830.     AC_DEFINE(_POSIX_PTHREAD_SEMANTICS)
  1831.     SHLIB_CFLAGS="-KPIC"
  1832.     # Check to enable 64-bit flags for compiler/linker
  1833.     if test "$do64bit" = "yes" ; then
  1834. arch=`isainfo`
  1835. if test "$arch" = "sparcv9 sparc" ; then
  1836. if test "$GCC" = "yes" ; then
  1837.     if test "`gcc -dumpversion | awk -F. '{print [$]1}'`" -lt "3" ; then
  1838. AC_MSG_WARN([64bit mode not supported with GCC < 3.2 on $system])
  1839.     else
  1840. do64bit_ok=yes
  1841. CFLAGS="$CFLAGS -m64 -mcpu=v9"
  1842. LDFLAGS="$LDFLAGS -m64 -mcpu=v9"
  1843. SHLIB_CFLAGS="-fPIC"
  1844.     fi
  1845. else
  1846.     do64bit_ok=yes
  1847.     if test "$do64bitVIS" = "yes" ; then
  1848. CFLAGS="$CFLAGS -xarch=v9a"
  1849.      LDFLAGS="$LDFLAGS -xarch=v9a"
  1850.     else
  1851. CFLAGS="$CFLAGS -xarch=v9"
  1852.      LDFLAGS="$LDFLAGS -xarch=v9"
  1853.     fi
  1854.     # Solaris 64 uses this as well
  1855.     #LD_LIBRARY_PATH_VAR="LD_LIBRARY_PATH_64"
  1856. fi
  1857. elif test "$arch" = "amd64 i386" ; then
  1858.     if test "$GCC" = "yes" ; then
  1859. AC_MSG_WARN([64bit mode not supported with GCC on $system])
  1860.     else
  1861. do64bit_ok=yes
  1862. CFLAGS="$CFLAGS -xarch=amd64"
  1863. LDFLAGS="$LDFLAGS -xarch=amd64"
  1864.     fi
  1865. else
  1866.     AC_MSG_WARN([64bit mode not supported for $arch])
  1867. fi
  1868.     fi
  1869.     
  1870.     # Note: need the LIBS below, otherwise Tk won't find Tcl's
  1871.     # symbols when dynamically loaded into tclsh.
  1872.     SHLIB_LD_LIBS='${LIBS}'
  1873.     SHLIB_SUFFIX=".so"
  1874.     DL_OBJS="tclLoadDl.o"
  1875.     DL_LIBS="-ldl"
  1876.     if test "$GCC" = "yes" ; then
  1877. SHLIB_LD="$CC -shared"
  1878. CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}'
  1879. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1880. if test "$do64bit_ok" = "yes" ; then
  1881.     # We need to specify -static-libgcc or we need to
  1882.     # add the path to the sparv9 libgcc.
  1883.     SHLIB_LD="$SHLIB_LD -m64 -mcpu=v9 -static-libgcc"
  1884.     # for finding sparcv9 libgcc, get the regular libgcc
  1885.     # path, remove so name and append 'sparcv9'
  1886.     #v9gcclibdir="`gcc -print-file-name=libgcc_s.so` | ..."
  1887.     #CC_SEARCH_FLAGS="${CC_SEARCH_FLAGS},-R,$v9gcclibdir"
  1888. fi
  1889.     else
  1890. case $system in
  1891.     SunOS-5.[[1-9]][[0-9]]*)
  1892. SHLIB_LD='${CC} -G -z text';;
  1893.     *)
  1894. SHLIB_LD="/usr/ccs/bin/ld -G -z text";;
  1895. esac
  1896. CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}'
  1897. LD_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}'
  1898.     fi
  1899.     ;;
  1900. ULTRIX-4.*)
  1901.     SHLIB_CFLAGS="-G 0"
  1902.     SHLIB_SUFFIX=".a"
  1903.     SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r -G 0"
  1904.     SHLIB_LD_LIBS='${LIBS}'
  1905.     DL_OBJS="tclLoadAout.o"
  1906.     DL_LIBS=""
  1907.     LDFLAGS="$LDFLAGS -Wl,-D,08000000"
  1908.     CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1909.     LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1910.     if test "$GCC" != "yes" ; then
  1911. CFLAGS="$CFLAGS -DHAVE_TZSET -std1"
  1912.     fi
  1913.     ;;
  1914. UNIX_SV* | UnixWare-5*)
  1915.     SHLIB_CFLAGS="-KPIC"
  1916.     SHLIB_LD="cc -G"
  1917.     SHLIB_LD_LIBS=""
  1918.     SHLIB_SUFFIX=".so"
  1919.     DL_OBJS="tclLoadDl.o"
  1920.     DL_LIBS="-ldl"
  1921.     # Some UNIX_SV* systems (unixware 1.1.2 for example) have linkers
  1922.     # that don't grok the -Bexport option.  Test that it does.
  1923.     AC_CACHE_CHECK([for ld accepts -Bexport flag], tcl_cv_ld_Bexport, [
  1924. hold_ldflags=$LDFLAGS
  1925. LDFLAGS="$LDFLAGS -Wl,-Bexport"
  1926. AC_TRY_LINK(, [int i;], tcl_cv_ld_Bexport=yes, tcl_cv_ld_Bexport=no)
  1927.         LDFLAGS=$hold_ldflags])
  1928.     if test $tcl_cv_ld_Bexport = yes; then
  1929. LDFLAGS="$LDFLAGS -Wl,-Bexport"
  1930.     fi
  1931.     CC_SEARCH_FLAGS=""
  1932.     LD_SEARCH_FLAGS=""
  1933.     ;;
  1934.     esac
  1935.     if test "$do64bit" = "yes" -a "$do64bit_ok" = "no" ; then
  1936. AC_MSG_WARN([64bit support being disabled -- don't know magic for this platform])
  1937.     fi
  1938. dnl # Add any CPPFLAGS set in the environment to our CFLAGS, but delay doing so
  1939. dnl # until the end of configure, as configure's compile and link tests use
  1940. dnl # both CPPFLAGS and CFLAGS (unlike our compile and link) but configure's
  1941. dnl # preprocessing tests use only CPPFLAGS.
  1942.     SC_CONFIG_COMMANDS_PRE([CFLAGS="${CFLAGS} ${CPPFLAGS}"; CPPFLAGS=""])
  1943.     # Step 4: If pseudo-static linking is in use (see K. B. Kenny, "Dynamic
  1944.     # Loading for Tcl -- What Became of It?".  Proc. 2nd Tcl/Tk Workshop,
  1945.     # New Orleans, LA, Computerized Processes Unlimited, 1994), then we need
  1946.     # to determine which of several header files defines the a.out file
  1947.     # format (a.out.h, sys/exec.h, or sys/exec_aout.h).  At present, we
  1948.     # support only a file format that is more or less version-7-compatible. 
  1949.     # In particular,
  1950.     # - a.out files must begin with `struct exec'.
  1951.     # - the N_TXTOFF on the `struct exec' must compute the seek address
  1952.     #   of the text segment
  1953.     # - The `struct exec' must contain a_magic, a_text, a_data, a_bss
  1954.     #   and a_entry fields.
  1955.     # The following compilation should succeed if and only if either sys/exec.h
  1956.     # or a.out.h is usable for the purpose.
  1957.     #
  1958.     # Note that the modified COFF format used on MIPS Ultrix 4.x is usable; the
  1959.     # `struct exec' includes a second header that contains information that
  1960.     # duplicates the v7 fields that are needed.
  1961.     if test "x$DL_OBJS" = "xtclLoadAout.o" ; then
  1962. AC_CACHE_CHECK([sys/exec.h], tcl_cv_sysexec_h, [
  1963. AC_TRY_COMPILE([#include <sys/exec.h>],[
  1964.     struct exec foo;
  1965.     unsigned long seek;
  1966.     int flag;
  1967. #if defined(__mips) || defined(mips)
  1968.     seek = N_TXTOFF (foo.ex_f, foo.ex_o);
  1969. #else
  1970.     seek = N_TXTOFF (foo);
  1971. #endif
  1972.     flag = (foo.a_magic == OMAGIC);
  1973.     return foo.a_text + foo.a_data + foo.a_bss + foo.a_entry;
  1974.     ], tcl_cv_sysexec_h=usable, tcl_cv_sysexec_h=unusable)])
  1975. if test $tcl_cv_sysexec_h = usable; then
  1976.     AC_DEFINE(USE_SYS_EXEC_H)
  1977. else
  1978.     AC_CACHE_CHECK([a.out.h], tcl_cv_aout_h, [
  1979.     AC_TRY_COMPILE([#include <a.out.h>],[
  1980. struct exec foo;
  1981. unsigned long seek;
  1982. int flag;
  1983. #if defined(__mips) || defined(mips)
  1984. seek = N_TXTOFF (foo.ex_f, foo.ex_o);
  1985. #else
  1986. seek = N_TXTOFF (foo);
  1987. #endif
  1988. flag = (foo.a_magic == OMAGIC);
  1989. return foo.a_text + foo.a_data + foo.a_bss + foo.a_entry;
  1990.     ], tcl_cv_aout_h=usable, tcl_cv_aout_h=unusable)])
  1991.     if test $tcl_cv_aout_h = usable; then
  1992. AC_DEFINE(USE_A_OUT_H)
  1993.     else
  1994. AC_CACHE_CHECK([sys/exec_aout.h], tcl_cv_sysexecaout_h, [
  1995. AC_TRY_COMPILE([#include <sys/exec_aout.h>],[
  1996.     struct exec foo;
  1997.     unsigned long seek;
  1998.     int flag;
  1999. #if defined(__mips) || defined(mips)
  2000.     seek = N_TXTOFF (foo.ex_f, foo.ex_o);
  2001. #else
  2002.     seek = N_TXTOFF (foo);
  2003. #endif
  2004.     flag = (foo.a_midmag == OMAGIC);
  2005.     return foo.a_text + foo.a_data + foo.a_bss + foo.a_entry;
  2006. ], tcl_cv_sysexecaout_h=usable, tcl_cv_sysexecaout_h=unusable)])
  2007. if test $tcl_cv_sysexecaout_h = usable; then
  2008.     AC_DEFINE(USE_SYS_EXEC_AOUT_H)
  2009. else
  2010.     DL_OBJS=""
  2011. fi
  2012.     fi
  2013. fi
  2014.     fi
  2015.     # Step 5: disable dynamic loading if requested via a command-line switch.
  2016.     AC_ARG_ENABLE(load, [  --disable-load          disallow dynamic loading and "load" command],
  2017. [tcl_ok=$enableval], [tcl_ok=yes])
  2018.     if test "$tcl_ok" = "no"; then
  2019. DL_OBJS=""
  2020.     fi
  2021.     if test "x$DL_OBJS" != "x" ; then
  2022. BUILD_DLTEST="$(DLTEST_TARGETS)"
  2023.     else
  2024. echo "Can't figure out how to do dynamic loading or shared libraries"
  2025. echo "on this system."
  2026. SHLIB_CFLAGS=""
  2027. SHLIB_LD=""
  2028. SHLIB_SUFFIX=""
  2029. DL_OBJS="tclLoadNone.o"
  2030. DL_LIBS=""
  2031. LDFLAGS="$LDFLAGS_ORIG"
  2032. CC_SEARCH_FLAGS=""
  2033. LD_SEARCH_FLAGS=""
  2034. BUILD_DLTEST=""
  2035.     fi
  2036.     # If we're running gcc, then change the C flags for compiling shared
  2037.     # libraries to the right flags for gcc, instead of those for the
  2038.     # standard manufacturer compiler.
  2039.     if test "$DL_OBJS" != "tclLoadNone.o" ; then
  2040. if test "$GCC" = "yes" ; then
  2041.     case $system in
  2042. AIX-*)
  2043.     ;;
  2044. BSD/OS*)
  2045.     ;;
  2046. IRIX*)
  2047.     ;;
  2048. NetBSD-*|FreeBSD-*|OpenBSD-*)
  2049.     ;;
  2050. Darwin-*)
  2051.     ;;
  2052. RISCos-*)
  2053.     ;;
  2054. SCO_SV-3.2*)
  2055.     ;;
  2056. ULTRIX-4.*)
  2057.     ;;
  2058. *)
  2059.     SHLIB_CFLAGS="-fPIC"
  2060.     ;;
  2061.     esac
  2062. fi
  2063.     fi
  2064.     if test "$SHARED_LIB_SUFFIX" = "" ; then
  2065. SHARED_LIB_SUFFIX='${VERSION}${DBGX}${SHLIB_SUFFIX}'
  2066.     fi
  2067.     if test "$UNSHARED_LIB_SUFFIX" = "" ; then
  2068. UNSHARED_LIB_SUFFIX='${VERSION}${DBGX}.a'
  2069.     fi
  2070.     if test "${SHARED_BUILD}" = "1" && test "${SHLIB_SUFFIX}" != "" ; then
  2071.         LIB_SUFFIX=${SHARED_LIB_SUFFIX}
  2072.         MAKE_LIB='${SHLIB_LD} -o [$]@ ${OBJS} ${SHLIB_LD_LIBS} ${TCL_SHLIB_LD_EXTRAS} ${TK_SHLIB_LD_EXTRAS} ${LD_SEARCH_FLAGS}'
  2073.         INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) $(LIB_INSTALL_DIR)/$(LIB_FILE)'
  2074.     else
  2075.         LIB_SUFFIX=${UNSHARED_LIB_SUFFIX}
  2076.         if test "$RANLIB" = "" ; then
  2077.             MAKE_LIB='$(STLIB_LD) [$]@ ${OBJS}'
  2078.             INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) $(LIB_INSTALL_DIR)/$(LIB_FILE)'
  2079.         else
  2080.             MAKE_LIB='${STLIB_LD} [$]@ ${OBJS} ; ${RANLIB} [$]@'
  2081.             INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) $(LIB_INSTALL_DIR)/$(LIB_FILE) ; (cd $(LIB_INSTALL_DIR) ; $(RANLIB) $(LIB_FILE))'
  2082.         fi
  2083. dnl        Not at all clear what this was doing in Tcl's configure.in
  2084. dnl        or why it was needed was needed. In any event, this sort of
  2085. dnl        things needs to be done in the big loop above.
  2086. dnl        REMOVE THIS BLOCK LATER! (mdejong)
  2087. dnl        case $system in
  2088. dnl            BSD/OS*)
  2089. dnl                ;;
  2090. dnl            AIX-[[1-4]].*)
  2091. dnl                ;;
  2092. dnl            *)
  2093. dnl                SHLIB_LD_LIBS=""
  2094. dnl                ;;
  2095. dnl        esac
  2096.     fi
  2097.     # Stub lib does not depend on shared/static configuration
  2098.     if test "$RANLIB" = "" ; then
  2099.         MAKE_STUB_LIB='${STLIB_LD} [$]@ ${STUB_LIB_OBJS}'
  2100.         INSTALL_STUB_LIB='$(INSTALL_LIBRARY) $(STUB_LIB_FILE) $(LIB_INSTALL_DIR)/$(STUB_LIB_FILE)'
  2101.     else
  2102.         MAKE_STUB_LIB='${STLIB_LD} [$]@ ${STUB_LIB_OBJS} ; ${RANLIB} [$]@'
  2103.         INSTALL_STUB_LIB='$(INSTALL_LIBRARY) $(STUB_LIB_FILE) $(LIB_INSTALL_DIR)/$(STUB_LIB_FILE) ; (cd $(LIB_INSTALL_DIR) ; $(RANLIB) $(STUB_LIB_FILE))'
  2104.     fi
  2105.     AC_SUBST(DL_LIBS)
  2106.     AC_SUBST(DL_OBJS)
  2107.     AC_SUBST(PLAT_OBJS)
  2108.     AC_SUBST(PLAT_SRCS)
  2109.     AC_SUBST(CFLAGS)
  2110.     AC_SUBST(CFLAGS_DEBUG)
  2111.     AC_SUBST(CFLAGS_OPTIMIZE)
  2112.     AC_SUBST(CFLAGS_WARNING)
  2113.     AC_SUBST(LDFLAGS)
  2114.     AC_SUBST(LDFLAGS_DEBUG)
  2115.     AC_SUBST(LDFLAGS_OPTIMIZE)
  2116.     AC_SUBST(CC_SEARCH_FLAGS)
  2117.     AC_SUBST(LD_SEARCH_FLAGS)
  2118.     AC_SUBST(STLIB_LD)
  2119.     AC_SUBST(SHLIB_LD)
  2120.     AC_SUBST(TCL_SHLIB_LD_EXTRAS)
  2121.     AC_SUBST(TK_SHLIB_LD_EXTRAS)
  2122.     AC_SUBST(SHLIB_LD_LIBS)
  2123.     AC_SUBST(SHLIB_CFLAGS)
  2124.     AC_SUBST(SHLIB_SUFFIX)
  2125.     AC_SUBST(MAKE_LIB)
  2126.     AC_SUBST(MAKE_STUB_LIB)
  2127.     AC_SUBST(INSTALL_LIB)
  2128.     AC_SUBST(INSTALL_STUB_LIB)
  2129.     AC_SUBST(RANLIB)
  2130. ])
  2131. #--------------------------------------------------------------------
  2132. # SC_SERIAL_PORT
  2133. #
  2134. # Determine which interface to use to talk to the serial port.
  2135. # Note that #include lines must begin in leftmost column for
  2136. # some compilers to recognize them as preprocessor directives,
  2137. # and some build environments have stdin not pointing at a
  2138. # pseudo-terminal (usually /dev/null instead.)
  2139. #
  2140. # Arguments:
  2141. # none
  2142. #
  2143. # Results:
  2144. #
  2145. # Defines only one of the following vars:
  2146. # HAVE_SYS_MODEM_H
  2147. # USE_TERMIOS
  2148. # USE_TERMIO
  2149. # USE_SGTTY
  2150. #
  2151. #--------------------------------------------------------------------
  2152. AC_DEFUN([SC_SERIAL_PORT], [
  2153.     AC_CHECK_HEADERS(sys/modem.h)
  2154.     AC_CACHE_CHECK([termios vs. termio vs. sgtty], tcl_cv_api_serial, [
  2155.     AC_TRY_RUN([
  2156. #include <termios.h>
  2157. int main() {
  2158.     struct termios t;
  2159.     if (tcgetattr(0, &t) == 0) {
  2160. cfsetospeed(&t, 0);
  2161. t.c_cflag |= PARENB | PARODD | CSIZE | CSTOPB;
  2162. return 0;
  2163.     }
  2164.     return 1;
  2165. }], tcl_cv_api_serial=termios, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2166.     if test $tcl_cv_api_serial = no ; then
  2167. AC_TRY_RUN([
  2168. #include <termio.h>
  2169. int main() {
  2170.     struct termio t;
  2171.     if (ioctl(0, TCGETA, &t) == 0) {
  2172. t.c_cflag |= CBAUD | PARENB | PARODD | CSIZE | CSTOPB;
  2173. return 0;
  2174.     }
  2175.     return 1;
  2176. }], tcl_cv_api_serial=termio, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2177.     fi
  2178.     if test $tcl_cv_api_serial = no ; then
  2179. AC_TRY_RUN([
  2180. #include <sgtty.h>
  2181. int main() {
  2182.     struct sgttyb t;
  2183.     if (ioctl(0, TIOCGETP, &t) == 0) {
  2184. t.sg_ospeed = 0;
  2185. t.sg_flags |= ODDP | EVENP | RAW;
  2186. return 0;
  2187.     }
  2188.     return 1;
  2189. }], tcl_cv_api_serial=sgtty, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2190.     fi
  2191.     if test $tcl_cv_api_serial = no ; then
  2192. AC_TRY_RUN([
  2193. #include <termios.h>
  2194. #include <errno.h>
  2195. int main() {
  2196.     struct termios t;
  2197.     if (tcgetattr(0, &t) == 0
  2198. || errno == ENOTTY || errno == ENXIO || errno == EINVAL) {
  2199. cfsetospeed(&t, 0);
  2200. t.c_cflag |= PARENB | PARODD | CSIZE | CSTOPB;
  2201. return 0;
  2202.     }
  2203.     return 1;
  2204. }], tcl_cv_api_serial=termios, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2205.     fi
  2206.     if test $tcl_cv_api_serial = no; then
  2207. AC_TRY_RUN([
  2208. #include <termio.h>
  2209. #include <errno.h>
  2210. int main() {
  2211.     struct termio t;
  2212.     if (ioctl(0, TCGETA, &t) == 0
  2213. || errno == ENOTTY || errno == ENXIO || errno == EINVAL) {
  2214. t.c_cflag |= CBAUD | PARENB | PARODD | CSIZE | CSTOPB;
  2215. return 0;
  2216.     }
  2217.     return 1;
  2218.     }], tcl_cv_api_serial=termio, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2219.     fi
  2220.     if test $tcl_cv_api_serial = no; then
  2221. AC_TRY_RUN([
  2222. #include <sgtty.h>
  2223. #include <errno.h>
  2224. int main() {
  2225.     struct sgttyb t;
  2226.     if (ioctl(0, TIOCGETP, &t) == 0
  2227. || errno == ENOTTY || errno == ENXIO || errno == EINVAL) {
  2228. t.sg_ospeed = 0;
  2229. t.sg_flags |= ODDP | EVENP | RAW;
  2230. return 0;
  2231.     }
  2232.     return 1;
  2233. }], tcl_cv_api_serial=sgtty, tcl_cv_api_serial=none, tcl_cv_api_serial=none)
  2234.     fi])
  2235.     case $tcl_cv_api_serial in
  2236. termios) AC_DEFINE(USE_TERMIOS);;
  2237. termio)  AC_DEFINE(USE_TERMIO);;
  2238. sgtty)   AC_DEFINE(USE_SGTTY);;
  2239.     esac
  2240. ])
  2241. #--------------------------------------------------------------------
  2242. # SC_MISSING_POSIX_HEADERS
  2243. #
  2244. # Supply substitutes for missing POSIX header files.  Special
  2245. # notes:
  2246. #     - stdlib.h doesn't define strtol, strtoul, or
  2247. #       strtod insome versions of SunOS
  2248. #     - some versions of string.h don't declare procedures such
  2249. #       as strstr
  2250. #
  2251. # Arguments:
  2252. # none
  2253. #
  2254. # Results:
  2255. #
  2256. # Defines some of the following vars:
  2257. # NO_DIRENT_H
  2258. # NO_ERRNO_H
  2259. # NO_VALUES_H
  2260. # HAVE_LIMITS_H or NO_LIMITS_H
  2261. # NO_STDLIB_H
  2262. # NO_STRING_H
  2263. # NO_SYS_WAIT_H
  2264. # NO_DLFCN_H
  2265. # HAVE_UNISTD_H
  2266. # HAVE_SYS_PARAM_H
  2267. #
  2268. # HAVE_STRING_H ?
  2269. #
  2270. #--------------------------------------------------------------------
  2271. AC_DEFUN([SC_MISSING_POSIX_HEADERS], [
  2272.     AC_CACHE_CHECK([dirent.h], tcl_cv_dirent_h, [
  2273.     AC_TRY_LINK([#include <sys/types.h>
  2274. #include <dirent.h>], [
  2275. #ifndef _POSIX_SOURCE
  2276. #   ifdef __Lynx__
  2277. /*
  2278.  * Generate compilation error to make the test fail:  Lynx headers
  2279.  * are only valid if really in the POSIX environment.
  2280.  */
  2281. missing_procedure();
  2282. #   endif
  2283. #endif
  2284. DIR *d;
  2285. struct dirent *entryPtr;
  2286. char *p;
  2287. d = opendir("foobar");
  2288. entryPtr = readdir(d);
  2289. p = entryPtr->d_name;
  2290. closedir(d);
  2291. ], tcl_cv_dirent_h=yes, tcl_cv_dirent_h=no)])
  2292.     if test $tcl_cv_dirent_h = no; then
  2293. AC_DEFINE(NO_DIRENT_H)
  2294.     fi
  2295.     AC_CHECK_HEADER(errno.h, , [AC_DEFINE(NO_ERRNO_H)])
  2296.     AC_CHECK_HEADER(float.h, , [AC_DEFINE(NO_FLOAT_H)])
  2297.     AC_CHECK_HEADER(values.h, , [AC_DEFINE(NO_VALUES_H)])
  2298.     AC_CHECK_HEADER(limits.h,
  2299. [AC_DEFINE(HAVE_LIMITS_H)], [AC_DEFINE(NO_LIMITS_H)])
  2300.     AC_CHECK_HEADER(stdlib.h, tcl_ok=1, tcl_ok=0)
  2301.     AC_EGREP_HEADER(strtol, stdlib.h, , tcl_ok=0)
  2302.     AC_EGREP_HEADER(strtoul, stdlib.h, , tcl_ok=0)
  2303.     AC_EGREP_HEADER(strtod, stdlib.h, , tcl_ok=0)
  2304.     if test $tcl_ok = 0; then
  2305. AC_DEFINE(NO_STDLIB_H)
  2306.     fi
  2307.     AC_CHECK_HEADER(string.h, tcl_ok=1, tcl_ok=0)
  2308.     AC_EGREP_HEADER(strstr, string.h, , tcl_ok=0)
  2309.     AC_EGREP_HEADER(strerror, string.h, , tcl_ok=0)
  2310.     # See also memmove check below for a place where NO_STRING_H can be
  2311.     # set and why.
  2312.     if test $tcl_ok = 0; then
  2313. AC_DEFINE(NO_STRING_H)
  2314.     fi
  2315.     AC_CHECK_HEADER(sys/wait.h, , [AC_DEFINE(NO_SYS_WAIT_H)])
  2316.     AC_CHECK_HEADER(dlfcn.h, , [AC_DEFINE(NO_DLFCN_H)])
  2317.     # OS/390 lacks sys/param.h (and doesn't need it, by chance).
  2318.     AC_HAVE_HEADERS(unistd.h sys/param.h)
  2319. ])
  2320. #--------------------------------------------------------------------
  2321. # SC_PATH_X
  2322. #
  2323. # Locate the X11 header files and the X11 library archive.  Try
  2324. # the ac_path_x macro first, but if it doesn't find the X stuff
  2325. # (e.g. because there's no xmkmf program) then check through
  2326. # a list of possible directories.  Under some conditions the
  2327. # autoconf macro will return an include directory that contains
  2328. # no include files, so double-check its result just to be safe.
  2329. #
  2330. # Arguments:
  2331. # none
  2332. #
  2333. # Results:
  2334. #
  2335. # Sets the the following vars:
  2336. # XINCLUDES
  2337. # XLIBSW
  2338. #
  2339. #--------------------------------------------------------------------
  2340. AC_DEFUN([SC_PATH_X], [
  2341.     AC_PATH_X
  2342.     not_really_there=""
  2343.     if test "$no_x" = ""; then
  2344. if test "$x_includes" = ""; then
  2345.     AC_TRY_CPP([#include <X11/XIntrinsic.h>], , not_really_there="yes")
  2346. else
  2347.     if test ! -r $x_includes/X11/Intrinsic.h; then
  2348. not_really_there="yes"
  2349.     fi
  2350. fi
  2351.     fi
  2352.     if test "$no_x" = "yes" -o "$not_really_there" = "yes"; then
  2353. AC_MSG_CHECKING([for X11 header files])
  2354. found_xincludes="no"
  2355. AC_TRY_CPP([#include <X11/Intrinsic.h>], found_xincludes="yes", found_xincludes="no")
  2356. if test "$found_xincludes" = "no"; then
  2357.     dirs="/usr/unsupported/include /usr/local/include /usr/X386/include /usr/X11R6/include /usr/X11R5/include /usr/include/X11R5 /usr/include/X11R4 /usr/openwin/include /usr/X11/include /usr/sww/include"
  2358.     for i in $dirs ; do
  2359. if test -r $i/X11/Intrinsic.h; then
  2360.     AC_MSG_RESULT([$i])
  2361.     XINCLUDES=" -I$i"
  2362.     found_xincludes="yes"
  2363.     break
  2364. fi
  2365.     done
  2366. fi
  2367.     else
  2368. if test "$x_includes" != ""; then
  2369.     XINCLUDES="-I$x_includes"
  2370.     found_xincludes="yes"
  2371. fi
  2372.     fi
  2373.     if test found_xincludes = "no"; then
  2374. AC_MSG_RESULT([couldn't find any!])
  2375.     fi
  2376.     if test "$no_x" = yes; then
  2377. AC_MSG_CHECKING([for X11 libraries])
  2378. XLIBSW=nope
  2379. dirs="/usr/unsupported/lib /usr/local/lib /usr/X386/lib /usr/X11R6/lib /usr/X11R5/lib /usr/lib/X11R5 /usr/lib/X11R4 /usr/openwin/lib /usr/X11/lib /usr/sww/X11/lib"
  2380. for i in $dirs ; do
  2381.     if test -r $i/libX11.a -o -r $i/libX11.so -o -r $i/libX11.sl; then
  2382. AC_MSG_RESULT([$i])
  2383. XLIBSW="-L$i -lX11"
  2384. x_libraries="$i"
  2385. break
  2386.     fi
  2387. done
  2388.     else
  2389. if test "$x_libraries" = ""; then
  2390.     XLIBSW=-lX11
  2391. else
  2392.     XLIBSW="-L$x_libraries -lX11"
  2393. fi
  2394.     fi
  2395.     if test "$XLIBSW" = nope ; then
  2396. AC_CHECK_LIB(Xwindow, XCreateWindow, XLIBSW=-lXwindow)
  2397.     fi
  2398.     if test "$XLIBSW" = nope ; then
  2399. AC_MSG_RESULT([could not find any!  Using -lX11.])
  2400. XLIBSW=-lX11
  2401.     fi
  2402. ])
  2403. #--------------------------------------------------------------------
  2404. # SC_BLOCKING_STYLE
  2405. #
  2406. # The statements below check for systems where POSIX-style
  2407. # non-blocking I/O (O_NONBLOCK) doesn't work or is unimplemented. 
  2408. # On these systems (mostly older ones), use the old BSD-style
  2409. # FIONBIO approach instead.
  2410. #
  2411. # Arguments:
  2412. # none
  2413. #
  2414. # Results:
  2415. #
  2416. # Defines some of the following vars:
  2417. # HAVE_SYS_IOCTL_H
  2418. # HAVE_SYS_FILIO_H
  2419. # USE_FIONBIO
  2420. # O_NONBLOCK
  2421. #
  2422. #--------------------------------------------------------------------
  2423. AC_DEFUN([SC_BLOCKING_STYLE], [
  2424.     AC_CHECK_HEADERS(sys/ioctl.h)
  2425.     AC_CHECK_HEADERS(sys/filio.h)
  2426.     SC_CONFIG_SYSTEM
  2427.     AC_MSG_CHECKING([FIONBIO vs. O_NONBLOCK for nonblocking I/O])
  2428.     case $system in
  2429. # There used to be code here to use FIONBIO under AIX.  However, it
  2430. # was reported that FIONBIO doesn't work under AIX 3.2.5.  Since
  2431. # using O_NONBLOCK seems fine under AIX 4.*, I removed the FIONBIO
  2432. # code (JO, 5/31/97).
  2433. OSF*)
  2434.     AC_DEFINE(USE_FIONBIO)
  2435.     AC_MSG_RESULT([FIONBIO])
  2436.     ;;
  2437. SunOS-4*)
  2438.     AC_DEFINE(USE_FIONBIO)
  2439.     AC_MSG_RESULT([FIONBIO])
  2440.     ;;
  2441. ULTRIX-4.*)
  2442.     AC_DEFINE(USE_FIONBIO)
  2443.     AC_MSG_RESULT([FIONBIO])
  2444.     ;;
  2445. *)
  2446.     AC_MSG_RESULT([O_NONBLOCK])
  2447.     ;;
  2448.     esac
  2449. ])
  2450. #--------------------------------------------------------------------
  2451. # SC_TIME_HANLDER
  2452. #
  2453. # Checks how the system deals with time.h, what time structures
  2454. # are used on the system, and what fields the structures have.
  2455. #
  2456. # Arguments:
  2457. # none
  2458. #
  2459. # Results:
  2460. #
  2461. # Defines some of the following vars:
  2462. # USE_DELTA_FOR_TZ
  2463. # HAVE_TM_GMTOFF
  2464. # HAVE_TM_TZADJ
  2465. # HAVE_TIMEZONE_VAR
  2466. #
  2467. #--------------------------------------------------------------------
  2468. AC_DEFUN([SC_TIME_HANDLER], [
  2469.     AC_CHECK_HEADERS(sys/time.h)
  2470.     AC_HEADER_TIME
  2471.     AC_STRUCT_TIMEZONE
  2472.     AC_CHECK_FUNCS(gmtime_r localtime_r)
  2473.     AC_CACHE_CHECK([tm_tzadj in struct tm], tcl_cv_member_tm_tzadj, [
  2474. AC_TRY_COMPILE([#include <time.h>], [struct tm tm; tm.tm_tzadj;],
  2475.     tcl_cv_member_tm_tzadj=yes, tcl_cv_member_tm_tzadj=no)])
  2476.     if test $tcl_cv_member_tm_tzadj = yes ; then
  2477. AC_DEFINE(HAVE_TM_TZADJ)
  2478.     fi
  2479.     AC_CACHE_CHECK([tm_gmtoff in struct tm], tcl_cv_member_tm_gmtoff, [
  2480. AC_TRY_COMPILE([#include <time.h>], [struct tm tm; tm.tm_gmtoff;],
  2481.     tcl_cv_member_tm_gmtoff=yes, tcl_cv_member_tm_gmtoff=no)])
  2482.     if test $tcl_cv_member_tm_gmtoff = yes ; then
  2483. AC_DEFINE(HAVE_TM_GMTOFF)
  2484.     fi
  2485.     #
  2486.     # Its important to include time.h in this check, as some systems
  2487.     # (like convex) have timezone functions, etc.
  2488.     #
  2489.     AC_CACHE_CHECK([long timezone variable], tcl_cv_timezone_long, [
  2490. AC_TRY_COMPILE([#include <time.h>],
  2491.     [extern long timezone;
  2492.     timezone += 1;
  2493.     exit (0);],
  2494.     tcl_cv_timezone_long=yes, tcl_cv_timezone_long=no)])
  2495.     if test $tcl_cv_timezone_long = yes ; then
  2496. AC_DEFINE(HAVE_TIMEZONE_VAR)
  2497.     else
  2498. #
  2499. # On some systems (eg IRIX 6.2), timezone is a time_t and not a long.
  2500. #
  2501. AC_CACHE_CHECK([time_t timezone variable], tcl_cv_timezone_time, [
  2502.     AC_TRY_COMPILE([#include <time.h>],
  2503. [extern time_t timezone;
  2504. timezone += 1;
  2505. exit (0);],
  2506. tcl_cv_timezone_time=yes, tcl_cv_timezone_time=no)])
  2507. if test $tcl_cv_timezone_time = yes ; then
  2508.     AC_DEFINE(HAVE_TIMEZONE_VAR)
  2509. fi
  2510.     fi
  2511. ])
  2512. #--------------------------------------------------------------------
  2513. # SC_BUGGY_STRTOD
  2514. #
  2515. # Under Solaris 2.4, strtod returns the wrong value for the
  2516. # terminating character under some conditions.  Check for this
  2517. # and if the problem exists use a substitute procedure
  2518. # "fixstrtod" (provided by Tcl) that corrects the error.
  2519. # Also, on Compaq's Tru64 Unix 5.0,
  2520. # strtod(" ") returns 0.0 instead of a failure to convert.
  2521. #
  2522. # Arguments:
  2523. # none
  2524. #
  2525. # Results:
  2526. #
  2527. # Might defines some of the following vars:
  2528. # strtod (=fixstrtod)
  2529. #
  2530. #--------------------------------------------------------------------
  2531. AC_DEFUN([SC_BUGGY_STRTOD], [
  2532.     AC_CHECK_FUNC(strtod, tcl_strtod=1, tcl_strtod=0)
  2533.     if test "$tcl_strtod" = 1; then
  2534. AC_CACHE_CHECK([for Solaris2.4/Tru64 strtod bugs], tcl_cv_strtod_buggy,[
  2535.     AC_TRY_RUN([
  2536. extern double strtod();
  2537. int main() {
  2538.     char *infString="Inf", *nanString="NaN", *spaceString=" ";
  2539.     char *term;
  2540.     double value;
  2541.     value = strtod(infString, &term);
  2542.     if ((term != infString) && (term[-1] == 0)) {
  2543. exit(1);
  2544.     }
  2545.     value = strtod(nanString, &term);
  2546.     if ((term != nanString) && (term[-1] == 0)) {
  2547. exit(1);
  2548.     }
  2549.     value = strtod(spaceString, &term);
  2550.     if (term == (spaceString+1)) {
  2551. exit(1);
  2552.     }
  2553.     exit(0);
  2554. }], tcl_cv_strtod_buggy=ok, tcl_cv_strtod_buggy=buggy,
  2555.     tcl_cv_strtod_buggy=buggy)])
  2556. if test "$tcl_cv_strtod_buggy" = buggy; then
  2557.     LIBOBJS="$LIBOBJS fixstrtod.o"
  2558.     AC_DEFINE(strtod, fixstrtod)
  2559. fi
  2560.     fi
  2561. ])
  2562. #--------------------------------------------------------------------
  2563. # SC_TCL_LINK_LIBS
  2564. #
  2565. # Search for the libraries needed to link the Tcl shell.
  2566. # Things like the math library (-lm) and socket stuff (-lsocket vs.
  2567. # -lnsl) are dealt with here.
  2568. #
  2569. # Arguments:
  2570. # Requires the following vars to be set in the Makefile:
  2571. # DL_LIBS
  2572. # LIBS
  2573. # MATH_LIBS
  2574. #
  2575. # Results:
  2576. #
  2577. # Subst's the following var:
  2578. # TCL_LIBS
  2579. # MATH_LIBS
  2580. #
  2581. # Might append to the following vars:
  2582. # LIBS
  2583. #
  2584. # Might define the following vars:
  2585. # HAVE_NET_ERRNO_H
  2586. #
  2587. #--------------------------------------------------------------------
  2588. AC_DEFUN([SC_TCL_LINK_LIBS], [
  2589.     #--------------------------------------------------------------------
  2590.     # On a few very rare systems, all of the libm.a stuff is
  2591.     # already in libc.a.  Set compiler flags accordingly.
  2592.     # Also, Linux requires the "ieee" library for math to work
  2593.     # right (and it must appear before "-lm").
  2594.     #--------------------------------------------------------------------
  2595.     AC_CHECK_FUNC(sin, MATH_LIBS="", MATH_LIBS="-lm")
  2596.     AC_CHECK_LIB(ieee, main, [MATH_LIBS="-lieee $MATH_LIBS"])
  2597.     #--------------------------------------------------------------------
  2598.     # Interactive UNIX requires -linet instead of -lsocket, plus it
  2599.     # needs net/errno.h to define the socket-related error codes.
  2600.     #--------------------------------------------------------------------
  2601.     AC_CHECK_LIB(inet, main, [LIBS="$LIBS -linet"])
  2602.     AC_CHECK_HEADER(net/errno.h, [AC_DEFINE(HAVE_NET_ERRNO_H)])
  2603.     #--------------------------------------------------------------------
  2604.     # Check for the existence of the -lsocket and -lnsl libraries.
  2605.     # The order here is important, so that they end up in the right
  2606.     # order in the command line generated by make.  Here are some
  2607.     # special considerations:
  2608.     # 1. Use "connect" and "accept" to check for -lsocket, and
  2609.     #    "gethostbyname" to check for -lnsl.
  2610.     # 2. Use each function name only once:  can't redo a check because
  2611.     #    autoconf caches the results of the last check and won't redo it.
  2612.     # 3. Use -lnsl and -lsocket only if they supply procedures that
  2613.     #    aren't already present in the normal libraries.  This is because
  2614.     #    IRIX 5.2 has libraries, but they aren't needed and they're
  2615.     #    bogus:  they goof up name resolution if used.
  2616.     # 4. On some SVR4 systems, can't use -lsocket without -lnsl too.
  2617.     #    To get around this problem, check for both libraries together
  2618.     #    if -lsocket doesn't work by itself.
  2619.     #--------------------------------------------------------------------
  2620.     tcl_checkBoth=0
  2621.     AC_CHECK_FUNC(connect, tcl_checkSocket=0, tcl_checkSocket=1)
  2622.     if test "$tcl_checkSocket" = 1; then
  2623. AC_CHECK_FUNC(setsockopt, , [AC_CHECK_LIB(socket, setsockopt,
  2624.     LIBS="$LIBS -lsocket", tcl_checkBoth=1)])
  2625.     fi
  2626.     if test "$tcl_checkBoth" = 1; then
  2627. tk_oldLibs=$LIBS
  2628. LIBS="$LIBS -lsocket -lnsl"
  2629. AC_CHECK_FUNC(accept, tcl_checkNsl=0, [LIBS=$tk_oldLibs])
  2630.     fi
  2631.     AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl, gethostbyname,
  2632.     [LIBS="$LIBS -lnsl"])])
  2633.     
  2634.     # Don't perform the eval of the libraries here because DL_LIBS
  2635.     # won't be set until we call SC_CONFIG_CFLAGS
  2636.     TCL_LIBS='${DL_LIBS} ${LIBS} ${MATH_LIBS}'
  2637.     AC_SUBST(TCL_LIBS)
  2638.     AC_SUBST(MATH_LIBS)
  2639. ])
  2640. #--------------------------------------------------------------------
  2641. # SC_TCL_EARLY_FLAGS
  2642. #
  2643. # Check for what flags are needed to be passed so the correct OS
  2644. # features are available.
  2645. #
  2646. # Arguments:
  2647. # None
  2648. #
  2649. # Results:
  2650. #
  2651. # Might define the following vars:
  2652. # _ISOC99_SOURCE
  2653. # _LARGEFILE64_SOURCE
  2654. # _LARGEFILE_SOURCE64
  2655. #
  2656. #--------------------------------------------------------------------
  2657. AC_DEFUN([SC_TCL_EARLY_FLAG],[
  2658.     AC_CACHE_VAL([tcl_cv_flag_]translit($1,[A-Z],[a-z]),
  2659. AC_TRY_COMPILE([$2], $3, [tcl_cv_flag_]translit($1,[A-Z],[a-z])=no,
  2660.     AC_TRY_COMPILE([[#define ]$1[ 1
  2661. ]$2], $3,
  2662. [tcl_cv_flag_]translit($1,[A-Z],[a-z])=yes,
  2663. [tcl_cv_flag_]translit($1,[A-Z],[a-z])=no)))
  2664.     if test ["x${tcl_cv_flag_]translit($1,[A-Z],[a-z])[}" = "xyes"] ; then
  2665. AC_DEFINE($1)
  2666. tcl_flags="$tcl_flags $1"
  2667.     fi
  2668. ])
  2669. AC_DEFUN([SC_TCL_EARLY_FLAGS],[
  2670.     AC_MSG_CHECKING([for required early compiler flags])
  2671.     tcl_flags=""
  2672.     SC_TCL_EARLY_FLAG(_ISOC99_SOURCE,[#include <stdlib.h>],
  2673. [char *p = (char *)strtoll; char *q = (char *)strtoull;])
  2674.     SC_TCL_EARLY_FLAG(_LARGEFILE64_SOURCE,[#include <sys/stat.h>],
  2675. [struct stat64 buf; int i = stat64("/", &buf);])
  2676.     SC_TCL_EARLY_FLAG(_LARGEFILE_SOURCE64,[#include <sys/stat.h>],
  2677. [char *p = (char *)open64;])
  2678.     if test "x${tcl_flags}" = "x" ; then
  2679. AC_MSG_RESULT([none])
  2680.     else
  2681. AC_MSG_RESULT([${tcl_flags}])
  2682.     fi
  2683. ])
  2684. #--------------------------------------------------------------------
  2685. # SC_TCL_64BIT_FLAGS
  2686. #
  2687. # Check for what is defined in the way of 64-bit features.
  2688. #
  2689. # Arguments:
  2690. # None
  2691. #
  2692. # Results:
  2693. #
  2694. # Might define the following vars:
  2695. # TCL_WIDE_INT_IS_LONG
  2696. # TCL_WIDE_INT_TYPE
  2697. # HAVE_STRUCT_DIRENT64
  2698. # HAVE_STRUCT_STAT64
  2699. # HAVE_TYPE_OFF64_T
  2700. #
  2701. #--------------------------------------------------------------------
  2702. AC_DEFUN([SC_TCL_64BIT_FLAGS], [
  2703.     AC_MSG_CHECKING([for 64-bit integer type])
  2704.     AC_CACHE_VAL(tcl_cv_type_64bit,[
  2705. tcl_cv_type_64bit=none
  2706. # See if the compiler knows natively about __int64
  2707. AC_TRY_COMPILE(,[__int64 value = (__int64) 0;],
  2708.     tcl_type_64bit=__int64, tcl_type_64bit="long long")
  2709. # See if we should use long anyway  Note that we substitute in the
  2710. # type that is our current guess for a 64-bit type inside this check
  2711. # program, so it should be modified only carefully...
  2712.         AC_TRY_COMPILE(,[switch (0) { 
  2713.             case 1: case (sizeof(]${tcl_type_64bit}[)==sizeof(long)): ; 
  2714.         }],tcl_cv_type_64bit=${tcl_type_64bit})])
  2715.     if test "${tcl_cv_type_64bit}" = none ; then
  2716. AC_DEFINE(TCL_WIDE_INT_IS_LONG)
  2717. AC_MSG_RESULT([using long])
  2718.     else
  2719. AC_DEFINE_UNQUOTED(TCL_WIDE_INT_TYPE,${tcl_cv_type_64bit})
  2720. AC_MSG_RESULT([${tcl_cv_type_64bit}])
  2721. # Now check for auxiliary declarations
  2722. AC_CACHE_CHECK([for struct dirent64], tcl_cv_struct_dirent64,[
  2723.     AC_TRY_COMPILE([#include <sys/types.h>
  2724. #include <sys/dirent.h>],[struct dirent64 p;],
  2725. tcl_cv_struct_dirent64=yes,tcl_cv_struct_dirent64=no)])
  2726. if test "x${tcl_cv_struct_dirent64}" = "xyes" ; then
  2727.     AC_DEFINE(HAVE_STRUCT_DIRENT64)
  2728. fi
  2729. AC_CACHE_CHECK([for struct stat64], tcl_cv_struct_stat64,[
  2730.     AC_TRY_COMPILE([#include <sys/stat.h>],[struct stat64 p;
  2731. ],
  2732. tcl_cv_struct_stat64=yes,tcl_cv_struct_stat64=no)])
  2733. if test "x${tcl_cv_struct_stat64}" = "xyes" ; then
  2734.     AC_DEFINE(HAVE_STRUCT_STAT64)
  2735. fi
  2736. AC_CHECK_FUNCS(open64 lseek64)
  2737. AC_MSG_CHECKING([for off64_t])
  2738. AC_CACHE_VAL(tcl_cv_type_off64_t,[
  2739.     AC_TRY_COMPILE([#include <sys/types.h>],[off64_t offset;
  2740. ],
  2741. tcl_cv_type_off64_t=yes,tcl_cv_type_off64_t=no)])
  2742. dnl Define HAVE_TYPE_OFF64_T only when the off64_t type and the
  2743. dnl functions lseek64 and open64 are defined.
  2744. if test "x${tcl_cv_type_off64_t}" = "xyes" && 
  2745.         test "x${ac_cv_func_lseek64}" = "xyes" && 
  2746.         test "x${ac_cv_func_open64}" = "xyes" ; then
  2747.     AC_DEFINE(HAVE_TYPE_OFF64_T)
  2748.     AC_MSG_RESULT([yes])
  2749. else
  2750.     AC_MSG_RESULT([no])
  2751. fi
  2752.     fi
  2753. ])
  2754. #--------------------------------------------------------------------
  2755. # SC_TCL_GETHOSTBYADDR_R
  2756. #
  2757. # Check if we have MT-safe variant of gethostbyaddr().
  2758. #
  2759. # Arguments:
  2760. # None
  2761. #
  2762. # Results:
  2763. #
  2764. # Might define the following vars:
  2765. # HAVE_GETHOSTBYADDR_R
  2766. # HAVE_GETHOSTBYADDR_R_7
  2767. # HAVE_GETHOSTBYADDR_R_8
  2768. #
  2769. #--------------------------------------------------------------------
  2770. AC_DEFUN([SC_TCL_GETHOSTBYADDR_R], [AC_CHECK_FUNC(gethostbyaddr_r, [
  2771.     AC_CACHE_CHECK([for gethostbyaddr_r with 7 args], tcl_cv_api_gethostbyaddr_r_7, [
  2772.     AC_TRY_COMPILE([
  2773. #include <netdb.h>
  2774.     ], [
  2775. char *addr;
  2776. int length;
  2777. int type;
  2778. struct hostent *result;
  2779. char buffer[2048];
  2780. int buflen = 2048;
  2781. int h_errnop;
  2782. (void) gethostbyaddr_r(addr, length, type, result, buffer, buflen,
  2783.        &h_errnop);
  2784.     ], tcl_cv_api_gethostbyaddr_r_7=yes, tcl_cv_api_gethostbyaddr_r_7=no)])
  2785.     tcl_ok=$tcl_cv_api_gethostbyaddr_r_7
  2786.     if test "$tcl_ok" = yes; then
  2787. AC_DEFINE(HAVE_GETHOSTBYADDR_R_7)
  2788.     else
  2789. AC_CACHE_CHECK([for gethostbyaddr_r with 8 args], tcl_cv_api_gethostbyaddr_r_8, [
  2790. AC_TRY_COMPILE([
  2791.     #include <netdb.h>
  2792. ], [
  2793.     char *addr;
  2794.     int length;
  2795.     int type;
  2796.     struct hostent *result, *resultp;
  2797.     char buffer[2048];
  2798.     int buflen = 2048;
  2799.     int h_errnop;
  2800.     (void) gethostbyaddr_r(addr, length, type, result, buffer, buflen,
  2801.    &resultp, &h_errnop);
  2802. ], tcl_cv_api_gethostbyaddr_r_8=yes, tcl_cv_api_gethostbyaddr_r_8=no)])
  2803. tcl_ok=$tcl_cv_api_gethostbyaddr_r_8
  2804. if test "$tcl_ok" = yes; then
  2805.     AC_DEFINE(HAVE_GETHOSTBYADDR_R_8)
  2806. fi
  2807.     fi
  2808.     if test "$tcl_ok" = yes; then
  2809. AC_DEFINE(HAVE_GETHOSTBYADDR_R)
  2810.     fi
  2811. ])])
  2812. #--------------------------------------------------------------------
  2813. # SC_TCL_GETHOSTBYNAME_R
  2814. #
  2815. # Check to see what variant of gethostbyname_r() we have.
  2816. # Based on David Arnold's example from the comp.programming.threads
  2817. # FAQ Q213
  2818. #
  2819. # Arguments:
  2820. # None
  2821. #
  2822. # Results:
  2823. #
  2824. # Might define the following vars:
  2825. # HAVE_GETHOSTBYADDR_R
  2826. # HAVE_GETHOSTBYADDR_R_3
  2827. # HAVE_GETHOSTBYADDR_R_5
  2828. # HAVE_GETHOSTBYADDR_R_6
  2829. #
  2830. #--------------------------------------------------------------------
  2831. AC_DEFUN([SC_TCL_GETHOSTBYNAME_R], [AC_CHECK_FUNC(gethostbyname_r, [
  2832.     AC_CACHE_CHECK([for gethostbyname_r with 6 args], tcl_cv_api_gethostbyname_r_6, [
  2833.     AC_TRY_COMPILE([
  2834. #include <netdb.h>
  2835.     ], [
  2836. char *name;
  2837. struct hostent *he, *res;
  2838. char buffer[2048];
  2839. int buflen = 2048;
  2840. int h_errnop;
  2841. (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop);
  2842.     ], tcl_cv_api_gethostbyname_r_6=yes, tcl_cv_api_gethostbyname_r_6=no)])
  2843.     tcl_ok=$tcl_cv_api_gethostbyname_r_6
  2844.     if test "$tcl_ok" = yes; then
  2845. AC_DEFINE(HAVE_GETHOSTBYNAME_R_6)
  2846.     else
  2847. AC_CACHE_CHECK([for gethostbyname_r with 5 args], tcl_cv_api_gethostbyname_r_5, [
  2848. AC_TRY_COMPILE([
  2849.     #include <netdb.h>
  2850. ], [
  2851.     char *name;
  2852.     struct hostent *he;
  2853.     char buffer[2048];
  2854.     int buflen = 2048;
  2855.     int h_errnop;
  2856.     (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop);
  2857. ], tcl_cv_api_gethostbyname_r_5=yes, tcl_cv_api_gethostbyname_r_5=no)])
  2858. tcl_ok=$tcl_cv_api_gethostbyname_r_5
  2859. if test "$tcl_ok" = yes; then
  2860.     AC_DEFINE(HAVE_GETHOSTBYNAME_R_5)
  2861. else
  2862.     AC_CACHE_CHECK([for gethostbyname_r with 3 args], tcl_cv_api_gethostbyname_r_3, [
  2863.     AC_TRY_COMPILE([
  2864. #include <netdb.h>
  2865.     ], [
  2866. char *name;
  2867. struct hostent *he;
  2868. struct hostent_data data;
  2869. (void) gethostbyname_r(name, he, &data);
  2870.     ], tcl_cv_api_gethostbyname_r_3=yes, tcl_cv_api_gethostbyname_r_3=no)])
  2871.     tcl_ok=$tcl_cv_api_gethostbyname_r_3
  2872.     if test "$tcl_ok" = yes; then
  2873. AC_DEFINE(HAVE_GETHOSTBYNAME_R_3)
  2874.     fi
  2875. fi
  2876.     fi
  2877.     if test "$tcl_ok" = yes; then
  2878. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  2879.     fi
  2880. ])])
  2881. #--------------------------------------------------------------------
  2882. # SC_TCL_GETPWUID_R
  2883. #
  2884. # Check if we have MT-safe variant of getpwuid() and if yes,
  2885. # which one exactly.
  2886. #
  2887. # Arguments:
  2888. # None
  2889. #
  2890. # Results:
  2891. #
  2892. # Might define the following vars:
  2893. # HAVE_GETPWUID_R
  2894. # HAVE_GETPWUID_R_4
  2895. # HAVE_GETPWUID_R_5
  2896. #
  2897. #--------------------------------------------------------------------
  2898. AC_DEFUN([SC_TCL_GETPWUID_R], [AC_CHECK_FUNC(getpwuid_r, [
  2899.     AC_CACHE_CHECK([for getpwuid_r with 5 args], tcl_cv_api_getpwuid_r_5, [
  2900.     AC_TRY_COMPILE([
  2901. #include <sys/types.h>
  2902. #include <pwd.h>
  2903.     ], [
  2904. uid_t uid;
  2905. struct passwd pw, *pwp;
  2906. char buf[512];
  2907. int buflen = 512;
  2908. (void) getpwuid_r(uid, &pw, buf, buflen, &pwp);
  2909.     ], tcl_cv_api_getpwuid_r_5=yes, tcl_cv_api_getpwuid_r_5=no)])
  2910.     tcl_ok=$tcl_cv_api_getpwuid_r_5
  2911.     if test "$tcl_ok" = yes; then
  2912. AC_DEFINE(HAVE_GETPWUID_R_5)
  2913.     else
  2914. AC_CACHE_CHECK([for getpwuid_r with 4 args], tcl_cv_api_getpwuid_r_4, [
  2915. AC_TRY_COMPILE([
  2916.     #include <sys/types.h>
  2917.     #include <pwd.h>
  2918. ], [
  2919.     uid_t uid;
  2920.     struct passwd pw;
  2921.     char buf[512];
  2922.     int buflen = 512;
  2923.     (void)getpwnam_r(uid, &pw, buf, buflen);
  2924. ], tcl_cv_api_getpwuid_r_4=yes, tcl_cv_api_getpwuid_r_4=no)])
  2925. tcl_ok=$tcl_cv_api_getpwuid_r_4
  2926. if test "$tcl_ok" = yes; then
  2927.     AC_DEFINE(HAVE_GETPWUID_R_4)
  2928. fi
  2929.     fi
  2930.     if test "$tcl_ok" = yes; then
  2931. AC_DEFINE(HAVE_GETPWUID_R)
  2932.     fi
  2933. ])])
  2934. #--------------------------------------------------------------------
  2935. # SC_TCL_GETPWNAM_R
  2936. #
  2937. # Check if we have MT-safe variant of getpwnam() and if yes,
  2938. # which one exactly.
  2939. #
  2940. # Arguments:
  2941. # None
  2942. #
  2943. # Results:
  2944. #
  2945. # Might define the following vars:
  2946. # HAVE_GETPWNAM_R
  2947. # HAVE_GETPWNAM_R_4
  2948. # HAVE_GETPWNAM_R_5
  2949. #
  2950. #--------------------------------------------------------------------
  2951. AC_DEFUN([SC_TCL_GETPWNAM_R], [AC_CHECK_FUNC(getpwnam_r, [
  2952.     AC_CACHE_CHECK([for getpwnam_r with 5 args], tcl_cv_api_getpwnam_r_5, [
  2953.     AC_TRY_COMPILE([
  2954. #include <sys/types.h>
  2955. #include <pwd.h>
  2956.     ], [
  2957. char *name;
  2958. struct passwd pw, *pwp;
  2959. char buf[512];
  2960. int buflen = 512;
  2961. (void) getpwnam_r(name, &pw, buf, buflen, &pwp);
  2962.     ], tcl_cv_api_getpwnam_r_5=yes, tcl_cv_api_getpwnam_r_5=no)])
  2963.     tcl_ok=$tcl_cv_api_getpwnam_r_5
  2964.     if test "$tcl_ok" = yes; then
  2965. AC_DEFINE(HAVE_GETPWNAM_R_5)
  2966.     else
  2967. AC_CACHE_CHECK([for getpwnam_r with 4 args], tcl_cv_api_getpwnam_r_4, [
  2968. AC_TRY_COMPILE([
  2969.     #include <sys/types.h>
  2970.     #include <pwd.h>
  2971. ], [
  2972.     char *name;
  2973.     struct passwd pw;
  2974.     char buf[512];
  2975.     int buflen = 512;
  2976.     (void)getpwnam_r(name, &pw, buf, buflen);
  2977. ], tcl_cv_api_getpwnam_r_4=yes, tcl_cv_api_getpwnam_r_4=no)])
  2978. tcl_ok=$tcl_cv_api_getpwnam_r_4
  2979. if test "$tcl_ok" = yes; then
  2980.     AC_DEFINE(HAVE_GETPWNAM_R_4)
  2981. fi
  2982.     fi
  2983.     if test "$tcl_ok" = yes; then
  2984. AC_DEFINE(HAVE_GETPWNAM_R)
  2985.     fi
  2986. ])])
  2987. #--------------------------------------------------------------------
  2988. # SC_TCL_GETGRGID_R
  2989. #
  2990. # Check if we have MT-safe variant of getgrgid() and if yes,
  2991. # which one exactly.
  2992. #
  2993. # Arguments:
  2994. # None
  2995. #
  2996. # Results:
  2997. #
  2998. # Might define the following vars:
  2999. # HAVE_GETGRGID_R
  3000. # HAVE_GETGRGID_R_4
  3001. # HAVE_GETGRGID_R_5
  3002. #
  3003. #--------------------------------------------------------------------
  3004. AC_DEFUN([SC_TCL_GETGRGID_R], [AC_CHECK_FUNC(getgrgid_r, [
  3005.     AC_CACHE_CHECK([for getgrgid_r with 5 args], tcl_cv_api_getgrgid_r_5, [
  3006.     AC_TRY_COMPILE([
  3007. #include <sys/types.h>
  3008. #include <grp.h>
  3009.     ], [
  3010. gid_t gid;
  3011. struct group gr, *grp;
  3012. char buf[512];
  3013. int buflen = 512;
  3014. (void) getgrgid_r(gid, &gr, buf, buflen, &grp);
  3015.     ], tcl_cv_api_getgrgid_r_5=yes, tcl_cv_api_getgrgid_r_5=no)])
  3016.     tcl_ok=$tcl_cv_api_getgrgid_r_5
  3017.     if test "$tcl_ok" = yes; then
  3018. AC_DEFINE(HAVE_GETGRGID_R_5)
  3019.     else
  3020. AC_CACHE_CHECK([for getgrgid_r with 4 args], tcl_cv_api_getgrgid_r_4, [
  3021. AC_TRY_COMPILE([
  3022.     #include <sys/types.h>
  3023.     #include <grp.h>
  3024. ], [
  3025.     gid_t gid;
  3026.     struct group gr;
  3027.     char buf[512];
  3028.     int buflen = 512;
  3029.     (void)getgrgid_r(gid, &gr, buf, buflen);
  3030. ], tcl_cv_api_getgrgid_r_4=yes, tcl_cv_api_getgrgid_r_4=no)])
  3031. tcl_ok=$tcl_cv_api_getgrgid_r_4
  3032. if test "$tcl_ok" = yes; then
  3033.     AC_DEFINE(HAVE_GETGRGID_R_4)
  3034. fi
  3035.     fi
  3036.     if test "$tcl_ok" = yes; then
  3037. AC_DEFINE(HAVE_GETGRGID_R)
  3038.     fi
  3039. ])])
  3040. #--------------------------------------------------------------------
  3041. # SC_TCL_GETGRNAM_R
  3042. #
  3043. # Check if we have MT-safe variant of getgrnam() and if yes,
  3044. # which one exactly.
  3045. #
  3046. # Arguments:
  3047. # None
  3048. #
  3049. # Results:
  3050. #
  3051. # Might define the following vars:
  3052. # HAVE_GETGRNAM_R
  3053. # HAVE_GETGRNAM_R_4
  3054. # HAVE_GETGRNAM_R_5
  3055. #
  3056. #--------------------------------------------------------------------
  3057. AC_DEFUN([SC_TCL_GETGRNAM_R], [AC_CHECK_FUNC(getgrnam_r, [
  3058.     AC_CACHE_CHECK([for getgrnam_r with 5 args], tcl_cv_api_getgrnam_r_5, [
  3059.     AC_TRY_COMPILE([
  3060. #include <sys/types.h>
  3061. #include <grp.h>
  3062.     ], [
  3063. char *name;
  3064. struct group gr, *grp;
  3065. char buf[512];
  3066. int buflen = 512;
  3067. (void) getgrnam_r(name, &gr, buf, buflen, &grp);
  3068.     ], tcl_cv_api_getgrnam_r_5=yes, tcl_cv_api_getgrnam_r_5=no)])
  3069.     tcl_ok=$tcl_cv_api_getgrnam_r_5
  3070.     if test "$tcl_ok" = yes; then
  3071. AC_DEFINE(HAVE_GETGRNAM_R_5)
  3072.     else
  3073. AC_CACHE_CHECK([for getgrnam_r with 4 args], tcl_cv_api_getgrnam_r_4, [
  3074. AC_TRY_COMPILE([
  3075.     #include <sys/types.h>
  3076.     #include <grp.h>
  3077. ], [
  3078.     char *name;
  3079.     struct group gr;
  3080.     char buf[512];
  3081.     int buflen = 512;
  3082.     (void)getgrnam_r(name, &gr, buf, buflen);
  3083. ], tcl_cv_api_getgrnam_r_4=yes, tcl_cv_api_getgrnam_r_4=no)])
  3084. tcl_ok=$tcl_cv_api_getgrnam_r_4
  3085. if test "$tcl_ok" = yes; then
  3086.     AC_DEFINE(HAVE_GETGRNAM_R_4)
  3087. fi
  3088.     fi
  3089.     if test "$tcl_ok" = yes; then
  3090. AC_DEFINE(HAVE_GETGRNAM_R)
  3091.     fi
  3092. ])])
  3093. #--------------------------------------------------------------------
  3094. # SC_CONFIG_COMMANDS_PRE(CMDS)
  3095. #
  3096. # Replacement for autoconf 2.5x AC_COMMANDS_PRE:
  3097. # Commands to run right before config.status is
  3098. # created. Accumulates.
  3099. #
  3100. # Requires presence of SC_OUTPUT_COMMANDS_PRE at the end
  3101. # of configure.in (right before AC_OUTPUT).
  3102. #
  3103. #--------------------------------------------------------------------
  3104. AC_DEFUN([SC_CONFIG_COMMANDS_PRE], [
  3105.     define([SC_OUTPUT_COMMANDS_PRE], defn([SC_OUTPUT_COMMANDS_PRE])[$1
  3106. ])])
  3107. AC_DEFUN([SC_OUTPUT_COMMANDS_PRE])