~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Monty Taylor
  • Date: 2008-07-02 14:35:48 UTC
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: monty@inaugust.com-20080702143548-onj30ry0sugr01uw
Removed all references to THREAD.

Show diffs side-by-side

added added

removed removed

Lines of Context:
629
629
  AC_CHECK_FUNC(gtty, , AC_CHECK_LIB(compat, gtty))
630
630
fi
631
631
 
632
 
# We make a special variable for non-threaded version of LIBS to avoid
633
 
# including thread libs into non-threaded version of MySQL client library.
634
 
# Later in this script LIBS will be augmented with a threads library.
635
 
NON_THREADED_LIBS="$LIBS"
636
 
 
637
632
AC_CHECK_TYPES([int8, uint8, int16, uint16, int32, uint32, int64, uint64,
638
633
                uchar, uint, ulong],[],[], [
639
634
#include <sys/types.h>
1161
1156
MYSQL_CONFIGURE_PLUGINS([none])
1162
1157
 
1163
1158
AC_SUBST(CLIENT_LIBS)
1164
 
AC_SUBST(CLIENT_THREAD_LIBS)
1165
1159
AC_SUBST(STATIC_NSS_FLAGS)
1166
1160
 
1167
 
AC_DEFINE([THREAD], [1],
1168
 
          [Define if you want to have threaded code. This may be undef on client code])
1169
 
 
1170
1161
# IMPORTANT - do not modify LIBS past this line - this hack is the only way
1171
1162
# I know to add the static NSS magic if we have static NSS libraries with
1172
1163
# glibc - Sasha