mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:58:12 +00:00
AK: Add support for mlibc in LexicalPath
This commit is contained in:
parent
939374a037
commit
b4b7264fa5
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,11 @@
|
|||
#include <AK/String.h>
|
||||
#include <AK/Vector.h>
|
||||
|
||||
// On Linux distros that use mlibc `basename` is defined as a macro that expands to `__mlibc_gnu_basename` or `__mlibc_gnu_basename_c`, so we undefine it.
|
||||
#if defined(AK_OS_LINUX) && defined(basename)
|
||||
# undef basename
|
||||
#endif
|
||||
|
||||
namespace AK {
|
||||
|
||||
class LexicalPath {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue