diff options
author | jofret | 2008-06-05 10:52:54 +0000 |
---|---|---|
committer | jofret | 2008-06-05 10:52:54 +0000 |
commit | 576f855e4fdf04cc49f57b173062731f3d03271d (patch) | |
tree | 0a5fa96448b25e82cde0eea539cdb4487dc98b89 | |
parent | 4647c1d2af5a5aba68ad32ba5dfd78ac8d7b9fbc (diff) | |
download | scilab2c-576f855e4fdf04cc49f57b173062731f3d03271d.tar.gz scilab2c-576f855e4fdf04cc49f57b173062731f3d03271d.tar.bz2 scilab2c-576f855e4fdf04cc49f57b173062731f3d03271d.zip |
Add lenght to configure
ignore property set
-rwxr-xr-x | src/configure | 3 | ||||
-rw-r--r-- | src/configure.ac | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/configure b/src/configure index 91e6d5b2..5007c55a 100755 --- a/src/configure +++ b/src/configure @@ -22141,7 +22141,7 @@ fi ###### Creation of the header file (machine.h) ####################### -ac_config_files="$ac_config_files Makefile lib/blas/Makefile lib/lapack/Makefile type/Makefile matrixOperations/Makefile elementaryFunctions/Makefile elementaryFunctions/cos/Makefile elementaryFunctions/cosh/Makefile elementaryFunctions/acos/Makefile elementaryFunctions/acosh/Makefile elementaryFunctions/sin/Makefile elementaryFunctions/sinh/Makefile elementaryFunctions/asin/Makefile elementaryFunctions/asinh/Makefile elementaryFunctions/tan/Makefile elementaryFunctions/tanh/Makefile elementaryFunctions/atan/Makefile elementaryFunctions/atanh/Makefile elementaryFunctions/log/Makefile elementaryFunctions/log1p/Makefile elementaryFunctions/log10/Makefile elementaryFunctions/exp/Makefile elementaryFunctions/exp10/Makefile elementaryFunctions/sqrt/Makefile elementaryFunctions/lnp1m1/Makefile auxiliaryFunctions/Makefile auxiliaryFunctions/abs/Makefile auxiliaryFunctions/find/Makefile auxiliaryFunctions/isempty/Makefile auxiliaryFunctions/isnan/Makefile auxiliaryFunctions/rand/Makefile auxiliaryFunctions/sign/Makefile auxiliaryFunctions/size/Makefile auxiliaryFunctions/type/Makefile auxiliaryFunctions/pythag/Makefile statisticsFunctions/Makefile statisticsFunctions/mean/Makefile statisticsFunctions/sum/Makefile" +ac_config_files="$ac_config_files Makefile lib/blas/Makefile lib/lapack/Makefile type/Makefile matrixOperations/Makefile elementaryFunctions/Makefile elementaryFunctions/cos/Makefile elementaryFunctions/cosh/Makefile elementaryFunctions/acos/Makefile elementaryFunctions/acosh/Makefile elementaryFunctions/sin/Makefile elementaryFunctions/sinh/Makefile elementaryFunctions/asin/Makefile elementaryFunctions/asinh/Makefile elementaryFunctions/tan/Makefile elementaryFunctions/tanh/Makefile elementaryFunctions/atan/Makefile elementaryFunctions/atanh/Makefile elementaryFunctions/log/Makefile elementaryFunctions/log1p/Makefile elementaryFunctions/log10/Makefile elementaryFunctions/exp/Makefile elementaryFunctions/exp10/Makefile elementaryFunctions/sqrt/Makefile elementaryFunctions/lnp1m1/Makefile auxiliaryFunctions/Makefile auxiliaryFunctions/abs/Makefile auxiliaryFunctions/find/Makefile auxiliaryFunctions/isempty/Makefile auxiliaryFunctions/isnan/Makefile auxiliaryFunctions/rand/Makefile auxiliaryFunctions/sign/Makefile auxiliaryFunctions/size/Makefile auxiliaryFunctions/length/Makefile auxiliaryFunctions/type/Makefile auxiliaryFunctions/pythag/Makefile statisticsFunctions/Makefile statisticsFunctions/mean/Makefile statisticsFunctions/sum/Makefile" @@ -22785,6 +22785,7 @@ do "auxiliaryFunctions/rand/Makefile") CONFIG_FILES="$CONFIG_FILES auxiliaryFunctions/rand/Makefile" ;; "auxiliaryFunctions/sign/Makefile") CONFIG_FILES="$CONFIG_FILES auxiliaryFunctions/sign/Makefile" ;; "auxiliaryFunctions/size/Makefile") CONFIG_FILES="$CONFIG_FILES auxiliaryFunctions/size/Makefile" ;; + "auxiliaryFunctions/length/Makefile") CONFIG_FILES="$CONFIG_FILES auxiliaryFunctions/length/Makefile" ;; "auxiliaryFunctions/type/Makefile") CONFIG_FILES="$CONFIG_FILES auxiliaryFunctions/type/Makefile" ;; "auxiliaryFunctions/pythag/Makefile") CONFIG_FILES="$CONFIG_FILES auxiliaryFunctions/pythag/Makefile" ;; "statisticsFunctions/Makefile") CONFIG_FILES="$CONFIG_FILES statisticsFunctions/Makefile" ;; diff --git a/src/configure.ac b/src/configure.ac index a0866740..1d763d18 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -187,6 +187,7 @@ auxiliaryFunctions/isnan/Makefile auxiliaryFunctions/rand/Makefile auxiliaryFunctions/sign/Makefile auxiliaryFunctions/size/Makefile +auxiliaryFunctions/length/Makefile auxiliaryFunctions/type/Makefile auxiliaryFunctions/pythag/Makefile statisticsFunctions/Makefile |