diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-07 16:12:44 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-07 16:12:44 (GMT) |
commit | fb2d25a15432bf53bd62c1033114732f03a22b8d (patch) | |
tree | 7858200c6c16990245dc6ab9aa03b5656850900f /pyconfig.h.in | |
parent | e28fa297e93f9904520b55ee903edaa4c2ef17bf (diff) | |
download | cpython-fb2d25a15432bf53bd62c1033114732f03a22b8d.zip cpython-fb2d25a15432bf53bd62c1033114732f03a22b8d.tar.gz cpython-fb2d25a15432bf53bd62c1033114732f03a22b8d.tar.bz2 |
Issue #1646: Make socket support TIPC. The socket module now has support
for TIPC under Linux, see http://tipc.sf.net/ for more information.
Thanks to Alberto Bertogli for the patch
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 26197fb..ef04c12 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -354,6 +354,9 @@ /* Define to 1 if you have the <linux/netlink.h> header file. */ #undef HAVE_LINUX_NETLINK_H +/* Define to 1 if you have the <linux/tipc.h> header file. */ +#undef HAVE_LINUX_TIPC_H + /* Define this if you have the type long long. */ #undef HAVE_LONG_LONG @@ -1040,4 +1043,3 @@ #endif /*Py_PYCONFIG_H*/ - |