From 24951667702e12c825c8294ec9563f6476d9c8da Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 25 Oct 2024 10:12:58 -0500 Subject: [PATCH] build: drop MAXPATHLEN definition This is no longer used in the code, so we can drop it. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d7e1341a0..a87a6e1c9 100644 --- a/meson.build +++ b/meson.build @@ -125,7 +125,7 @@ if os == 'Linux' or os == 'GNU-kFreeBSD' elif os == 'FreeBSD' cc_os_flags = ['-D_BSD_SOURCE'] elif os == 'GNU' - cc_os_flags = ['-D_DEFAULT_SOURCE', '-DMAXPATHLEN=4096', '-DPATH_MAX=4096'] + cc_os_flags = ['-D_DEFAULT_SOURCE', '-DPATH_MAX=4096'] endif # Try and use some good cc flags if we're building from git. We don't use