adjustments to fix for [bugs:#2646]
diff --git a/autoconfiscate.sh b/autoconfiscate.sh
index 3b0f3db..589f682 100755
--- a/autoconfiscate.sh
+++ b/autoconfiscate.sh
@@ -3,6 +3,6 @@
 
 aclocal
 autoheader
-test -x `which glibtoolize` && glibtoolize || libtoolize
+test `which glibtoolize 2> /dev/null` && glibtoolize || libtoolize
 automake -af
 autoconf
diff --git a/configure.ac b/configure.ac
index 82a584d..484dfb4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -77,7 +77,6 @@
 fi
 
 AC_CONFIG_FILES([Makefile sfcc.spec TEST/Makefile ])
-AC_OUTPUT
 
 #### Platform Specific Configuration ####
 AC_CANONICAL_HOST
@@ -92,3 +91,5 @@
 esac
 
 AC_SUBST(HOST_LDFLAGS)
+
+AC_OUTPUT
diff --git a/contributions.txt b/contributions.txt
index c08b7e1..c4bc908 100644
--- a/contributions.txt
+++ b/contributions.txt
@@ -59,3 +59,7 @@
 ------------
 07/31/2012 [ 3547832 ] memory leak in backend/cimxml/grammer.c
 09/10/2012 [ 3555103 ] wrong declaration of release attribute in _CIMCArgsFT
+
+James Kyle
+----------
+07/02/2013 [bugs:#2646] sblim-sfcc does not compile on apple systems