diff options
author | unknown <tim@cane.mysql.fi> | 2000-12-22 20:57:00 +0200 |
---|---|---|
committer | unknown <tim@cane.mysql.fi> | 2000-12-22 20:57:00 +0200 |
commit | c80fe386202e1c6963c6a21c76cea3ad9162e28f (patch) | |
tree | 8a33f9abb76f136028040e393e9cb78f36df61e1 /configure.in | |
parent | 19399bab469853c3ade2e1b030e16968424b335e (diff) | |
download | mariadb-git-c80fe386202e1c6963c6a21c76cea3ad9162e28f.tar.gz |
Style fix - keep os-specific stuff together.
configure.in:
- move extra bsdi fix up with other os-specific hacks
include/global.h:
- move extra bsdi fix up with other os-specific hacks
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.in b/configure.in index c6885bffec0..fbfb3119674 100644 --- a/configure.in +++ b/configure.in @@ -711,6 +711,7 @@ case $SYSTEM_TYPE in *bsdi*) echo "Adding fix for BSDI" CFLAGS="$CFLAGS -D__BSD__" + AC_DEFINE_UNQUOTED(SOCKOPT_OPTLEN_TYPE, size_t) ;; *sgi-irix6*) if test "$with_named_thread" = "no" @@ -1177,10 +1178,6 @@ AC_C_BIGENDIAN #---START: Used in for client configure # Check base type of last arg to accept MYSQL_TYPE_ACCEPT -case "$SYSTEM_TYPE" in -*bsdi* ) AC_DEFINE_UNQUOTED(SOCKOPT_OPTLEN_TYPE, size_t);; -* ) AC_DEFINE_UNQUOTED(SOCKOPT_OPTLEN_TYPE, size_socket);; -esac #---END: # Find where the stack goes |