diff options
author | Jesse Noller <jnoller@gmail.com> | 2009-03-31 18:12:35 (GMT) |
---|---|---|
committer | Jesse Noller <jnoller@gmail.com> | 2009-03-31 18:12:35 (GMT) |
commit | 40a6164afa79f6b97e7e40e0f35f6081fde437c2 (patch) | |
tree | 3451eabd1be9e42982a3d13ef770bd924e6377b1 /Modules/socketmodule.c | |
parent | 3476d1279f469125c62bcea8a84ab65c1e271152 (diff) | |
download | cpython-40a6164afa79f6b97e7e40e0f35f6081fde437c2.zip cpython-40a6164afa79f6b97e7e40e0f35f6081fde437c2.tar.gz cpython-40a6164afa79f6b97e7e40e0f35f6081fde437c2.tar.bz2 |
Apply patch for netbsd multiprocessing support
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 9cefe04..b5f53a3 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -379,7 +379,7 @@ const char *inet_ntop(int af, const void *src, char *dst, socklen_t size); #define SOCKETCLOSE close #endif -#if defined(HAVE_BLUETOOTH_H) || defined(HAVE_BLUETOOTH_BLUETOOTH_H) +#if defined(HAVE_BLUETOOTH_H) || defined(HAVE_BLUETOOTH_BLUETOOTH_H) && !defined(__NetBSD__) #define USE_BLUETOOTH 1 #if defined(__FreeBSD__) #define BTPROTO_L2CAP BLUETOOTH_PROTO_L2CAP |