summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 072ff6fe..578830ef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-12-06 Kaz Kylheku <kaz@kylheku.com>
+
+ * configure: Forgot to treat octal number in the processing
+ of conftest.syms. Removed useless eval.
+
2011-12-05 Kaz Kylheku <kaz@kylheku.com>
Version 045
diff --git a/configure b/configure
index 4386ddc4..dc66a77e 100755
--- a/configure
+++ b/configure
@@ -720,10 +720,10 @@ char sizeof_wchar_t[sizeof (wchar_t)];
sizeof_wchar_t=0
while read symbol type offset size ; do
- eval "size=$(( 0$size + 0 ))"
+ size=$(( 0$size + 0 ))
symbol=${symbol#_}
if [ "$type" = "C" ] ; then
- size=$offset
+ size=$(( 0$offset + 0 ))
fi
case "$symbol" in
sizeof* )