Skip to content

Commit

Permalink
Merge pull request #914 from reshmavk/develop
Browse files Browse the repository at this point in the history
Mod_wsgi compilation error in AIX
  • Loading branch information
GrahamDumpleton authored Nov 22, 2024
2 parents 6421db9 + 4297804 commit 1085611
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/server/wsgi_memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@

#elif (defined(_AIX) || defined(__TOS__AIX__)) || (defined(__sun__) || defined(__sun) || defined(sun) && (defined(__SVR4) || defined(__svr4__)))
#include <fcntl.h>
#if defined(_AIX)
#include <sys/procfs.h>
#else
#include <procfs.h>
#endif

#elif defined(__linux__) || defined(__linux) || defined(linux) || defined(__gnu_linux__)
#include <stdio.h>
Expand Down

0 comments on commit 1085611

Please sign in to comment.