diff options
author | mo <mo> | 2000-08-25 05:55:05 (GMT) |
---|---|---|
committer | mo <mo> | 2000-08-25 05:55:05 (GMT) |
commit | 4e40628e20d645ccec764e7147fefaeb120df3cc (patch) | |
tree | cdf155021554b342405ec965f7228475bcf4915c /unix/tcl.m4 | |
parent | 50b9bc1638f4c41a8d83bef8954ee03469089691 (diff) | |
download | tk-4e40628e20d645ccec764e7147fefaeb120df3cc.zip tk-4e40628e20d645ccec764e7147fefaeb120df3cc.tar.gz tk-4e40628e20d645ccec764e7147fefaeb120df3cc.tar.bz2 |
remove --enable-gcc configure option
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index d00d058..7981282 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -257,36 +257,6 @@ AC_DEFUN(SC_LOAD_TKCONFIG, [ ]) #------------------------------------------------------------------------ -# SC_ENABLE_GCC -- -# -# Allows the use of GCC if available -# -# Arguments: -# none -# -# Results: -# -# Adds the following arguments to configure: -# --enable-gcc -# -# Sets the following vars: -# CC Command to use for the compiler -#------------------------------------------------------------------------ - -AC_DEFUN(SC_ENABLE_GCC, [ - AC_ARG_ENABLE(gcc, [ --enable-gcc allow use of gcc if available [--disable-gcc]], - [ok=$enableval], [ok=no]) - if test "$ok" = "yes"; then - if test -z "$CC"; then - CC=gcc - fi - AC_PROG_CC - else - CC=${CC-cc} - fi -]) - -#------------------------------------------------------------------------ # SC_ENABLE_SHARED -- # # Allows the building of shared libraries |