Skip to content

Commit

Permalink
Fix compilation on Alpine Linux
Browse files Browse the repository at this point in the history
Closes #131
  • Loading branch information
User committed Dec 24, 2022
1 parent 71ce4a8 commit 660acb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ On FreeBSD-based LIVEstep:
On Alpine Linux:

```
apk add --no-cache qt5-qtbase-dev kwindowsystem-dev qt5-qttools-dev kdbusaddons-dev baloo-dev xcb-util-wm-dev libdbusmenu-qt-dev git cmake musl-dev alpine-sdk clang
apk add --no-cache qt5-qtbase-dev kwindowsystem-dev qt5-qttools-dev kdbusaddons-dev baloo-dev xcb-util-wm-dev libdbusmenu-qt-dev procps-dev git cmake musl-dev alpine-sdk clang
```

On Arch Linux:
Expand Down
2 changes: 1 addition & 1 deletion src/applicationinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
#include <limits.h>

#include <sys/socket.h>
#include <sys/sysctl.h>
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/user.h>
#include <QDir>
#include <fcntl.h>
#if defined(__FreeBSD__)
#include <sys/sysctl.h>
#include <libprocstat.h>
#endif
#if defined(__linux__)
Expand Down

0 comments on commit 660acb5

Please sign in to comment.