Skip to content

Commit 3401231

Browse files
committed
Change plugin library suffixes on AIX to be .so
1 parent da4da76 commit 3401231

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ibmras/monitoring/agent/Agent.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ const char* LIBSUFFIX = ".dll";
4343
#define AGENT_DECL
4444
const char PATHSEPARATOR = '/';
4545
const char* LIBPREFIX = "lib";
46-
#if defined(AIX)
47-
const char* LIBSUFFIX = ".a";
48-
#elif defined(__MACH__) || defined(__APPLE__)
46+
#if defined(__MACH__) || defined(__APPLE__)
4947
const char* LIBSUFFIX = ".dylib";
5048
#else
5149
const char* LIBSUFFIX = ".so";

0 commit comments

Comments
 (0)