Skip to content

Commit

Permalink
build: drop MAXPATHLEN definition
Browse files Browse the repository at this point in the history
This is no longer used in the code, so we can drop it.
  • Loading branch information
williamh committed Oct 25, 2024
1 parent cadc1d2 commit 2495166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2495166

Please sign in to comment.