Kaydet (Commit) 505c4c28 authored tarafından Michael W. Hudson's avatar Michael W. Hudson

Simple fix for

[ 733781 ] fcntl fails to build on old RH Linux
üst ee0325ac
......@@ -556,7 +556,10 @@ all_ins(PyObject* d)
INS(I_FDINSERT);
INS(I_STR);
INS(I_SWROPT);
#ifdef I_GWROPT
/* despite the comment above, old-ish glibcs miss a couple... */
INS(I_GWROPT);
#endif
INS(I_SENDFD);
INS(I_RECVFD);
INS(I_LIST);
......@@ -565,7 +568,9 @@ all_ins(PyObject* d)
INS(I_GETBAND);
INS(I_CANPUT);
INS(I_SETCLTIME);
#ifdef I_GETCLTIME
INS(I_GETCLTIME);
#endif
INS(I_LINK);
INS(I_UNLINK);
INS(I_PLINK);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment