This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nascheme
Recipients davin, nascheme, ronaldoussoren
Date 2019-02-06.20:28:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549484919.01.0.0323339122805.issue35903@roundup.psfhosted.org>
In-reply-to
Content
Hi Ronald,
I tested with my MacBook but I'm not sure what version of the OS.  Probably the latest but I can check when I get home.  Maybe my comment was not clear. On my MacBook, you don't need librt for shm_open, etc.  That sounds like it is the same as your 10.14.3.

AC_SEARCH_LIBS is the macro I'm using to find if I need to link with librt.  It is a bit hard to use though.  It will execute the true clause if the function doesn't require any of the specified libraries.  That seems to be the case for MacOS.  It also adds -lrt to LIBS and so I have to undo that.

I'm using $ac_cv_search_shm_open test if -lrt is actually needed.
History
Date User Action Args
2019-02-06 20:28:40naschemesetrecipients: + nascheme, ronaldoussoren, davin
2019-02-06 20:28:39naschemesetmessageid: <1549484919.01.0.0323339122805.issue35903@roundup.psfhosted.org>
2019-02-06 20:28:38naschemelinkissue35903 messages
2019-02-06 20:28:38naschemecreate