Skip to content

Commit

Permalink
Revert "add workaround for musl (#317)"
Browse files Browse the repository at this point in the history
This reverts commit 7af15b3.
  • Loading branch information
ouwou committed Jun 23, 2024
1 parent 7af15b3 commit 8fc4d03
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions src/abaddon.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include "abaddon.hpp"
#include <cstdlib>
#include <memory>
#include <spdlog/spdlog.h>
#include <spdlog/cfg/env.h>
Expand Down Expand Up @@ -1154,32 +1153,7 @@ void Abaddon::on_window_hide() {
}
}

// clang-format off

#ifdef __GLIBC__
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#include <features.h>
#ifndef __USE_GNU
#define __MUSL__
#endif
#undef _GNU_SOURCE
#else
#include <features.h>
#ifndef __USE_GNU
#define __MUSL__
#endif
#endif
#endif

// clang-format on

int main(int argc, char **argv) {
#ifdef __MUSL__
char env[] = "LANG=C";
putenv(env);
#endif

if (std::getenv("ABADDON_NO_FC") == nullptr)
Platform::SetupFonts();

Expand Down

0 comments on commit 8fc4d03

Please sign in to comment.