⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tcl.m4

📁 tcl是工具命令语言
💻 M4
📖 第 1 页 / 共 5 页
字号:
#------------------------------------------------------------------------# SC_PATH_TCLCONFIG --##	Locate the tclConfig.sh file and perform a sanity check on#	the Tcl compile flags## Arguments:#	none## Results:##	Adds the following arguments to configure:#		--with-tcl=...##	Defines the following vars:#		TCL_BIN_DIR	Full path to the directory containing#				the tclConfig.sh file#------------------------------------------------------------------------AC_DEFUN(SC_PATH_TCLCONFIG, [    #    # Ok, lets find the tcl configuration    # First, look for one uninstalled.    # the alternative search directory is invoked by --with-tcl    #    if test x"${no_tcl}" = x ; then	# we reset no_tcl in case something fails here	no_tcl=true	AC_ARG_WITH(tcl, [  --with-tcl              directory containing tcl configuration (tclConfig.sh)], with_tclconfig=${withval})	AC_MSG_CHECKING([for Tcl configuration])	AC_CACHE_VAL(ac_cv_c_tclconfig,[	    # First check to see if --with-tcl was specified.	    if test x"${with_tclconfig}" != x ; then		if test -f "${with_tclconfig}/tclConfig.sh" ; then		    ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`		else		    AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])		fi	    fi	    # then check for a private Tcl installation	    if test x"${ac_cv_c_tclconfig}" = x ; then		for i in \			../tcl \			`ls -dr ../tcl[[8-9]].[[0-9]]* 2>/dev/null` \			../../tcl \			`ls -dr ../../tcl[[8-9]].[[0-9]]* 2>/dev/null` \			../../../tcl \			`ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do		    if test -f "$i/unix/tclConfig.sh" ; then			ac_cv_c_tclconfig=`(cd $i/unix; pwd)`			break		    fi		done	    fi	    # check in a few common install locations	    if test x"${ac_cv_c_tclconfig}" = x ; then		for i in `ls -d ${libdir} 2>/dev/null` \			`ls -d /usr/local/lib 2>/dev/null` \			`ls -d /usr/contrib/lib 2>/dev/null` \			`ls -d /usr/lib 2>/dev/null` \			; do		    if test -f "$i/tclConfig.sh" ; then			ac_cv_c_tclconfig=`(cd $i; pwd)`			break		    fi		done	    fi	    # check in a few other private locations	    if test x"${ac_cv_c_tclconfig}" = x ; then		for i in \			${srcdir}/../tcl \			`ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do		    if test -f "$i/unix/tclConfig.sh" ; then		    ac_cv_c_tclconfig=`(cd $i/unix; pwd)`		    break		fi		done	    fi	])	if test x"${ac_cv_c_tclconfig}" = x ; then	    TCL_BIN_DIR="# no Tcl configs found"	    AC_MSG_WARN(Can't find Tcl configuration definitions)	    exit 0	else	    no_tcl=	    TCL_BIN_DIR=${ac_cv_c_tclconfig}	    AC_MSG_RESULT(found $TCL_BIN_DIR/tclConfig.sh)	fi    fi])#------------------------------------------------------------------------# SC_PATH_TKCONFIG --##	Locate the tkConfig.sh file## Arguments:#	none## Results:##	Adds the following arguments to configure:#		--with-tk=...##	Defines the following vars:#		TK_BIN_DIR	Full path to the directory containing#				the tkConfig.sh file#------------------------------------------------------------------------AC_DEFUN(SC_PATH_TKCONFIG, [    #    # Ok, lets find the tk configuration    # First, look for one uninstalled.    # the alternative search directory is invoked by --with-tk    #    if test x"${no_tk}" = x ; then	# we reset no_tk in case something fails here	no_tk=true	AC_ARG_WITH(tk, [  --with-tk               directory containing tk configuration (tkConfig.sh)], with_tkconfig=${withval})	AC_MSG_CHECKING([for Tk configuration])	AC_CACHE_VAL(ac_cv_c_tkconfig,[	    # First check to see if --with-tkconfig was specified.	    if test x"${with_tkconfig}" != x ; then		if test -f "${with_tkconfig}/tkConfig.sh" ; then		    ac_cv_c_tkconfig=`(cd ${with_tkconfig}; pwd)`		else		    AC_MSG_ERROR([${with_tkconfig} directory doesn't contain tkConfig.sh])		fi	    fi	    # then check for a private Tk library	    if test x"${ac_cv_c_tkconfig}" = x ; then		for i in \			../tk \			`ls -dr ../tk[[8-9]].[[0-9]]* 2>/dev/null` \			../../tk \			`ls -dr ../../tk[[8-9]].[[0-9]]* 2>/dev/null` \			../../../tk \			`ls -dr ../../../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do		    if test -f "$i/unix/tkConfig.sh" ; then			ac_cv_c_tkconfig=`(cd $i/unix; pwd)`			break		    fi		done	    fi	    # check in a few common install locations	    if test x"${ac_cv_c_tkconfig}" = x ; then		for i in `ls -d ${libdir} 2>/dev/null` \			`ls -d /usr/local/lib 2>/dev/null` \			`ls -d /usr/contrib/lib 2>/dev/null` \			`ls -d /usr/lib 2>/dev/null` \			; do		    if test -f "$i/tkConfig.sh" ; then			ac_cv_c_tkconfig=`(cd $i; pwd)`			break		    fi		done	    fi	    # check in a few other private locations	    if test x"${ac_cv_c_tkconfig}" = x ; then		for i in \			${srcdir}/../tk \			`ls -dr ${srcdir}/../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do		    if test -f "$i/unix/tkConfig.sh" ; then			ac_cv_c_tkconfig=`(cd $i/unix; pwd)`			break		    fi		done	    fi	])	if test x"${ac_cv_c_tkconfig}" = x ; then	    TK_BIN_DIR="# no Tk configs found"	    AC_MSG_WARN(Can't find Tk configuration definitions)	    exit 0	else	    no_tk=	    TK_BIN_DIR=${ac_cv_c_tkconfig}	    AC_MSG_RESULT(found $TK_BIN_DIR/tkConfig.sh)	fi    fi])#------------------------------------------------------------------------# SC_LOAD_TCLCONFIG --##	Load the tclConfig.sh file## Arguments:#	#	Requires the following vars to be set:#		TCL_BIN_DIR## Results:##	Subst the following vars:#		TCL_BIN_DIR#		TCL_SRC_DIR#		TCL_LIB_FILE##------------------------------------------------------------------------AC_DEFUN(SC_LOAD_TCLCONFIG, [    AC_MSG_CHECKING([for existence of $TCL_BIN_DIR/tclConfig.sh])    if test -f "$TCL_BIN_DIR/tclConfig.sh" ; then        AC_MSG_RESULT([loading])	. $TCL_BIN_DIR/tclConfig.sh    else        AC_MSG_RESULT([file not found])    fi    #    # If the TCL_BIN_DIR is the build directory (not the install directory),    # then set the common variable name to the value of the build variables.    # For example, the variable TCL_LIB_SPEC will be set to the value    # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC    # instead of TCL_BUILD_LIB_SPEC since it will work with both an    # installed and uninstalled version of Tcl.    #    if test -f $TCL_BIN_DIR/Makefile ; then        TCL_LIB_SPEC=${TCL_BUILD_LIB_SPEC}        TCL_STUB_LIB_SPEC=${TCL_BUILD_STUB_LIB_SPEC}        TCL_STUB_LIB_PATH=${TCL_BUILD_STUB_LIB_PATH}    fi    #    # eval is required to do the TCL_DBGX substitution    #    eval "TCL_LIB_FILE=\"${TCL_LIB_FILE}\""    eval "TCL_LIB_FLAG=\"${TCL_LIB_FLAG}\""    eval "TCL_LIB_SPEC=\"${TCL_LIB_SPEC}\""    eval "TCL_STUB_LIB_FILE=\"${TCL_STUB_LIB_FILE}\""    eval "TCL_STUB_LIB_FLAG=\"${TCL_STUB_LIB_FLAG}\""    eval "TCL_STUB_LIB_SPEC=\"${TCL_STUB_LIB_SPEC}\""    AC_SUBST(TCL_VERSION)    AC_SUBST(TCL_BIN_DIR)    AC_SUBST(TCL_SRC_DIR)    AC_SUBST(TCL_LIB_FILE)    AC_SUBST(TCL_LIB_FLAG)    AC_SUBST(TCL_LIB_SPEC)    AC_SUBST(TCL_STUB_LIB_FILE)    AC_SUBST(TCL_STUB_LIB_FLAG)    AC_SUBST(TCL_STUB_LIB_SPEC)])#------------------------------------------------------------------------# SC_LOAD_TKCONFIG --##	Load the tkConfig.sh file## Arguments:#	#	Requires the following vars to be set:#		TK_BIN_DIR## Results:##	Sets the following vars that should be in tkConfig.sh:#		TK_BIN_DIR#------------------------------------------------------------------------AC_DEFUN(SC_LOAD_TKCONFIG, [    AC_MSG_CHECKING([for existence of $TK_BIN_DIR/tkConfig.sh])    if test -f "$TK_BIN_DIR/tkConfig.sh" ; then        AC_MSG_RESULT([loading])	. $TK_BIN_DIR/tkConfig.sh    else        AC_MSG_RESULT([could not find $TK_BIN_DIR/tkConfig.sh])    fi    AC_SUBST(TK_VERSION)    AC_SUBST(TK_BIN_DIR)    AC_SUBST(TK_SRC_DIR)    AC_SUBST(TK_LIB_FILE)])#------------------------------------------------------------------------# SC_ENABLE_SHARED --##	Allows the building of shared libraries## Arguments:#	none#	# Results:##	Adds the following arguments to configure:#		--enable-shared=yes|no##	Defines the following vars:#		STATIC_BUILD	Used for building import/export libraries#				on Windows.##	Sets the following vars:#		SHARED_BUILD	Value of 1 or 0#------------------------------------------------------------------------AC_DEFUN(SC_ENABLE_SHARED, [    AC_MSG_CHECKING([how to build libraries])    AC_ARG_ENABLE(shared,	[  --enable-shared         build and link with shared libraries [--enable-shared]],	[tcl_ok=$enableval], [tcl_ok=yes])    if test "${enable_shared+set}" = set; then	enableval="$enable_shared"	tcl_ok=$enableval    else	tcl_ok=yes    fi    if test "$tcl_ok" = "yes" ; then	AC_MSG_RESULT([shared])	SHARED_BUILD=1    else	AC_MSG_RESULT([static])	SHARED_BUILD=0	AC_DEFINE(STATIC_BUILD)    fi])#------------------------------------------------------------------------# SC_ENABLE_FRAMEWORK --##	Allows the building of shared libraries into frameworks## Arguments:#	none#	# Results:##	Adds the following arguments to configure:#		--enable-framework=yes|no##	Sets the following vars:#		FRAMEWORK_BUILD	Value of 1 or 0#------------------------------------------------------------------------AC_DEFUN(SC_ENABLE_FRAMEWORK, [    AC_MSG_CHECKING([how to package libraries])    AC_ARG_ENABLE(framework,	[  --enable-framework      package shared libraries in frameworks [--disable-framework]],	[tcl_ok=$enableval], [tcl_ok=no])    if test "${enable_framework+set}" = set; then	enableval="$enable_framework"	tcl_ok=$enableval    else	tcl_ok=no    fi    if test "$tcl_ok" = "yes" ; then	AC_MSG_RESULT([framework])	FRAMEWORK_BUILD=1	if test "${SHARED_BUILD}" = "0" ; then	    AC_MSG_WARN("Frameworks can only be built if --enable-shared is yes")	    FRAMEWORK_BUILD=0	fi    else	AC_MSG_RESULT([standard shared library])	FRAMEWORK_BUILD=0    fi])#------------------------------------------------------------------------# SC_ENABLE_THREADS --##	Specify if thread support should be enabled## Arguments:#	none#	# Results:##	Adds the following arguments to configure:#		--enable-threads##	Sets the following vars:#		THREADS_LIBS	Thread library(s)##	Defines the following vars:#		TCL_THREADS#		_REENTRANT#		_THREAD_SAFE##------------------------------------------------------------------------AC_DEFUN(SC_ENABLE_THREADS, [    AC_MSG_CHECKING(for building with threads)    AC_ARG_ENABLE(threads, [  --enable-threads        build with threads],	[tcl_ok=$enableval], [tcl_ok=no])    if test "$tcl_ok" = "yes"; then	AC_MSG_RESULT(yes)	TCL_THREADS=1	AC_DEFINE(TCL_THREADS)	# USE_THREAD_ALLOC tells us to try the special thread-based	# allocator that significantly reduces lock contention	AC_DEFINE(USE_THREAD_ALLOC)	AC_DEFINE(_REENTRANT)	AC_DEFINE(_THREAD_SAFE)	AC_CHECK_LIB(pthread,pthread_mutex_init,tcl_ok=yes,tcl_ok=no)	if test "$tcl_ok" = "no"; then	    # Check a little harder for __pthread_mutex_init in the same	    # library, as some systems hide it there until pthread.h is	    # defined.  We could alternatively do an AC_TRY_COMPILE with	    # pthread.h, but that will work with libpthread really doesn't	    # exist, like AIX 4.2.  [Bug: 4359]	    AC_CHECK_LIB(pthread,__pthread_mutex_init,tcl_ok=yes,tcl_ok=no)	fi	if test "$tcl_ok" = "yes"; then	    # The space is needed	    THREADS_LIBS=" -lpthread"	else	    AC_CHECK_LIB(pthreads,pthread_mutex_init,tcl_ok=yes,tcl_ok=no)	    if test "$tcl_ok" = "yes"; then		# The space is needed		THREADS_LIBS=" -lpthreads"	    else		AC_CHECK_LIB(c,pthread_mutex_init,tcl_ok=yes,tcl_ok=no)	    	if test "$tcl_ok" = "no"; then		    AC_CHECK_LIB(c_r,pthread_mutex_init,tcl_ok=yes,tcl_ok=no)		    if test "$tcl_ok" = "yes"; then			# The space is needed			THREADS_LIBS=" -pthread"		    else			TCL_THREADS=0			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...")		    fi	    	fi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -