summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorunknown <tim@localhost.polyesthetic.msg>2000-08-10 11:21:42 -0400
committerunknown <tim@localhost.polyesthetic.msg>2000-08-10 11:21:42 -0400
commit07c1b843621db9f0e7b3e1ed06ceb1256180f04a (patch)
treee053b2ec45f60431341f2d3e3b3f500218c04f4e /Docs
parentf5fa7fee9de0ed453960ada8efee6615cc77aa44 (diff)
downloadmariadb-git-07c1b843621db9f0e7b3e1ed06ceb1256180f04a.tar.gz
Automatically detect HAVE_INT_8_16_32.
Docs/manual.texi: - remove -DHAVE_INT_8_16_32 from recommended CFLAGS configure.in: - add test for int8 acconfig.h: - add HAVE_INT_8_16_32
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index 7eebc96a540..d824c0a1c41 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -6687,8 +6687,8 @@ Automatic detection of @code{xlC} is missing from Autoconf, so a
@strong{MySQL}: (The example uses the IBM compiler)
@example
-shell> CC="xlc_r" CFLAGS="-ma -O3 -qstrict -DHAVE_INT_8_16_32" \
- CXX="xlC_r" CXXFLAGS="-ma -O3 -qstrict -DHAVE_INT_8_16_32" \
+shell> CC="xlc_r" CFLAGS="-ma -O3 -qstrict" \
+ CXX="xlC_r" CXXFLAGS="-ma -O3 -qstrict" \
./configure
@end example
@@ -6704,9 +6704,9 @@ handling in @code{gcc}/@code{egcs} is not thread-safe! (This is tested with
@example
shell> CC=gcc \
- CFLAGS="-DHAVE_INT_8_16_32" \
+ CFLAGS="" \
CXX=gcc \
- CXXFLAGS="-felide-constructors -fno-exceptions -fno-rtti -DHAVE_INT_8_16_32" \" \
+ CXXFLAGS="-felide-constructors -fno-exceptions -fno-rtti" \" \
./configure --prefix=/usr/local/mysql --with-debug --with-low-memory
@end example