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

通讯编程

开发平台:

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. GNU*)
  1292.     SHLIB_CFLAGS="-fPIC"
  1293.     SHLIB_LD_LIBS='${LIBS}'
  1294.     SHLIB_SUFFIX=".so"
  1295.     if test "$have_dl" = yes; then
  1296. SHLIB_LD="${CC} -shared"
  1297. DL_OBJS=""
  1298. DL_LIBS="-ldl"
  1299. LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
  1300. CC_SEARCH_FLAGS=""
  1301. LD_SEARCH_FLAGS=""
  1302.     else
  1303. AC_CHECK_HEADER(dld.h, [
  1304.     SHLIB_LD="ld -shared"
  1305.     DL_OBJS=""
  1306.     DL_LIBS="-ldld"
  1307.     CC_SEARCH_FLAGS=""
  1308.     LD_SEARCH_FLAGS=""])
  1309.     fi
  1310.     if test "`uname -m`" = "alpha" ; then
  1311. CFLAGS="$CFLAGS -mieee"
  1312.     fi
  1313.     ;;
  1314. Lynx*)
  1315.     SHLIB_CFLAGS="-fPIC"
  1316.     SHLIB_LD_LIBS='${LIBS}'
  1317.     SHLIB_SUFFIX=".so"
  1318.     CFLAGS_OPTIMIZE=-02
  1319.     SHLIB_LD="${CC} -shared "
  1320.     DL_OBJS="tclLoadDl.o"
  1321.     DL_LIBS="-mshared -ldl"
  1322.     LD_FLAGS="-Wl,--export-dynamic"
  1323.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1324.     LD_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1325.     ;;
  1326. MP-RAS-02*)
  1327.     SHLIB_CFLAGS="-K PIC"
  1328.     SHLIB_LD="cc -G"
  1329.     SHLIB_LD_LIBS=""
  1330.     SHLIB_SUFFIX=".so"
  1331.     DL_OBJS="tclLoadDl.o"
  1332.     DL_LIBS="-ldl"
  1333.     CC_SEARCH_FLAGS=""
  1334.     LD_SEARCH_FLAGS=""
  1335.     ;;
  1336. MP-RAS-*)
  1337.     SHLIB_CFLAGS="-K PIC"
  1338.     SHLIB_LD="cc -G"
  1339.     SHLIB_LD_LIBS=""
  1340.     SHLIB_SUFFIX=".so"
  1341.     DL_OBJS="tclLoadDl.o"
  1342.     DL_LIBS="-ldl"
  1343.     LDFLAGS="$LDFLAGS -Wl,-Bexport"
  1344.     CC_SEARCH_FLAGS=""
  1345.     LD_SEARCH_FLAGS=""
  1346.     ;;
  1347. NetBSD-*|FreeBSD-[[1-2]].*)
  1348.     # Not available on all versions:  check for include file.
  1349.     AC_CHECK_HEADER(dlfcn.h, [
  1350. # NetBSD/SPARC needs -fPIC, -fpic will not do.
  1351. SHLIB_CFLAGS="-fPIC"
  1352. SHLIB_LD="ld -Bshareable -x"
  1353. SHLIB_LD_LIBS='${LIBS}'
  1354. SHLIB_SUFFIX=".so"
  1355. DL_OBJS="tclLoadDl.o"
  1356. DL_LIBS=""
  1357. CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1358. LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1359. AC_CACHE_CHECK([for ELF], tcl_cv_ld_elf, [
  1360.     AC_EGREP_CPP(yes, [
  1361. #ifdef __ELF__
  1362. yes
  1363. #endif
  1364.     ], tcl_cv_ld_elf=yes, tcl_cv_ld_elf=no)])
  1365. if test $tcl_cv_ld_elf = yes; then
  1366.     SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so'
  1367. else
  1368.     SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so.1.0'
  1369. fi
  1370.     ], [
  1371. SHLIB_CFLAGS=""
  1372. SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r"
  1373. SHLIB_LD_LIBS='${LIBS}'
  1374. SHLIB_SUFFIX=".a"
  1375. DL_OBJS="tclLoadAout.o"
  1376. DL_LIBS=""
  1377. CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1378. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1379. SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1380.     ])
  1381.     # FreeBSD doesn't handle version numbers with dots.
  1382.     UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1383.     TCL_LIB_VERSIONS_OK=nodots
  1384.     ;;
  1385. OpenBSD-*)
  1386.     case `arch -s` in
  1387.     m88k|vax)
  1388. SHLIB_CFLAGS=""
  1389. SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r"
  1390. SHLIB_LD_LIBS='${LIBS}'
  1391. SHLIB_SUFFIX=".a"
  1392. DL_OBJS="tclLoadAout.o"
  1393. DL_LIBS=""
  1394. LDFLAGS=""
  1395. CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1396. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1397. SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1398. ;;
  1399.     *)
  1400. # OpenBSD/SPARC[64] needs -fPIC, -fpic will not do.
  1401. case `machine` in
  1402. sparc|sparc64)
  1403.     SHLIB_CFLAGS="-fPIC";;
  1404.         *)
  1405.     SHLIB_CFLAGS="-fpic";;
  1406.         esac
  1407. SHLIB_LD="${CC} -shared ${SHLIB_CFLAGS}"
  1408. SHLIB_LD_LIBS='${LIBS}'
  1409. SHLIB_SUFFIX=".so"
  1410. DL_OBJS="tclLoadDl.o"
  1411. DL_LIBS=""
  1412. CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1413. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1414. SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so.1.0'
  1415. AC_CACHE_CHECK([for ELF], tcl_cv_ld_elf, [
  1416.     AC_EGREP_CPP(yes, [
  1417. #ifdef __ELF__
  1418. yes
  1419. #endif
  1420.     ], tcl_cv_ld_elf=yes, tcl_cv_ld_elf=no)])
  1421. if test $tcl_cv_ld_elf = yes; then
  1422.     LDFLAGS=-Wl,-export-dynamic
  1423. else
  1424.     LDFLAGS=""
  1425.         fi
  1426. ;;
  1427.     esac
  1428.     # OpenBSD doesn't do version numbers with dots.
  1429.     UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1430.     TCL_LIB_VERSIONS_OK=nodots
  1431.     ;;
  1432. FreeBSD-*)
  1433.     # FreeBSD 3.* and greater have ELF.
  1434.     SHLIB_CFLAGS="-fPIC"
  1435.     SHLIB_LD="ld -Bshareable -x"
  1436.     SHLIB_LD_LIBS='${LIBS}'
  1437.     SHLIB_SUFFIX=".so"
  1438.     DL_OBJS="tclLoadDl.o"
  1439.     DL_LIBS=""
  1440.     LDFLAGS="$LDFLAGS -export-dynamic"
  1441.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1442.     LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1443.     if test "${TCL_THREADS}" = "1" ; then
  1444. # The -pthread needs to go in the CFLAGS, not LIBS
  1445. LIBS=`echo $LIBS | sed s/-pthread//`
  1446. CFLAGS="$CFLAGS -pthread"
  1447.      LDFLAGS="$LDFLAGS -pthread"
  1448.     fi
  1449.     case $system in
  1450.     FreeBSD-3.*)
  1451.      # FreeBSD-3 doesn't handle version numbers with dots.
  1452.      UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1453.      SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so'
  1454.      TCL_LIB_VERSIONS_OK=nodots
  1455. ;;
  1456.     esac
  1457.     ;;
  1458. Darwin-*)
  1459.     CFLAGS_OPTIMIZE="-Os"
  1460.     SHLIB_CFLAGS="-fno-common"
  1461.     # To avoid discrepancies between what headers configure sees during
  1462.     # preprocessing tests and compiling tests, move any -isysroot and
  1463.     # -mmacosx-version-min flags from CFLAGS to CPPFLAGS:
  1464.     CPPFLAGS="${CPPFLAGS} `echo " ${CFLAGS}" | 
  1465. awk 'BEGIN {FS=" +-";ORS=" "}; {for (i=2;i<=NF;i++) 
  1466. if ([$]i~/^(isysroot|mmacosx-version-min)/) print "-"[$]i}'`"
  1467.     CFLAGS="`echo " ${CFLAGS}" | 
  1468. awk 'BEGIN {FS=" +-";ORS=" "}; {for (i=2;i<=NF;i++) 
  1469. if (!([$]i~/^(isysroot|mmacosx-version-min)/)) print "-"[$]i}'`"
  1470.     if test $do64bit = yes; then
  1471. case `arch` in
  1472.     ppc)
  1473. AC_CACHE_CHECK([if compiler accepts -arch ppc64 flag],
  1474. tcl_cv_cc_arch_ppc64, [
  1475.     hold_cflags=$CFLAGS
  1476.     CFLAGS="$CFLAGS -arch ppc64 -mpowerpc64 -mcpu=G5"
  1477.     AC_TRY_LINK(,, tcl_cv_cc_arch_ppc64=yes,
  1478.     tcl_cv_cc_arch_ppc64=no)
  1479.     CFLAGS=$hold_cflags])
  1480. if test $tcl_cv_cc_arch_ppc64 = yes; then
  1481.     CFLAGS="$CFLAGS -arch ppc64 -mpowerpc64 -mcpu=G5"
  1482.     do64bit_ok=yes
  1483. fi;;
  1484.     i386)
  1485. AC_CACHE_CHECK([if compiler accepts -arch x86_64 flag],
  1486. tcl_cv_cc_arch_x86_64, [
  1487.     hold_cflags=$CFLAGS
  1488.     CFLAGS="$CFLAGS -arch x86_64"
  1489.     AC_TRY_LINK(,, tcl_cv_cc_arch_x86_64=yes,
  1490.     tcl_cv_cc_arch_x86_64=no)
  1491.     CFLAGS=$hold_cflags])
  1492. if test $tcl_cv_cc_arch_x86_64 = yes; then
  1493.     CFLAGS="$CFLAGS -arch x86_64"
  1494.     do64bit_ok=yes
  1495. fi;;
  1496.     *)
  1497. AC_MSG_WARN([Don't know how enable 64-bit on architecture `arch`]);;
  1498. esac
  1499.     else
  1500. # Check for combined 32-bit and 64-bit fat build
  1501. echo "$CFLAGS " | grep -E -q -- '-arch (ppc64|x86_64) ' && 
  1502.     echo "$CFLAGS " | grep -E -q -- '-arch (ppc|i386) ' && 
  1503.     fat_32_64=yes
  1504.     fi
  1505.     SHLIB_LD='${CC} -dynamiclib ${CFLAGS} ${LDFLAGS}'
  1506.     AC_CACHE_CHECK([if ld accepts -single_module flag], tcl_cv_ld_single_module, [
  1507. hold_ldflags=$LDFLAGS
  1508. LDFLAGS="$LDFLAGS -dynamiclib -Wl,-single_module"
  1509. AC_TRY_LINK(, [int i;], tcl_cv_ld_single_module=yes, tcl_cv_ld_single_module=no)
  1510. LDFLAGS=$hold_ldflags])
  1511.     if test $tcl_cv_ld_single_module = yes; then
  1512. SHLIB_LD="${SHLIB_LD} -Wl,-single_module"
  1513.     fi
  1514.     SHLIB_LD_LIBS='${LIBS}'
  1515.     SHLIB_SUFFIX=".dylib"
  1516.     DL_OBJS="tclLoadDyld.o"
  1517.     DL_LIBS=""
  1518.     # Don't use -prebind when building for Mac OS X 10.4 or later only:
  1519.     test "`echo "${MACOSX_DEPLOYMENT_TARGET}" | awk -F '10\.' '{print int([$]2)}'`" -lt 4 -a 
  1520. "`echo "${CPPFLAGS}" | awk -F '-mmacosx-version-min=10\.' '{print int([$]2)}'`" -lt 4 && 
  1521. LDFLAGS="$LDFLAGS -prebind"
  1522.     LDFLAGS="$LDFLAGS -headerpad_max_install_names"
  1523.     AC_CACHE_CHECK([if ld accepts -search_paths_first flag], tcl_cv_ld_search_paths_first, [
  1524. hold_ldflags=$LDFLAGS
  1525. LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
  1526. AC_TRY_LINK(, [int i;], tcl_cv_ld_search_paths_first=yes, tcl_cv_ld_search_paths_first=no)
  1527. LDFLAGS=$hold_ldflags])
  1528.     if test $tcl_cv_ld_search_paths_first = yes; then
  1529. LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
  1530.     fi
  1531.     CC_SEARCH_FLAGS=""
  1532.     LD_SEARCH_FLAGS=""
  1533.     LD_LIBRARY_PATH_VAR="DYLD_LIBRARY_PATH"
  1534.     PLAT_OBJS=$(MAC_OSX_OBJS)
  1535.     PLAT_SRCS=$(MAC_OSX_SRCS)
  1536.     AC_MSG_CHECKING([whether to use CoreFoundation])
  1537.     AC_ARG_ENABLE(corefoundation, [  --enable-corefoundation use CoreFoundation API [--enable-corefoundation]],
  1538. [tcl_corefoundation=$enableval], [tcl_corefoundation=yes])
  1539.     AC_MSG_RESULT([$tcl_corefoundation])
  1540.     if test $tcl_corefoundation = yes; then
  1541. AC_CACHE_CHECK([for CoreFoundation.framework], tcl_cv_lib_corefoundation, [
  1542.     hold_libs=$LIBS
  1543.     if test "$fat_32_64" = yes; then for v in CFLAGS CPPFLAGS LDFLAGS; do
  1544. # On Tiger there is no 64-bit CF, so remove 64-bit archs
  1545. # from CFLAGS et al. while testing for presence of CF.
  1546. # 64-bit CF is disabled in tclUnixPort.h if necessary.
  1547. eval 'hold_'$v'="$'$v'";'$v'="`echo "$'$v' "|sed -e "s/-arch ppc64 / /g" -e "s/-arch x86_64 / /g"`"'
  1548.     done; fi
  1549.     LIBS="$LIBS -framework CoreFoundation"
  1550.     AC_TRY_LINK([#include <CoreFoundation/CoreFoundation.h>], 
  1551. [CFBundleRef b = CFBundleGetMainBundle();], 
  1552. tcl_cv_lib_corefoundation=yes, tcl_cv_lib_corefoundation=no)
  1553.     if test "$fat_32_64" = yes; then for v in CFLAGS CPPFLAGS LDFLAGS; do
  1554. eval $v'="$hold_'$v'"'
  1555.     done; fi; LIBS=$hold_libs])
  1556. if test $tcl_cv_lib_corefoundation = yes; then
  1557.     LIBS="$LIBS -framework CoreFoundation"
  1558.     AC_DEFINE(HAVE_COREFOUNDATION)
  1559. else
  1560.     tcl_corefoundation=no
  1561. fi
  1562. if test "$fat_32_64" = yes -a $tcl_corefoundation = yes; then
  1563.     AC_CACHE_CHECK([for 64-bit CoreFoundation], tcl_cv_lib_corefoundation_64, [
  1564. for v in CFLAGS CPPFLAGS LDFLAGS; do
  1565.     eval 'hold_'$v'="$'$v'";'$v'="`echo "$'$v' "|sed -e "s/-arch ppc / /g" -e "s/-arch i386 / /g"`"'
  1566. done
  1567. AC_TRY_LINK([#include <CoreFoundation/CoreFoundation.h>], 
  1568.     [CFBundleRef b = CFBundleGetMainBundle();], 
  1569.     tcl_cv_lib_corefoundation_64=yes, tcl_cv_lib_corefoundation_64=no)
  1570. for v in CFLAGS CPPFLAGS LDFLAGS; do
  1571.     eval $v'="$hold_'$v'"'
  1572. done])
  1573.     if test $tcl_cv_lib_corefoundation_64 = no; then
  1574. AC_DEFINE(NO_COREFOUNDATION_64)
  1575.     fi
  1576. fi
  1577.     fi
  1578.     AC_DEFINE(MAC_OSX_TCL)
  1579.     ;;
  1580. NEXTSTEP-*)
  1581.     SHLIB_CFLAGS=""
  1582.     SHLIB_LD="cc -nostdlib -r"
  1583.     SHLIB_LD_LIBS=""
  1584.     SHLIB_SUFFIX=".so"
  1585.     DL_OBJS="tclLoadNext.o"
  1586.     DL_LIBS=""
  1587.     CC_SEARCH_FLAGS=""
  1588.     LD_SEARCH_FLAGS=""
  1589.     ;;
  1590. OS/390-*)
  1591.     CFLAGS_OPTIMIZE="" # Optimizer is buggy
  1592.     AC_DEFINE(_OE_SOCKETS) # needed in sys/socket.h
  1593.     ;;      
  1594. OSF1-1.0|OSF1-1.1|OSF1-1.2)
  1595.     # OSF/1 1.[012] from OSF, and derivatives, including Paragon OSF/1
  1596.     SHLIB_CFLAGS=""
  1597.     # Hack: make package name same as library name
  1598.     SHLIB_LD='ld -R -export $@:'
  1599.     SHLIB_LD_LIBS=""
  1600.     SHLIB_SUFFIX=".so"
  1601.     DL_OBJS="tclLoadOSF.o"
  1602.     DL_LIBS=""
  1603.     CC_SEARCH_FLAGS=""
  1604.     LD_SEARCH_FLAGS=""
  1605.     ;;
  1606. OSF1-1.*)
  1607.     # OSF/1 1.3 from OSF using ELF, and derivatives, including AD2
  1608.     SHLIB_CFLAGS="-fPIC"
  1609.     if test "$SHARED_BUILD" = "1" ; then
  1610.         SHLIB_LD="ld -shared"
  1611.     else
  1612.         SHLIB_LD="ld -non_shared"
  1613.     fi
  1614.     SHLIB_LD_LIBS=""
  1615.     SHLIB_SUFFIX=".so"
  1616.     DL_OBJS="tclLoadDl.o"
  1617.     DL_LIBS=""
  1618.     CC_SEARCH_FLAGS=""
  1619.     LD_SEARCH_FLAGS=""
  1620.     ;;
  1621. OSF1-V*)
  1622.     # Digital OSF/1
  1623.     SHLIB_CFLAGS=""
  1624.     if test "$SHARED_BUILD" = "1" ; then
  1625.         SHLIB_LD='ld -shared -expect_unresolved "*"'
  1626.     else
  1627.         SHLIB_LD='ld -non_shared -expect_unresolved "*"'
  1628.     fi
  1629.     SHLIB_LD_LIBS=""
  1630.     SHLIB_SUFFIX=".so"
  1631.     DL_OBJS="tclLoadDl.o"
  1632.     DL_LIBS=""
  1633.     CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
  1634.     LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
  1635.     if test "$GCC" = "yes" ; then
  1636. CFLAGS="$CFLAGS -mieee"
  1637.             else
  1638. CFLAGS="$CFLAGS -DHAVE_TZSET -std1 -ieee"
  1639.     fi
  1640.     # see pthread_intro(3) for pthread support on osf1, k.furukawa
  1641.     if test "${TCL_THREADS}" = "1" ; then
  1642. CFLAGS="$CFLAGS -DHAVE_PTHREAD_ATTR_SETSTACKSIZE"
  1643. CFLAGS="$CFLAGS -DTCL_THREAD_STACK_MIN=PTHREAD_STACK_MIN*64"
  1644. LIBS=`echo $LIBS | sed s/-lpthreads//`
  1645. if test "$GCC" = "yes" ; then
  1646.     LIBS="$LIBS -lpthread -lmach -lexc"
  1647. else
  1648.     CFLAGS="$CFLAGS -pthread"
  1649.     LDFLAGS="$LDFLAGS -pthread"
  1650. fi
  1651.     fi
  1652.     ;;
  1653. QNX-6*)
  1654.     # QNX RTP
  1655.     # This may work for all QNX, but it was only reported for v6.
  1656.     SHLIB_CFLAGS="-fPIC"
  1657.     SHLIB_LD="ld -Bshareable -x"
  1658.     SHLIB_LD_LIBS=""
  1659.     SHLIB_SUFFIX=".so"
  1660.     DL_OBJS="tclLoadDl.o"
  1661.     # dlopen is in -lc on QNX
  1662.     DL_LIBS=""
  1663.     CC_SEARCH_FLAGS=""
  1664.     LD_SEARCH_FLAGS=""
  1665.     ;;
  1666. RISCos-*)
  1667.     SHLIB_CFLAGS="-G 0"
  1668.     SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r -G 0"
  1669.     SHLIB_LD_LIBS='${LIBS}'
  1670.     SHLIB_SUFFIX=".a"
  1671.     DL_OBJS="tclLoadAout.o"
  1672.     DL_LIBS=""
  1673.     LDFLAGS="$LDFLAGS -Wl,-D,08000000"
  1674.     CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1675.     LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1676.     ;;
  1677. SCO_SV-3.2*)
  1678.     # Note, dlopen is available only on SCO 3.2.5 and greater. However,
  1679.     # this test works, since "uname -s" was non-standard in 3.2.4 and
  1680.     # below.
  1681.     if test "$GCC" = "yes" ; then
  1682.      SHLIB_CFLAGS="-fPIC -melf"
  1683.      LDFLAGS="$LDFLAGS -melf -Wl,-Bexport"
  1684.     else
  1685.      SHLIB_CFLAGS="-Kpic -belf"
  1686.      LDFLAGS="$LDFLAGS -belf -Wl,-Bexport"
  1687.     fi
  1688.     SHLIB_LD="ld -G"
  1689.     SHLIB_LD_LIBS=""
  1690.     SHLIB_SUFFIX=".so"
  1691.     DL_OBJS="tclLoadDl.o"
  1692.     DL_LIBS=""
  1693.     CC_SEARCH_FLAGS=""
  1694.     LD_SEARCH_FLAGS=""
  1695.     ;;
  1696. SINIX*5.4*)
  1697.     SHLIB_CFLAGS="-K PIC"
  1698.     SHLIB_LD="cc -G"
  1699.     SHLIB_LD_LIBS=""
  1700.     SHLIB_SUFFIX=".so"
  1701.     DL_OBJS="tclLoadDl.o"
  1702.     DL_LIBS="-ldl"
  1703.     CC_SEARCH_FLAGS=""
  1704.     LD_SEARCH_FLAGS=""
  1705.     ;;
  1706. SunOS-4*)
  1707.     SHLIB_CFLAGS="-PIC"
  1708.     SHLIB_LD="ld"
  1709.     SHLIB_LD_LIBS=""
  1710.     SHLIB_SUFFIX=".so"
  1711.     DL_OBJS="tclLoadDl.o"
  1712.     DL_LIBS="-ldl"
  1713.     CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1714.     LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1715.     # SunOS can't handle version numbers with dots in them in library
  1716.     # specs, like -ltcl7.5, so use -ltcl75 instead.  Also, it
  1717.     # requires an extra version number at the end of .so file names.
  1718.     # So, the library has to have a name like libtcl75.so.1.0
  1719.     SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.so.1.0'
  1720.     UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}${DBGX}.a'
  1721.     TCL_LIB_VERSIONS_OK=nodots
  1722.     ;;
  1723. SunOS-5.[[0-6]])
  1724.     # Careful to not let 5.10+ fall into this case
  1725.     # Note: If _REENTRANT isn't defined, then Solaris
  1726.     # won't define thread-safe library routines.
  1727.     AC_DEFINE(_REENTRANT)
  1728.     AC_DEFINE(_POSIX_PTHREAD_SEMANTICS)
  1729.     SHLIB_CFLAGS="-KPIC"
  1730.     # Note: need the LIBS below, otherwise Tk won't find Tcl's
  1731.     # symbols when dynamically loaded into tclsh.
  1732.     SHLIB_LD_LIBS='${LIBS}'
  1733.     SHLIB_SUFFIX=".so"
  1734.     DL_OBJS="tclLoadDl.o"
  1735.     DL_LIBS="-ldl"
  1736.     if test "$GCC" = "yes" ; then
  1737. SHLIB_LD="$CC -shared"
  1738. CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}'
  1739. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1740.     else
  1741. SHLIB_LD="/usr/ccs/bin/ld -G -z text"
  1742. CC_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}'
  1743. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1744.     fi
  1745.     ;;
  1746. SunOS-5*)
  1747.     # Note: If _REENTRANT isn't defined, then Solaris
  1748.     # won't define thread-safe library routines.
  1749.     AC_DEFINE(_REENTRANT)
  1750.     AC_DEFINE(_POSIX_PTHREAD_SEMANTICS)
  1751.     SHLIB_CFLAGS="-KPIC"
  1752.     # Check to enable 64-bit flags for compiler/linker
  1753.     if test "$do64bit" = "yes" ; then
  1754. arch=`isainfo`
  1755. if test "$arch" = "sparcv9 sparc" ; then
  1756. if test "$GCC" = "yes" ; then
  1757.     if test "`gcc -dumpversion | awk -F. '{print [$]1}'`" -lt "3" ; then
  1758. AC_MSG_WARN([64bit mode not supported with GCC < 3.2 on $system])
  1759.     else
  1760. do64bit_ok=yes
  1761. CFLAGS="$CFLAGS -m64 -mcpu=v9"
  1762. LDFLAGS="$LDFLAGS -m64 -mcpu=v9"
  1763. SHLIB_CFLAGS="-fPIC"
  1764.     fi
  1765. else
  1766.     do64bit_ok=yes
  1767.     if test "$do64bitVIS" = "yes" ; then
  1768. CFLAGS="$CFLAGS -xarch=v9a"
  1769.      LDFLAGS="$LDFLAGS -xarch=v9a"
  1770.     else
  1771. CFLAGS="$CFLAGS -xarch=v9"
  1772.      LDFLAGS="$LDFLAGS -xarch=v9"
  1773.     fi
  1774.     # Solaris 64 uses this as well
  1775.     #LD_LIBRARY_PATH_VAR="LD_LIBRARY_PATH_64"
  1776. fi
  1777. elif test "$arch" = "amd64 i386" ; then
  1778.     if test "$GCC" = "yes" ; then
  1779. AC_MSG_WARN([64bit mode not supported with GCC on $system])
  1780.     else
  1781. do64bit_ok=yes
  1782. CFLAGS="$CFLAGS -xarch=amd64"
  1783. LDFLAGS="$LDFLAGS -xarch=amd64"
  1784.     fi
  1785. else
  1786.     AC_MSG_WARN([64bit mode not supported for $arch])
  1787. fi
  1788.     fi
  1789.     
  1790.     # Note: need the LIBS below, otherwise Tk won't find Tcl's
  1791.     # symbols when dynamically loaded into tclsh.
  1792.     SHLIB_LD_LIBS='${LIBS}'
  1793.     SHLIB_SUFFIX=".so"
  1794.     DL_OBJS="tclLoadDl.o"
  1795.     DL_LIBS="-ldl"
  1796.     if test "$GCC" = "yes" ; then
  1797. SHLIB_LD="$CC -shared"
  1798. CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}'
  1799. LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1800. if test "$do64bit_ok" = "yes" ; then
  1801.     # We need to specify -static-libgcc or we need to
  1802.     # add the path to the sparv9 libgcc.
  1803.     SHLIB_LD="$SHLIB_LD -m64 -mcpu=v9 -static-libgcc"
  1804.     # for finding sparcv9 libgcc, get the regular libgcc
  1805.     # path, remove so name and append 'sparcv9'
  1806.     #v9gcclibdir="`gcc -print-file-name=libgcc_s.so` | ..."
  1807.     #CC_SEARCH_FLAGS="${CC_SEARCH_FLAGS},-R,$v9gcclibdir"
  1808. fi
  1809.     else
  1810. case $system in
  1811.     SunOS-5.[[1-9]][[0-9]]*)
  1812. SHLIB_LD='${CC} -G -z text';;
  1813.     *)
  1814. SHLIB_LD="/usr/ccs/bin/ld -G -z text";;
  1815. esac
  1816. CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}'
  1817. LD_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}'
  1818.     fi
  1819.     ;;
  1820. ULTRIX-4.*)
  1821.     SHLIB_CFLAGS="-G 0"
  1822.     SHLIB_SUFFIX=".a"
  1823.     SHLIB_LD="echo tclLdAout $CC {$SHLIB_CFLAGS} | `pwd`/tclsh -r -G 0"
  1824.     SHLIB_LD_LIBS='${LIBS}'
  1825.     DL_OBJS="tclLoadAout.o"
  1826.     DL_LIBS=""
  1827.     LDFLAGS="$LDFLAGS -Wl,-D,08000000"
  1828.     CC_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}'
  1829.     LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  1830.     if test "$GCC" != "yes" ; then
  1831. CFLAGS="$CFLAGS -DHAVE_TZSET -std1"
  1832.     fi
  1833.     ;;
  1834. UNIX_SV* | UnixWare-5*)
  1835.     SHLIB_CFLAGS="-KPIC"
  1836.     SHLIB_LD="cc -G"
  1837.     SHLIB_LD_LIBS=""
  1838.     SHLIB_SUFFIX=".so"
  1839.     DL_OBJS="tclLoadDl.o"
  1840.     DL_LIBS="-ldl"
  1841.     # Some UNIX_SV* systems (unixware 1.1.2 for example) have linkers
  1842.     # that don't grok the -Bexport option.  Test that it does.
  1843.     AC_CACHE_CHECK([for ld accepts -Bexport flag], tcl_cv_ld_Bexport, [
  1844. hold_ldflags=$LDFLAGS
  1845. LDFLAGS="$LDFLAGS -Wl,-Bexport"
  1846. AC_TRY_LINK(, [int i;], tcl_cv_ld_Bexport=yes, tcl_cv_ld_Bexport=no)
  1847.         LDFLAGS=$hold_ldflags])
  1848.     if test $tcl_cv_ld_Bexport = yes; then
  1849. LDFLAGS="$LDFLAGS -Wl,-Bexport"
  1850.     fi
  1851.     CC_SEARCH_FLAGS=""
  1852.     LD_SEARCH_FLAGS=""
  1853.     ;;
  1854.     esac
  1855.     if test "$do64bit" = "yes" -a "$do64bit_ok" = "no" ; then
  1856. AC_MSG_WARN([64bit support being disabled -- don't know magic for this platform])
  1857.     fi
  1858. dnl # Add any CPPFLAGS set in the environment to our CFLAGS, but delay doing so
  1859. dnl # until the end of configure, as configure's compile and link tests use
  1860. dnl # both CPPFLAGS and CFLAGS (unlike our compile and link) but configure's
  1861. dnl # preprocessing tests use only CPPFLAGS.
  1862.     SC_CONFIG_COMMANDS_PRE([CFLAGS="${CFLAGS} ${CPPFLAGS}"; CPPFLAGS=""])
  1863.     # Step 4: If pseudo-static linking is in use (see K. B. Kenny, "Dynamic
  1864.     # Loading for Tcl -- What Became of It?".  Proc. 2nd Tcl/Tk Workshop,
  1865.     # New Orleans, LA, Computerized Processes Unlimited, 1994), then we need
  1866.     # to determine which of several header files defines the a.out file
  1867.     # format (a.out.h, sys/exec.h, or sys/exec_aout.h).  At present, we
  1868.     # support only a file format that is more or less version-7-compatible. 
  1869.     # In particular,
  1870.     # - a.out files must begin with `struct exec'.
  1871.     # - the N_TXTOFF on the `struct exec' must compute the seek address
  1872.     #   of the text segment
  1873.     # - The `struct exec' must contain a_magic, a_text, a_data, a_bss
  1874.     #   and a_entry fields.
  1875.     # The following compilation should succeed if and only if either sys/exec.h
  1876.     # or a.out.h is usable for the purpose.
  1877.     #
  1878.     # Note that the modified COFF format used on MIPS Ultrix 4.x is usable; the
  1879.     # `struct exec' includes a second header that contains information that
  1880.     # duplicates the v7 fields that are needed.
  1881.     if test "x$DL_OBJS" = "xtclLoadAout.o" ; then
  1882. AC_CACHE_CHECK([sys/exec.h], tcl_cv_sysexec_h, [
  1883. AC_TRY_COMPILE([#include <sys/exec.h>],[
  1884.     struct exec foo;
  1885.     unsigned long seek;
  1886.     int flag;
  1887. #if defined(__mips) || defined(mips)
  1888.     seek = N_TXTOFF (foo.ex_f, foo.ex_o);
  1889. #else
  1890.     seek = N_TXTOFF (foo);
  1891. #endif
  1892.     flag = (foo.a_magic == OMAGIC);
  1893.     return foo.a_text + foo.a_data + foo.a_bss + foo.a_entry;
  1894.     ], tcl_cv_sysexec_h=usable, tcl_cv_sysexec_h=unusable)])
  1895. if test $tcl_cv_sysexec_h = usable; then
  1896.     AC_DEFINE(USE_SYS_EXEC_H)
  1897. else
  1898.     AC_CACHE_CHECK([a.out.h], tcl_cv_aout_h, [
  1899.     AC_TRY_COMPILE([#include <a.out.h>],[
  1900. struct exec foo;
  1901. unsigned long seek;
  1902. int flag;
  1903. #if defined(__mips) || defined(mips)
  1904. seek = N_TXTOFF (foo.ex_f, foo.ex_o);
  1905. #else
  1906. seek = N_TXTOFF (foo);
  1907. #endif
  1908. flag = (foo.a_magic == OMAGIC);
  1909. return foo.a_text + foo.a_data + foo.a_bss + foo.a_entry;
  1910.     ], tcl_cv_aout_h=usable, tcl_cv_aout_h=unusable)])
  1911.     if test $tcl_cv_aout_h = usable; then
  1912. AC_DEFINE(USE_A_OUT_H)
  1913.     else
  1914. AC_CACHE_CHECK([sys/exec_aout.h], tcl_cv_sysexecaout_h, [
  1915. AC_TRY_COMPILE([#include <sys/exec_aout.h>],[
  1916.     struct exec foo;
  1917.     unsigned long seek;
  1918.     int flag;
  1919. #if defined(__mips) || defined(mips)
  1920.     seek = N_TXTOFF (foo.ex_f, foo.ex_o);
  1921. #else
  1922.     seek = N_TXTOFF (foo);
  1923. #endif
  1924.     flag = (foo.a_midmag == OMAGIC);
  1925.     return foo.a_text + foo.a_data + foo.a_bss + foo.a_entry;
  1926. ], tcl_cv_sysexecaout_h=usable, tcl_cv_sysexecaout_h=unusable)])
  1927. if test $tcl_cv_sysexecaout_h = usable; then
  1928.     AC_DEFINE(USE_SYS_EXEC_AOUT_H)
  1929. else
  1930.     DL_OBJS=""
  1931. fi
  1932.     fi
  1933. fi
  1934.     fi
  1935.     # Step 5: disable dynamic loading if requested via a command-line switch.
  1936.     AC_ARG_ENABLE(load, [  --disable-load          disallow dynamic loading and "load" command],
  1937. [tcl_ok=$enableval], [tcl_ok=yes])
  1938.     if test "$tcl_ok" = "no"; then
  1939. DL_OBJS=""
  1940.     fi
  1941.     if test "x$DL_OBJS" != "x" ; then
  1942. BUILD_DLTEST="$(DLTEST_TARGETS)"
  1943.     else
  1944. echo "Can't figure out how to do dynamic loading or shared libraries"
  1945. echo "on this system."
  1946. SHLIB_CFLAGS=""
  1947. SHLIB_LD=""
  1948. SHLIB_SUFFIX=""
  1949. DL_OBJS="tclLoadNone.o"
  1950. DL_LIBS=""
  1951. LDFLAGS="$LDFLAGS_ORIG"
  1952. CC_SEARCH_FLAGS=""
  1953. LD_SEARCH_FLAGS=""
  1954. BUILD_DLTEST=""
  1955.     fi
  1956.     # If we're running gcc, then change the C flags for compiling shared
  1957.     # libraries to the right flags for gcc, instead of those for the
  1958.     # standard manufacturer compiler.
  1959.     if test "$DL_OBJS" != "tclLoadNone.o" ; then
  1960. if test "$GCC" = "yes" ; then
  1961.     case $system in
  1962. AIX-*)
  1963.     ;;
  1964. BSD/OS*)
  1965.     ;;
  1966. IRIX*)
  1967.     ;;
  1968. NetBSD-*|FreeBSD-*|OpenBSD-*)
  1969.     ;;
  1970. Darwin-*)
  1971.     ;;
  1972. RISCos-*)
  1973.     ;;
  1974. SCO_SV-3.2*)
  1975.     ;;
  1976. ULTRIX-4.*)
  1977.     ;;
  1978. *)
  1979.     SHLIB_CFLAGS="-fPIC"
  1980.     ;;
  1981.     esac
  1982. fi
  1983.     fi
  1984.     if test "$SHARED_LIB_SUFFIX" = "" ; then
  1985. SHARED_LIB_SUFFIX='${VERSION}${DBGX}${SHLIB_SUFFIX}'
  1986.     fi
  1987.     if test "$UNSHARED_LIB_SUFFIX" = "" ; then
  1988. UNSHARED_LIB_SUFFIX='${VERSION}${DBGX}.a'
  1989.     fi
  1990.     if test "${SHARED_BUILD}" = "1" && test "${SHLIB_SUFFIX}" != "" ; then
  1991.         LIB_SUFFIX=${SHARED_LIB_SUFFIX}
  1992.         MAKE_LIB='${SHLIB_LD} -o [$]@ ${OBJS} ${SHLIB_LD_LIBS} ${TCL_SHLIB_LD_EXTRAS} ${TK_SHLIB_LD_EXTRAS} ${LD_SEARCH_FLAGS}'
  1993.         INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) $(LIB_INSTALL_DIR)/$(LIB_FILE)'
  1994.     else
  1995.         LIB_SUFFIX=${UNSHARED_LIB_SUFFIX}
  1996.         if test "$RANLIB" = "" ; then
  1997.             MAKE_LIB='$(STLIB_LD) [$]@ ${OBJS}'
  1998.             INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) $(LIB_INSTALL_DIR)/$(LIB_FILE)'
  1999.         else
  2000.             MAKE_LIB='${STLIB_LD} [$]@ ${OBJS} ; ${RANLIB} [$]@'
  2001.             INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) $(LIB_INSTALL_DIR)/$(LIB_FILE) ; (cd $(LIB_INSTALL_DIR) ; $(RANLIB) $(LIB_FILE))'
  2002.         fi
  2003. dnl        Not at all clear what this was doing in Tcl's configure.in
  2004. dnl        or why it was needed was needed. In any event, this sort of
  2005. dnl        things needs to be done in the big loop above.
  2006. dnl        REMOVE THIS BLOCK LATER! (mdejong)
  2007. dnl        case $system in
  2008. dnl            BSD/OS*)
  2009. dnl                ;;
  2010. dnl            AIX-[[1-4]].*)
  2011. dnl                ;;
  2012. dnl            *)
  2013. dnl                SHLIB_LD_LIBS=""
  2014. dnl                ;;
  2015. dnl        esac
  2016.     fi
  2017.     # Stub lib does not depend on shared/static configuration
  2018.     if test "$RANLIB" = "" ; then
  2019.         MAKE_STUB_LIB='${STLIB_LD} [$]@ ${STUB_LIB_OBJS}'
  2020.         INSTALL_STUB_LIB='$(INSTALL_LIBRARY) $(STUB_LIB_FILE) $(LIB_INSTALL_DIR)/$(STUB_LIB_FILE)'
  2021.     else
  2022.         MAKE_STUB_LIB='${STLIB_LD} [$]@ ${STUB_LIB_OBJS} ; ${RANLIB} [$]@'
  2023.         INSTALL_STUB_LIB='$(INSTALL_LIBRARY) $(STUB_LIB_FILE) $(LIB_INSTALL_DIR)/$(STUB_LIB_FILE) ; (cd $(LIB_INSTALL_DIR) ; $(RANLIB) $(STUB_LIB_FILE))'
  2024.     fi
  2025.     AC_SUBST(DL_LIBS)
  2026.     AC_SUBST(DL_OBJS)
  2027.     AC_SUBST(PLAT_OBJS)
  2028.     AC_SUBST(PLAT_SRCS)
  2029.     AC_SUBST(CFLAGS)
  2030.     AC_SUBST(CFLAGS_DEBUG)
  2031.     AC_SUBST(CFLAGS_OPTIMIZE)
  2032.     AC_SUBST(CFLAGS_WARNING)
  2033.     AC_SUBST(LDFLAGS)
  2034.     AC_SUBST(LDFLAGS_DEBUG)
  2035.     AC_SUBST(LDFLAGS_OPTIMIZE)
  2036.     AC_SUBST(CC_SEARCH_FLAGS)
  2037.     AC_SUBST(LD_SEARCH_FLAGS)
  2038.     AC_SUBST(STLIB_LD)
  2039.     AC_SUBST(SHLIB_LD)
  2040.     AC_SUBST(TCL_SHLIB_LD_EXTRAS)
  2041.     AC_SUBST(TK_SHLIB_LD_EXTRAS)
  2042.     AC_SUBST(SHLIB_LD_LIBS)
  2043.     AC_SUBST(SHLIB_CFLAGS)
  2044.     AC_SUBST(SHLIB_SUFFIX)
  2045.     AC_SUBST(MAKE_LIB)
  2046.     AC_SUBST(MAKE_STUB_LIB)
  2047.     AC_SUBST(INSTALL_LIB)
  2048.     AC_SUBST(INSTALL_STUB_LIB)
  2049.     AC_SUBST(RANLIB)
  2050. ])
  2051. #--------------------------------------------------------------------
  2052. # SC_SERIAL_PORT
  2053. #
  2054. # Determine which interface to use to talk to the serial port.
  2055. # Note that #include lines must begin in leftmost column for
  2056. # some compilers to recognize them as preprocessor directives,
  2057. # and some build environments have stdin not pointing at a
  2058. # pseudo-terminal (usually /dev/null instead.)
  2059. #
  2060. # Arguments:
  2061. # none
  2062. #
  2063. # Results:
  2064. #
  2065. # Defines only one of the following vars:
  2066. # HAVE_SYS_MODEM_H
  2067. # USE_TERMIOS
  2068. # USE_TERMIO
  2069. # USE_SGTTY
  2070. #
  2071. #--------------------------------------------------------------------
  2072. AC_DEFUN([SC_SERIAL_PORT], [
  2073.     AC_CHECK_HEADERS(sys/modem.h)
  2074.     AC_CACHE_CHECK([termios vs. termio vs. sgtty], tcl_cv_api_serial, [
  2075.     AC_TRY_RUN([
  2076. #include <termios.h>
  2077. int main() {
  2078.     struct termios t;
  2079.     if (tcgetattr(0, &t) == 0) {
  2080. cfsetospeed(&t, 0);
  2081. t.c_cflag |= PARENB | PARODD | CSIZE | CSTOPB;
  2082. return 0;
  2083.     }
  2084.     return 1;
  2085. }], tcl_cv_api_serial=termios, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2086.     if test $tcl_cv_api_serial = no ; then
  2087. AC_TRY_RUN([
  2088. #include <termio.h>
  2089. int main() {
  2090.     struct termio t;
  2091.     if (ioctl(0, TCGETA, &t) == 0) {
  2092. t.c_cflag |= CBAUD | PARENB | PARODD | CSIZE | CSTOPB;
  2093. return 0;
  2094.     }
  2095.     return 1;
  2096. }], tcl_cv_api_serial=termio, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2097.     fi
  2098.     if test $tcl_cv_api_serial = no ; then
  2099. AC_TRY_RUN([
  2100. #include <sgtty.h>
  2101. int main() {
  2102.     struct sgttyb t;
  2103.     if (ioctl(0, TIOCGETP, &t) == 0) {
  2104. t.sg_ospeed = 0;
  2105. t.sg_flags |= ODDP | EVENP | RAW;
  2106. return 0;
  2107.     }
  2108.     return 1;
  2109. }], tcl_cv_api_serial=sgtty, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2110.     fi
  2111.     if test $tcl_cv_api_serial = no ; then
  2112. AC_TRY_RUN([
  2113. #include <termios.h>
  2114. #include <errno.h>
  2115. int main() {
  2116.     struct termios t;
  2117.     if (tcgetattr(0, &t) == 0
  2118. || errno == ENOTTY || errno == ENXIO || errno == EINVAL) {
  2119. cfsetospeed(&t, 0);
  2120. t.c_cflag |= PARENB | PARODD | CSIZE | CSTOPB;
  2121. return 0;
  2122.     }
  2123.     return 1;
  2124. }], tcl_cv_api_serial=termios, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2125.     fi
  2126.     if test $tcl_cv_api_serial = no; then
  2127. AC_TRY_RUN([
  2128. #include <termio.h>
  2129. #include <errno.h>
  2130. int main() {
  2131.     struct termio t;
  2132.     if (ioctl(0, TCGETA, &t) == 0
  2133. || errno == ENOTTY || errno == ENXIO || errno == EINVAL) {
  2134. t.c_cflag |= CBAUD | PARENB | PARODD | CSIZE | CSTOPB;
  2135. return 0;
  2136.     }
  2137.     return 1;
  2138.     }], tcl_cv_api_serial=termio, tcl_cv_api_serial=no, tcl_cv_api_serial=no)
  2139.     fi
  2140.     if test $tcl_cv_api_serial = no; then
  2141. AC_TRY_RUN([
  2142. #include <sgtty.h>
  2143. #include <errno.h>
  2144. int main() {
  2145.     struct sgttyb t;
  2146.     if (ioctl(0, TIOCGETP, &t) == 0
  2147. || errno == ENOTTY || errno == ENXIO || errno == EINVAL) {
  2148. t.sg_ospeed = 0;
  2149. t.sg_flags |= ODDP | EVENP | RAW;
  2150. return 0;
  2151.     }
  2152.     return 1;
  2153. }], tcl_cv_api_serial=sgtty, tcl_cv_api_serial=none, tcl_cv_api_serial=none)
  2154.     fi])
  2155.     case $tcl_cv_api_serial in
  2156. termios) AC_DEFINE(USE_TERMIOS);;
  2157. termio)  AC_DEFINE(USE_TERMIO);;
  2158. sgtty)   AC_DEFINE(USE_SGTTY);;
  2159.     esac
  2160. ])
  2161. #--------------------------------------------------------------------
  2162. # SC_MISSING_POSIX_HEADERS
  2163. #
  2164. # Supply substitutes for missing POSIX header files.  Special
  2165. # notes:
  2166. #     - stdlib.h doesn't define strtol, strtoul, or
  2167. #       strtod insome versions of SunOS
  2168. #     - some versions of string.h don't declare procedures such
  2169. #       as strstr
  2170. #
  2171. # Arguments:
  2172. # none
  2173. #
  2174. # Results:
  2175. #
  2176. # Defines some of the following vars:
  2177. # NO_DIRENT_H
  2178. # NO_ERRNO_H
  2179. # NO_VALUES_H
  2180. # HAVE_LIMITS_H or NO_LIMITS_H
  2181. # NO_STDLIB_H
  2182. # NO_STRING_H
  2183. # NO_SYS_WAIT_H
  2184. # NO_DLFCN_H
  2185. # HAVE_UNISTD_H
  2186. # HAVE_SYS_PARAM_H
  2187. #
  2188. # HAVE_STRING_H ?
  2189. #
  2190. #--------------------------------------------------------------------
  2191. AC_DEFUN([SC_MISSING_POSIX_HEADERS], [
  2192.     AC_CACHE_CHECK([dirent.h], tcl_cv_dirent_h, [
  2193.     AC_TRY_LINK([#include <sys/types.h>
  2194. #include <dirent.h>], [
  2195. #ifndef _POSIX_SOURCE
  2196. #   ifdef __Lynx__
  2197. /*
  2198.  * Generate compilation error to make the test fail:  Lynx headers
  2199.  * are only valid if really in the POSIX environment.
  2200.  */
  2201. missing_procedure();
  2202. #   endif
  2203. #endif
  2204. DIR *d;
  2205. struct dirent *entryPtr;
  2206. char *p;
  2207. d = opendir("foobar");
  2208. entryPtr = readdir(d);
  2209. p = entryPtr->d_name;
  2210. closedir(d);
  2211. ], tcl_cv_dirent_h=yes, tcl_cv_dirent_h=no)])
  2212.     if test $tcl_cv_dirent_h = no; then
  2213. AC_DEFINE(NO_DIRENT_H)
  2214.     fi
  2215.     AC_CHECK_HEADER(errno.h, , [AC_DEFINE(NO_ERRNO_H)])
  2216.     AC_CHECK_HEADER(float.h, , [AC_DEFINE(NO_FLOAT_H)])
  2217.     AC_CHECK_HEADER(values.h, , [AC_DEFINE(NO_VALUES_H)])
  2218.     AC_CHECK_HEADER(limits.h,
  2219. [AC_DEFINE(HAVE_LIMITS_H)], [AC_DEFINE(NO_LIMITS_H)])
  2220.     AC_CHECK_HEADER(stdlib.h, tcl_ok=1, tcl_ok=0)
  2221.     AC_EGREP_HEADER(strtol, stdlib.h, , tcl_ok=0)
  2222.     AC_EGREP_HEADER(strtoul, stdlib.h, , tcl_ok=0)
  2223.     AC_EGREP_HEADER(strtod, stdlib.h, , tcl_ok=0)
  2224.     if test $tcl_ok = 0; then
  2225. AC_DEFINE(NO_STDLIB_H)
  2226.     fi
  2227.     AC_CHECK_HEADER(string.h, tcl_ok=1, tcl_ok=0)
  2228.     AC_EGREP_HEADER(strstr, string.h, , tcl_ok=0)
  2229.     AC_EGREP_HEADER(strerror, string.h, , tcl_ok=0)
  2230.     # See also memmove check below for a place where NO_STRING_H can be
  2231.     # set and why.
  2232.     if test $tcl_ok = 0; then
  2233. AC_DEFINE(NO_STRING_H)
  2234.     fi
  2235.     AC_CHECK_HEADER(sys/wait.h, , [AC_DEFINE(NO_SYS_WAIT_H)])
  2236.     AC_CHECK_HEADER(dlfcn.h, , [AC_DEFINE(NO_DLFCN_H)])
  2237.     # OS/390 lacks sys/param.h (and doesn't need it, by chance).
  2238.     AC_HAVE_HEADERS(unistd.h sys/param.h)
  2239. ])
  2240. #--------------------------------------------------------------------
  2241. # SC_PATH_X
  2242. #
  2243. # Locate the X11 header files and the X11 library archive.  Try
  2244. # the ac_path_x macro first, but if it doesn't find the X stuff
  2245. # (e.g. because there's no xmkmf program) then check through
  2246. # a list of possible directories.  Under some conditions the
  2247. # autoconf macro will return an include directory that contains
  2248. # no include files, so double-check its result just to be safe.
  2249. #
  2250. # Arguments:
  2251. # none
  2252. #
  2253. # Results:
  2254. #
  2255. # Sets the the following vars:
  2256. # XINCLUDES
  2257. # XLIBSW
  2258. #
  2259. #--------------------------------------------------------------------
  2260. AC_DEFUN([SC_PATH_X], [
  2261.     AC_PATH_X
  2262.     not_really_there=""
  2263.     if test "$no_x" = ""; then
  2264. if test "$x_includes" = ""; then
  2265.     AC_TRY_CPP([#include <X11/XIntrinsic.h>], , not_really_there="yes")
  2266. else
  2267.     if test ! -r $x_includes/X11/Intrinsic.h; then
  2268. not_really_there="yes"
  2269.     fi
  2270. fi
  2271.     fi
  2272.     if test "$no_x" = "yes" -o "$not_really_there" = "yes"; then
  2273. AC_MSG_CHECKING([for X11 header files])
  2274. found_xincludes="no"
  2275. AC_TRY_CPP([#include <X11/Intrinsic.h>], found_xincludes="yes", found_xincludes="no")
  2276. if test "$found_xincludes" = "no"; then
  2277.     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"
  2278.     for i in $dirs ; do
  2279. if test -r $i/X11/Intrinsic.h; then
  2280.     AC_MSG_RESULT([$i])
  2281.     XINCLUDES=" -I$i"
  2282.     found_xincludes="yes"
  2283.     break
  2284. fi
  2285.     done
  2286. fi
  2287.     else
  2288. if test "$x_includes" != ""; then
  2289.     XINCLUDES="-I$x_includes"
  2290.     found_xincludes="yes"
  2291. fi
  2292.     fi
  2293.     if test found_xincludes = "no"; then
  2294. AC_MSG_RESULT([couldn't find any!])
  2295.     fi
  2296.     if test "$no_x" = yes; then
  2297. AC_MSG_CHECKING([for X11 libraries])
  2298. XLIBSW=nope
  2299. 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"
  2300. for i in $dirs ; do
  2301.     if test -r $i/libX11.a -o -r $i/libX11.so -o -r $i/libX11.sl; then
  2302. AC_MSG_RESULT([$i])
  2303. XLIBSW="-L$i -lX11"
  2304. x_libraries="$i"
  2305. break
  2306.     fi
  2307. done
  2308.     else
  2309. if test "$x_libraries" = ""; then
  2310.     XLIBSW=-lX11
  2311. else
  2312.     XLIBSW="-L$x_libraries -lX11"
  2313. fi
  2314.     fi
  2315.     if test "$XLIBSW" = nope ; then
  2316. AC_CHECK_LIB(Xwindow, XCreateWindow, XLIBSW=-lXwindow)
  2317.     fi
  2318.     if test "$XLIBSW" = nope ; then
  2319. AC_MSG_RESULT([could not find any!  Using -lX11.])
  2320. XLIBSW=-lX11
  2321.     fi
  2322. ])
  2323. #--------------------------------------------------------------------
  2324. # SC_BLOCKING_STYLE
  2325. #
  2326. # The statements below check for systems where POSIX-style
  2327. # non-blocking I/O (O_NONBLOCK) doesn't work or is unimplemented. 
  2328. # On these systems (mostly older ones), use the old BSD-style
  2329. # FIONBIO approach instead.
  2330. #
  2331. # Arguments:
  2332. # none
  2333. #
  2334. # Results:
  2335. #
  2336. # Defines some of the following vars:
  2337. # HAVE_SYS_IOCTL_H
  2338. # HAVE_SYS_FILIO_H
  2339. # USE_FIONBIO
  2340. # O_NONBLOCK
  2341. #
  2342. #--------------------------------------------------------------------
  2343. AC_DEFUN([SC_BLOCKING_STYLE], [
  2344.     AC_CHECK_HEADERS(sys/ioctl.h)
  2345.     AC_CHECK_HEADERS(sys/filio.h)
  2346.     SC_CONFIG_SYSTEM
  2347.     AC_MSG_CHECKING([FIONBIO vs. O_NONBLOCK for nonblocking I/O])
  2348.     case $system in
  2349. # There used to be code here to use FIONBIO under AIX.  However, it
  2350. # was reported that FIONBIO doesn't work under AIX 3.2.5.  Since
  2351. # using O_NONBLOCK seems fine under AIX 4.*, I removed the FIONBIO
  2352. # code (JO, 5/31/97).
  2353. OSF*)
  2354.     AC_DEFINE(USE_FIONBIO)
  2355.     AC_MSG_RESULT([FIONBIO])
  2356.     ;;
  2357. SunOS-4*)
  2358.     AC_DEFINE(USE_FIONBIO)
  2359.     AC_MSG_RESULT([FIONBIO])
  2360.     ;;
  2361. ULTRIX-4.*)
  2362.     AC_DEFINE(USE_FIONBIO)
  2363.     AC_MSG_RESULT([FIONBIO])
  2364.     ;;
  2365. *)
  2366.     AC_MSG_RESULT([O_NONBLOCK])
  2367.     ;;
  2368.     esac
  2369. ])
  2370. #--------------------------------------------------------------------
  2371. # SC_TIME_HANLDER
  2372. #
  2373. # Checks how the system deals with time.h, what time structures
  2374. # are used on the system, and what fields the structures have.
  2375. #
  2376. # Arguments:
  2377. # none
  2378. #
  2379. # Results:
  2380. #
  2381. # Defines some of the following vars:
  2382. # USE_DELTA_FOR_TZ
  2383. # HAVE_TM_GMTOFF
  2384. # HAVE_TM_TZADJ
  2385. # HAVE_TIMEZONE_VAR
  2386. #
  2387. #--------------------------------------------------------------------
  2388. AC_DEFUN([SC_TIME_HANDLER], [
  2389.     AC_CHECK_HEADERS(sys/time.h)
  2390.     AC_HEADER_TIME
  2391.     AC_STRUCT_TIMEZONE
  2392.     AC_CHECK_FUNCS(gmtime_r localtime_r)
  2393.     AC_CACHE_CHECK([tm_tzadj in struct tm], tcl_cv_member_tm_tzadj, [
  2394. AC_TRY_COMPILE([#include <time.h>], [struct tm tm; tm.tm_tzadj;],
  2395.     tcl_cv_member_tm_tzadj=yes, tcl_cv_member_tm_tzadj=no)])
  2396.     if test $tcl_cv_member_tm_tzadj = yes ; then
  2397. AC_DEFINE(HAVE_TM_TZADJ)
  2398.     fi
  2399.     AC_CACHE_CHECK([tm_gmtoff in struct tm], tcl_cv_member_tm_gmtoff, [
  2400. AC_TRY_COMPILE([#include <time.h>], [struct tm tm; tm.tm_gmtoff;],
  2401.     tcl_cv_member_tm_gmtoff=yes, tcl_cv_member_tm_gmtoff=no)])
  2402.     if test $tcl_cv_member_tm_gmtoff = yes ; then
  2403. AC_DEFINE(HAVE_TM_GMTOFF)
  2404.     fi
  2405.     #
  2406.     # Its important to include time.h in this check, as some systems
  2407.     # (like convex) have timezone functions, etc.
  2408.     #
  2409.     AC_CACHE_CHECK([long timezone variable], tcl_cv_timezone_long, [
  2410. AC_TRY_COMPILE([#include <time.h>],
  2411.     [extern long timezone;
  2412.     timezone += 1;
  2413.     exit (0);],
  2414.     tcl_cv_timezone_long=yes, tcl_cv_timezone_long=no)])
  2415.     if test $tcl_cv_timezone_long = yes ; then
  2416. AC_DEFINE(HAVE_TIMEZONE_VAR)
  2417.     else
  2418. #
  2419. # On some systems (eg IRIX 6.2), timezone is a time_t and not a long.
  2420. #
  2421. AC_CACHE_CHECK([time_t timezone variable], tcl_cv_timezone_time, [
  2422.     AC_TRY_COMPILE([#include <time.h>],
  2423. [extern time_t timezone;
  2424. timezone += 1;
  2425. exit (0);],
  2426. tcl_cv_timezone_time=yes, tcl_cv_timezone_time=no)])
  2427. if test $tcl_cv_timezone_time = yes ; then
  2428.     AC_DEFINE(HAVE_TIMEZONE_VAR)
  2429. fi
  2430.     fi
  2431. ])
  2432. #--------------------------------------------------------------------
  2433. # SC_BUGGY_STRTOD
  2434. #
  2435. # Under Solaris 2.4, strtod returns the wrong value for the
  2436. # terminating character under some conditions.  Check for this
  2437. # and if the problem exists use a substitute procedure
  2438. # "fixstrtod" (provided by Tcl) that corrects the error.
  2439. # Also, on Compaq's Tru64 Unix 5.0,
  2440. # strtod(" ") returns 0.0 instead of a failure to convert.
  2441. #
  2442. # Arguments:
  2443. # none
  2444. #
  2445. # Results:
  2446. #
  2447. # Might defines some of the following vars:
  2448. # strtod (=fixstrtod)
  2449. #
  2450. #--------------------------------------------------------------------
  2451. AC_DEFUN([SC_BUGGY_STRTOD], [
  2452.     AC_CHECK_FUNC(strtod, tcl_strtod=1, tcl_strtod=0)
  2453.     if test "$tcl_strtod" = 1; then
  2454. AC_CACHE_CHECK([for Solaris2.4/Tru64 strtod bugs], tcl_cv_strtod_buggy,[
  2455.     AC_TRY_RUN([
  2456. extern double strtod();
  2457. int main() {
  2458.     char *infString="Inf", *nanString="NaN", *spaceString=" ";
  2459.     char *term;
  2460.     double value;
  2461.     value = strtod(infString, &term);
  2462.     if ((term != infString) && (term[-1] == 0)) {
  2463. exit(1);
  2464.     }
  2465.     value = strtod(nanString, &term);
  2466.     if ((term != nanString) && (term[-1] == 0)) {
  2467. exit(1);
  2468.     }
  2469.     value = strtod(spaceString, &term);
  2470.     if (term == (spaceString+1)) {
  2471. exit(1);
  2472.     }
  2473.     exit(0);
  2474. }], tcl_cv_strtod_buggy=ok, tcl_cv_strtod_buggy=buggy,
  2475.     tcl_cv_strtod_buggy=buggy)])
  2476. if test "$tcl_cv_strtod_buggy" = buggy; then
  2477.     LIBOBJS="$LIBOBJS fixstrtod.o"
  2478.     AC_DEFINE(strtod, fixstrtod)
  2479. fi
  2480.     fi
  2481. ])
  2482. #--------------------------------------------------------------------
  2483. # SC_TCL_LINK_LIBS
  2484. #
  2485. # Search for the libraries needed to link the Tcl shell.
  2486. # Things like the math library (-lm) and socket stuff (-lsocket vs.
  2487. # -lnsl) are dealt with here.
  2488. #
  2489. # Arguments:
  2490. # Requires the following vars to be set in the Makefile:
  2491. # DL_LIBS
  2492. # LIBS
  2493. # MATH_LIBS
  2494. #
  2495. # Results:
  2496. #
  2497. # Subst's the following var:
  2498. # TCL_LIBS
  2499. # MATH_LIBS
  2500. #
  2501. # Might append to the following vars:
  2502. # LIBS
  2503. #
  2504. # Might define the following vars:
  2505. # HAVE_NET_ERRNO_H
  2506. #
  2507. #--------------------------------------------------------------------
  2508. AC_DEFUN([SC_TCL_LINK_LIBS], [
  2509.     #--------------------------------------------------------------------
  2510.     # On a few very rare systems, all of the libm.a stuff is
  2511.     # already in libc.a.  Set compiler flags accordingly.
  2512.     # Also, Linux requires the "ieee" library for math to work
  2513.     # right (and it must appear before "-lm").
  2514.     #--------------------------------------------------------------------
  2515.     AC_CHECK_FUNC(sin, MATH_LIBS="", MATH_LIBS="-lm")
  2516.     AC_CHECK_LIB(ieee, main, [MATH_LIBS="-lieee $MATH_LIBS"])
  2517.     #--------------------------------------------------------------------
  2518.     # Interactive UNIX requires -linet instead of -lsocket, plus it
  2519.     # needs net/errno.h to define the socket-related error codes.
  2520.     #--------------------------------------------------------------------
  2521.     AC_CHECK_LIB(inet, main, [LIBS="$LIBS -linet"])
  2522.     AC_CHECK_HEADER(net/errno.h, [AC_DEFINE(HAVE_NET_ERRNO_H)])
  2523.     #--------------------------------------------------------------------
  2524.     # Check for the existence of the -lsocket and -lnsl libraries.
  2525.     # The order here is important, so that they end up in the right
  2526.     # order in the command line generated by make.  Here are some
  2527.     # special considerations:
  2528.     # 1. Use "connect" and "accept" to check for -lsocket, and
  2529.     #    "gethostbyname" to check for -lnsl.
  2530.     # 2. Use each function name only once:  can't redo a check because
  2531.     #    autoconf caches the results of the last check and won't redo it.
  2532.     # 3. Use -lnsl and -lsocket only if they supply procedures that
  2533.     #    aren't already present in the normal libraries.  This is because
  2534.     #    IRIX 5.2 has libraries, but they aren't needed and they're
  2535.     #    bogus:  they goof up name resolution if used.
  2536.     # 4. On some SVR4 systems, can't use -lsocket without -lnsl too.
  2537.     #    To get around this problem, check for both libraries together
  2538.     #    if -lsocket doesn't work by itself.
  2539.     #--------------------------------------------------------------------
  2540.     tcl_checkBoth=0
  2541.     AC_CHECK_FUNC(connect, tcl_checkSocket=0, tcl_checkSocket=1)
  2542.     if test "$tcl_checkSocket" = 1; then
  2543. AC_CHECK_FUNC(setsockopt, , [AC_CHECK_LIB(socket, setsockopt,
  2544.     LIBS="$LIBS -lsocket", tcl_checkBoth=1)])
  2545.     fi
  2546.     if test "$tcl_checkBoth" = 1; then
  2547. tk_oldLibs=$LIBS
  2548. LIBS="$LIBS -lsocket -lnsl"
  2549. AC_CHECK_FUNC(accept, tcl_checkNsl=0, [LIBS=$tk_oldLibs])
  2550.     fi
  2551.     AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl, gethostbyname,
  2552.     [LIBS="$LIBS -lnsl"])])
  2553.     
  2554.     # Don't perform the eval of the libraries here because DL_LIBS
  2555.     # won't be set until we call SC_CONFIG_CFLAGS
  2556.     TCL_LIBS='${DL_LIBS} ${LIBS} ${MATH_LIBS}'
  2557.     AC_SUBST(TCL_LIBS)
  2558.     AC_SUBST(MATH_LIBS)
  2559. ])
  2560. #--------------------------------------------------------------------
  2561. # SC_TCL_EARLY_FLAGS
  2562. #
  2563. # Check for what flags are needed to be passed so the correct OS
  2564. # features are available.
  2565. #
  2566. # Arguments:
  2567. # None
  2568. #
  2569. # Results:
  2570. #
  2571. # Might define the following vars:
  2572. # _ISOC99_SOURCE
  2573. # _LARGEFILE64_SOURCE
  2574. # _LARGEFILE_SOURCE64
  2575. #
  2576. #--------------------------------------------------------------------
  2577. AC_DEFUN([SC_TCL_EARLY_FLAG],[
  2578.     AC_CACHE_VAL([tcl_cv_flag_]translit($1,[A-Z],[a-z]),
  2579. AC_TRY_COMPILE([$2], $3, [tcl_cv_flag_]translit($1,[A-Z],[a-z])=no,
  2580.     AC_TRY_COMPILE([[#define ]$1[ 1
  2581. ]$2], $3,
  2582. [tcl_cv_flag_]translit($1,[A-Z],[a-z])=yes,
  2583. [tcl_cv_flag_]translit($1,[A-Z],[a-z])=no)))
  2584.     if test ["x${tcl_cv_flag_]translit($1,[A-Z],[a-z])[}" = "xyes"] ; then
  2585. AC_DEFINE($1)
  2586. tcl_flags="$tcl_flags $1"
  2587.     fi
  2588. ])
  2589. AC_DEFUN([SC_TCL_EARLY_FLAGS],[
  2590.     AC_MSG_CHECKING([for required early compiler flags])
  2591.     tcl_flags=""
  2592.     SC_TCL_EARLY_FLAG(_ISOC99_SOURCE,[#include <stdlib.h>],
  2593. [char *p = (char *)strtoll; char *q = (char *)strtoull;])
  2594.     SC_TCL_EARLY_FLAG(_LARGEFILE64_SOURCE,[#include <sys/stat.h>],
  2595. [struct stat64 buf; int i = stat64("/", &buf);])
  2596.     SC_TCL_EARLY_FLAG(_LARGEFILE_SOURCE64,[#include <sys/stat.h>],
  2597. [char *p = (char *)open64;])
  2598.     if test "x${tcl_flags}" = "x" ; then
  2599. AC_MSG_RESULT([none])
  2600.     else
  2601. AC_MSG_RESULT([${tcl_flags}])
  2602.     fi
  2603. ])
  2604. #--------------------------------------------------------------------
  2605. # SC_TCL_64BIT_FLAGS
  2606. #
  2607. # Check for what is defined in the way of 64-bit features.
  2608. #
  2609. # Arguments:
  2610. # None
  2611. #
  2612. # Results:
  2613. #
  2614. # Might define the following vars:
  2615. # TCL_WIDE_INT_IS_LONG
  2616. # TCL_WIDE_INT_TYPE
  2617. # HAVE_STRUCT_DIRENT64
  2618. # HAVE_STRUCT_STAT64
  2619. # HAVE_TYPE_OFF64_T
  2620. #
  2621. #--------------------------------------------------------------------
  2622. AC_DEFUN([SC_TCL_64BIT_FLAGS], [
  2623.     AC_MSG_CHECKING([for 64-bit integer type])
  2624.     AC_CACHE_VAL(tcl_cv_type_64bit,[
  2625. tcl_cv_type_64bit=none
  2626. # See if the compiler knows natively about __int64
  2627. AC_TRY_COMPILE(,[__int64 value = (__int64) 0;],
  2628.     tcl_type_64bit=__int64, tcl_type_64bit="long long")
  2629. # See if we should use long anyway  Note that we substitute in the
  2630. # type that is our current guess for a 64-bit type inside this check
  2631. # program, so it should be modified only carefully...
  2632.         AC_TRY_COMPILE(,[switch (0) { 
  2633.             case 1: case (sizeof(]${tcl_type_64bit}[)==sizeof(long)): ; 
  2634.         }],tcl_cv_type_64bit=${tcl_type_64bit})])
  2635.     if test "${tcl_cv_type_64bit}" = none ; then
  2636. AC_DEFINE(TCL_WIDE_INT_IS_LONG)
  2637. AC_MSG_RESULT([using long])
  2638.     else
  2639. AC_DEFINE_UNQUOTED(TCL_WIDE_INT_TYPE,${tcl_cv_type_64bit})
  2640. AC_MSG_RESULT([${tcl_cv_type_64bit}])
  2641. # Now check for auxiliary declarations
  2642. AC_CACHE_CHECK([for struct dirent64], tcl_cv_struct_dirent64,[
  2643.     AC_TRY_COMPILE([#include <sys/types.h>
  2644. #include <sys/dirent.h>],[struct dirent64 p;],
  2645. tcl_cv_struct_dirent64=yes,tcl_cv_struct_dirent64=no)])
  2646. if test "x${tcl_cv_struct_dirent64}" = "xyes" ; then
  2647.     AC_DEFINE(HAVE_STRUCT_DIRENT64)
  2648. fi
  2649. AC_CACHE_CHECK([for struct stat64], tcl_cv_struct_stat64,[
  2650.     AC_TRY_COMPILE([#include <sys/stat.h>],[struct stat64 p;
  2651. ],
  2652. tcl_cv_struct_stat64=yes,tcl_cv_struct_stat64=no)])
  2653. if test "x${tcl_cv_struct_stat64}" = "xyes" ; then
  2654.     AC_DEFINE(HAVE_STRUCT_STAT64)
  2655. fi
  2656. AC_CHECK_FUNCS(open64 lseek64)
  2657. AC_MSG_CHECKING([for off64_t])
  2658. AC_CACHE_VAL(tcl_cv_type_off64_t,[
  2659.     AC_TRY_COMPILE([#include <sys/types.h>],[off64_t offset;
  2660. ],
  2661. tcl_cv_type_off64_t=yes,tcl_cv_type_off64_t=no)])
  2662. dnl Define HAVE_TYPE_OFF64_T only when the off64_t type and the
  2663. dnl functions lseek64 and open64 are defined.
  2664. if test "x${tcl_cv_type_off64_t}" = "xyes" && 
  2665.         test "x${ac_cv_func_lseek64}" = "xyes" && 
  2666.         test "x${ac_cv_func_open64}" = "xyes" ; then
  2667.     AC_DEFINE(HAVE_TYPE_OFF64_T)
  2668.     AC_MSG_RESULT([yes])
  2669. else
  2670.     AC_MSG_RESULT([no])
  2671. fi
  2672.     fi
  2673. ])
  2674. #--------------------------------------------------------------------
  2675. # SC_TCL_GETHOSTBYADDR_R
  2676. #
  2677. # Check if we have MT-safe variant of gethostbyaddr().
  2678. #
  2679. # Arguments:
  2680. # None
  2681. #
  2682. # Results:
  2683. #
  2684. # Might define the following vars:
  2685. # HAVE_GETHOSTBYADDR_R
  2686. # HAVE_GETHOSTBYADDR_R_7
  2687. # HAVE_GETHOSTBYADDR_R_8
  2688. #
  2689. #--------------------------------------------------------------------
  2690. AC_DEFUN([SC_TCL_GETHOSTBYADDR_R], [AC_CHECK_FUNC(gethostbyaddr_r, [
  2691.     AC_CACHE_CHECK([for gethostbyaddr_r with 7 args], tcl_cv_api_gethostbyaddr_r_7, [
  2692.     AC_TRY_COMPILE([
  2693. #include <netdb.h>
  2694.     ], [
  2695. char *addr;
  2696. int length;
  2697. int type;
  2698. struct hostent *result;
  2699. char buffer[2048];
  2700. int buflen = 2048;
  2701. int h_errnop;
  2702. (void) gethostbyaddr_r(addr, length, type, result, buffer, buflen,
  2703.        &h_errnop);
  2704.     ], tcl_cv_api_gethostbyaddr_r_7=yes, tcl_cv_api_gethostbyaddr_r_7=no)])
  2705.     tcl_ok=$tcl_cv_api_gethostbyaddr_r_7
  2706.     if test "$tcl_ok" = yes; then
  2707. AC_DEFINE(HAVE_GETHOSTBYADDR_R_7)
  2708.     else
  2709. AC_CACHE_CHECK([for gethostbyaddr_r with 8 args], tcl_cv_api_gethostbyaddr_r_8, [
  2710. AC_TRY_COMPILE([
  2711.     #include <netdb.h>
  2712. ], [
  2713.     char *addr;
  2714.     int length;
  2715.     int type;
  2716.     struct hostent *result, *resultp;
  2717.     char buffer[2048];
  2718.     int buflen = 2048;
  2719.     int h_errnop;
  2720.     (void) gethostbyaddr_r(addr, length, type, result, buffer, buflen,
  2721.    &resultp, &h_errnop);
  2722. ], tcl_cv_api_gethostbyaddr_r_8=yes, tcl_cv_api_gethostbyaddr_r_8=no)])
  2723. tcl_ok=$tcl_cv_api_gethostbyaddr_r_8
  2724. if test "$tcl_ok" = yes; then
  2725.     AC_DEFINE(HAVE_GETHOSTBYADDR_R_8)
  2726. fi
  2727.     fi
  2728.     if test "$tcl_ok" = yes; then
  2729. AC_DEFINE(HAVE_GETHOSTBYADDR_R)
  2730.     fi
  2731. ])])
  2732. #--------------------------------------------------------------------
  2733. # SC_TCL_GETHOSTBYNAME_R
  2734. #
  2735. # Check to see what variant of gethostbyname_r() we have.
  2736. # Based on David Arnold's example from the comp.programming.threads
  2737. # FAQ Q213
  2738. #
  2739. # Arguments:
  2740. # None
  2741. #
  2742. # Results:
  2743. #
  2744. # Might define the following vars:
  2745. # HAVE_GETHOSTBYADDR_R
  2746. # HAVE_GETHOSTBYADDR_R_3
  2747. # HAVE_GETHOSTBYADDR_R_5
  2748. # HAVE_GETHOSTBYADDR_R_6
  2749. #
  2750. #--------------------------------------------------------------------
  2751. AC_DEFUN([SC_TCL_GETHOSTBYNAME_R], [AC_CHECK_FUNC(gethostbyname_r, [
  2752.     AC_CACHE_CHECK([for gethostbyname_r with 6 args], tcl_cv_api_gethostbyname_r_6, [
  2753.     AC_TRY_COMPILE([
  2754. #include <netdb.h>
  2755.     ], [
  2756. char *name;
  2757. struct hostent *he, *res;
  2758. char buffer[2048];
  2759. int buflen = 2048;
  2760. int h_errnop;
  2761. (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop);
  2762.     ], tcl_cv_api_gethostbyname_r_6=yes, tcl_cv_api_gethostbyname_r_6=no)])
  2763.     tcl_ok=$tcl_cv_api_gethostbyname_r_6
  2764.     if test "$tcl_ok" = yes; then
  2765. AC_DEFINE(HAVE_GETHOSTBYNAME_R_6)
  2766.     else
  2767. AC_CACHE_CHECK([for gethostbyname_r with 5 args], tcl_cv_api_gethostbyname_r_5, [
  2768. AC_TRY_COMPILE([
  2769.     #include <netdb.h>
  2770. ], [
  2771.     char *name;
  2772.     struct hostent *he;
  2773.     char buffer[2048];
  2774.     int buflen = 2048;
  2775.     int h_errnop;
  2776.     (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop);
  2777. ], tcl_cv_api_gethostbyname_r_5=yes, tcl_cv_api_gethostbyname_r_5=no)])
  2778. tcl_ok=$tcl_cv_api_gethostbyname_r_5
  2779. if test "$tcl_ok" = yes; then
  2780.     AC_DEFINE(HAVE_GETHOSTBYNAME_R_5)
  2781. else
  2782.     AC_CACHE_CHECK([for gethostbyname_r with 3 args], tcl_cv_api_gethostbyname_r_3, [
  2783.     AC_TRY_COMPILE([
  2784. #include <netdb.h>
  2785.     ], [
  2786. char *name;
  2787. struct hostent *he;
  2788. struct hostent_data data;
  2789. (void) gethostbyname_r(name, he, &data);
  2790.     ], tcl_cv_api_gethostbyname_r_3=yes, tcl_cv_api_gethostbyname_r_3=no)])
  2791.     tcl_ok=$tcl_cv_api_gethostbyname_r_3
  2792.     if test "$tcl_ok" = yes; then
  2793. AC_DEFINE(HAVE_GETHOSTBYNAME_R_3)
  2794.     fi
  2795. fi
  2796.     fi
  2797.     if test "$tcl_ok" = yes; then
  2798. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  2799.     fi
  2800. ])])
  2801. #--------------------------------------------------------------------
  2802. # SC_TCL_GETPWUID_R
  2803. #
  2804. # Check if we have MT-safe variant of getpwuid() and if yes,
  2805. # which one exactly.
  2806. #
  2807. # Arguments:
  2808. # None
  2809. #
  2810. # Results:
  2811. #
  2812. # Might define the following vars:
  2813. # HAVE_GETPWUID_R
  2814. # HAVE_GETPWUID_R_4
  2815. # HAVE_GETPWUID_R_5
  2816. #
  2817. #--------------------------------------------------------------------
  2818. AC_DEFUN([SC_TCL_GETPWUID_R], [AC_CHECK_FUNC(getpwuid_r, [
  2819.     AC_CACHE_CHECK([for getpwuid_r with 5 args], tcl_cv_api_getpwuid_r_5, [
  2820.     AC_TRY_COMPILE([
  2821. #include <sys/types.h>
  2822. #include <pwd.h>
  2823.     ], [
  2824. uid_t uid;
  2825. struct passwd pw, *pwp;
  2826. char buf[512];
  2827. int buflen = 512;
  2828. (void) getpwuid_r(uid, &pw, buf, buflen, &pwp);
  2829.     ], tcl_cv_api_getpwuid_r_5=yes, tcl_cv_api_getpwuid_r_5=no)])
  2830.     tcl_ok=$tcl_cv_api_getpwuid_r_5
  2831.     if test "$tcl_ok" = yes; then
  2832. AC_DEFINE(HAVE_GETPWUID_R_5)
  2833.     else
  2834. AC_CACHE_CHECK([for getpwuid_r with 4 args], tcl_cv_api_getpwuid_r_4, [
  2835. AC_TRY_COMPILE([
  2836.     #include <sys/types.h>
  2837.     #include <pwd.h>
  2838. ], [
  2839.     uid_t uid;
  2840.     struct passwd pw;
  2841.     char buf[512];
  2842.     int buflen = 512;
  2843.     (void)getpwnam_r(uid, &pw, buf, buflen);
  2844. ], tcl_cv_api_getpwuid_r_4=yes, tcl_cv_api_getpwuid_r_4=no)])
  2845. tcl_ok=$tcl_cv_api_getpwuid_r_4
  2846. if test "$tcl_ok" = yes; then
  2847.     AC_DEFINE(HAVE_GETPWUID_R_4)
  2848. fi
  2849.     fi
  2850.     if test "$tcl_ok" = yes; then
  2851. AC_DEFINE(HAVE_GETPWUID_R)
  2852.     fi
  2853. ])])
  2854. #--------------------------------------------------------------------
  2855. # SC_TCL_GETPWNAM_R
  2856. #
  2857. # Check if we have MT-safe variant of getpwnam() and if yes,
  2858. # which one exactly.
  2859. #
  2860. # Arguments:
  2861. # None
  2862. #
  2863. # Results:
  2864. #
  2865. # Might define the following vars:
  2866. # HAVE_GETPWNAM_R
  2867. # HAVE_GETPWNAM_R_4
  2868. # HAVE_GETPWNAM_R_5
  2869. #
  2870. #--------------------------------------------------------------------
  2871. AC_DEFUN([SC_TCL_GETPWNAM_R], [AC_CHECK_FUNC(getpwnam_r, [
  2872.     AC_CACHE_CHECK([for getpwnam_r with 5 args], tcl_cv_api_getpwnam_r_5, [
  2873.     AC_TRY_COMPILE([
  2874. #include <sys/types.h>
  2875. #include <pwd.h>
  2876.     ], [
  2877. char *name;
  2878. struct passwd pw, *pwp;
  2879. char buf[512];
  2880. int buflen = 512;
  2881. (void) getpwnam_r(name, &pw, buf, buflen, &pwp);
  2882.     ], tcl_cv_api_getpwnam_r_5=yes, tcl_cv_api_getpwnam_r_5=no)])
  2883.     tcl_ok=$tcl_cv_api_getpwnam_r_5
  2884.     if test "$tcl_ok" = yes; then
  2885. AC_DEFINE(HAVE_GETPWNAM_R_5)
  2886.     else
  2887. AC_CACHE_CHECK([for getpwnam_r with 4 args], tcl_cv_api_getpwnam_r_4, [
  2888. AC_TRY_COMPILE([
  2889.     #include <sys/types.h>
  2890.     #include <pwd.h>
  2891. ], [
  2892.     char *name;
  2893.     struct passwd pw;
  2894.     char buf[512];
  2895.     int buflen = 512;
  2896.     (void)getpwnam_r(name, &pw, buf, buflen);
  2897. ], tcl_cv_api_getpwnam_r_4=yes, tcl_cv_api_getpwnam_r_4=no)])
  2898. tcl_ok=$tcl_cv_api_getpwnam_r_4
  2899. if test "$tcl_ok" = yes; then
  2900.     AC_DEFINE(HAVE_GETPWNAM_R_4)
  2901. fi
  2902.     fi
  2903.     if test "$tcl_ok" = yes; then
  2904. AC_DEFINE(HAVE_GETPWNAM_R)
  2905.     fi
  2906. ])])
  2907. #--------------------------------------------------------------------
  2908. # SC_TCL_GETGRGID_R
  2909. #
  2910. # Check if we have MT-safe variant of getgrgid() and if yes,
  2911. # which one exactly.
  2912. #
  2913. # Arguments:
  2914. # None
  2915. #
  2916. # Results:
  2917. #
  2918. # Might define the following vars:
  2919. # HAVE_GETGRGID_R
  2920. # HAVE_GETGRGID_R_4
  2921. # HAVE_GETGRGID_R_5
  2922. #
  2923. #--------------------------------------------------------------------
  2924. AC_DEFUN([SC_TCL_GETGRGID_R], [AC_CHECK_FUNC(getgrgid_r, [
  2925.     AC_CACHE_CHECK([for getgrgid_r with 5 args], tcl_cv_api_getgrgid_r_5, [
  2926.     AC_TRY_COMPILE([
  2927. #include <sys/types.h>
  2928. #include <grp.h>
  2929.     ], [
  2930. gid_t gid;
  2931. struct group gr, *grp;
  2932. char buf[512];
  2933. int buflen = 512;
  2934. (void) getgrgid_r(gid, &gr, buf, buflen, &grp);
  2935.     ], tcl_cv_api_getgrgid_r_5=yes, tcl_cv_api_getgrgid_r_5=no)])
  2936.     tcl_ok=$tcl_cv_api_getgrgid_r_5
  2937.     if test "$tcl_ok" = yes; then
  2938. AC_DEFINE(HAVE_GETGRGID_R_5)
  2939.     else
  2940. AC_CACHE_CHECK([for getgrgid_r with 4 args], tcl_cv_api_getgrgid_r_4, [
  2941. AC_TRY_COMPILE([
  2942.     #include <sys/types.h>
  2943.     #include <grp.h>
  2944. ], [
  2945.     gid_t gid;
  2946.     struct group gr;
  2947.     char buf[512];
  2948.     int buflen = 512;
  2949.     (void)getgrgid_r(gid, &gr, buf, buflen);
  2950. ], tcl_cv_api_getgrgid_r_4=yes, tcl_cv_api_getgrgid_r_4=no)])
  2951. tcl_ok=$tcl_cv_api_getgrgid_r_4
  2952. if test "$tcl_ok" = yes; then
  2953.     AC_DEFINE(HAVE_GETGRGID_R_4)
  2954. fi
  2955.     fi
  2956.     if test "$tcl_ok" = yes; then
  2957. AC_DEFINE(HAVE_GETGRGID_R)
  2958.     fi
  2959. ])])
  2960. #--------------------------------------------------------------------
  2961. # SC_TCL_GETGRNAM_R
  2962. #
  2963. # Check if we have MT-safe variant of getgrnam() and if yes,
  2964. # which one exactly.
  2965. #
  2966. # Arguments:
  2967. # None
  2968. #
  2969. # Results:
  2970. #
  2971. # Might define the following vars:
  2972. # HAVE_GETGRNAM_R
  2973. # HAVE_GETGRNAM_R_4
  2974. # HAVE_GETGRNAM_R_5
  2975. #
  2976. #--------------------------------------------------------------------
  2977. AC_DEFUN([SC_TCL_GETGRNAM_R], [AC_CHECK_FUNC(getgrnam_r, [
  2978.     AC_CACHE_CHECK([for getgrnam_r with 5 args], tcl_cv_api_getgrnam_r_5, [
  2979.     AC_TRY_COMPILE([
  2980. #include <sys/types.h>
  2981. #include <grp.h>
  2982.     ], [
  2983. char *name;
  2984. struct group gr, *grp;
  2985. char buf[512];
  2986. int buflen = 512;
  2987. (void) getgrnam_r(name, &gr, buf, buflen, &grp);
  2988.     ], tcl_cv_api_getgrnam_r_5=yes, tcl_cv_api_getgrnam_r_5=no)])
  2989.     tcl_ok=$tcl_cv_api_getgrnam_r_5
  2990.     if test "$tcl_ok" = yes; then
  2991. AC_DEFINE(HAVE_GETGRNAM_R_5)
  2992.     else
  2993. AC_CACHE_CHECK([for getgrnam_r with 4 args], tcl_cv_api_getgrnam_r_4, [
  2994. AC_TRY_COMPILE([
  2995.     #include <sys/types.h>
  2996.     #include <grp.h>
  2997. ], [
  2998.     char *name;
  2999.     struct group gr;
  3000.     char buf[512];
  3001.     int buflen = 512;
  3002.     (void)getgrnam_r(name, &gr, buf, buflen);
  3003. ], tcl_cv_api_getgrnam_r_4=yes, tcl_cv_api_getgrnam_r_4=no)])
  3004. tcl_ok=$tcl_cv_api_getgrnam_r_4
  3005. if test "$tcl_ok" = yes; then
  3006.     AC_DEFINE(HAVE_GETGRNAM_R_4)
  3007. fi
  3008.     fi
  3009.     if test "$tcl_ok" = yes; then
  3010. AC_DEFINE(HAVE_GETGRNAM_R)
  3011.     fi
  3012. ])])
  3013. #--------------------------------------------------------------------
  3014. # SC_CONFIG_COMMANDS_PRE(CMDS)
  3015. #
  3016. # Replacement for autoconf 2.5x AC_COMMANDS_PRE:
  3017. # Commands to run right before config.status is
  3018. # created. Accumulates.
  3019. #
  3020. # Requires presence of SC_OUTPUT_COMMANDS_PRE at the end
  3021. # of configure.in (right before AC_OUTPUT).
  3022. #
  3023. #--------------------------------------------------------------------
  3024. AC_DEFUN([SC_CONFIG_COMMANDS_PRE], [
  3025.     define([SC_OUTPUT_COMMANDS_PRE], defn([SC_OUTPUT_COMMANDS_PRE])[$1
  3026. ])])
  3027. AC_DEFUN([SC_OUTPUT_COMMANDS_PRE])