~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

Merged in TBB removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
      AC_MSG_ERROR([libz is required for Drizzle. On Debian this can be found in zlib1g-dev. On RedHat this can be found in zlib-devel.]))
129
129
 
130
130
#--------------------------------------------------------------------
131
 
# Check for TBB
132
 
#--------------------------------------------------------------------
133
 
 
134
 
AC_LANG_PUSH(C++)
135
 
AC_LIB_HAVE_LINKFLAGS(tbb,,
136
 
[#include <tbb/atomic.h>
137
 
 #include <stdint.h>
138
 
],
139
 
[
140
 
  tbb::atomic<uint64_t> x;
141
 
  tbb::atomic<uint8_t> y;
142
 
  x=0;
143
 
  y=0;
144
 
  x++;
145
 
  y++;
146
 
])
147
 
AC_LANG_POP()
148
 
 
149
 
#--------------------------------------------------------------------
150
131
# Check for libreadline or compatible (libedit on Mac OS X)
151
132
#--------------------------------------------------------------------
152
133