From c6525d5bf37c5d6ddfd674d1690a8c4f2d9257d5 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Fri, 11 Feb 2022 00:05:10 +0100 Subject: Method to find arrayobject.h path on any distro Improved solution to the issue described in commit 1cfdf5c198f1c74c2f894067baf4670f5bca8e70 The new solution should be more OS-independent. Tested on MacOS 12.1 and Debian 10 Buster. Signed-off-by: Jonas Schmid --- c_extension.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'c_extension.c') diff --git a/c_extension.c b/c_extension.c index 6cfadba..7aebced 100644 --- a/c_extension.c +++ b/c_extension.c @@ -39,21 +39,10 @@ POSSIBILITY OF SUCH DAMAGE. #include #include #include +#include #include "helpers.h" -/* On Debian Linux and its derivatives (such as ubuntu), Python libraries - * installed through the package manager are kept in a non-standard directory - * 'dist-packages' instead of 'site-packages'. Why? Who knows. - * - * https://wiki.debian.org/Python#Deviations_from_upstream - */ -#ifdef DEBIAN_LINUX - #include -#else - #include -#endif - #define DEFAULT_FRAME_RATE 10 ///< default frame rate #define MAX_FRAME_WIDTH 1280 ///< O-3000 image width in pixels -- cgit v1.2.1