diff options
| author | Manuel Teira Paz <mteira@apache.org> | 2009-03-05 16:06:42 +0000 |
|---|---|---|
| committer | Manuel Teira Paz <mteira@apache.org> | 2009-03-05 16:06:42 +0000 |
| commit | 773c8df10686a515b8b57ca3c68f8f1887a55497 (patch) | |
| tree | 825840bf8e461b7addffb65bac8ea287bcd2be66 /cpp/src/Makefile.am | |
| parent | ffe0697dc146cb3f4fedc9a0da622e82b88649d8 (diff) | |
| download | qpid-python-773c8df10686a515b8b57ca3c68f8f1887a55497.tar.gz | |
Implement a solaris qpid::sys::SystemInfo
Choose implementation based on SUNOS definition
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@750486 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/Makefile.am')
| -rw-r--r-- | cpp/src/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am index 5d50756ec1..1a318e14fe 100644 --- a/cpp/src/Makefile.am +++ b/cpp/src/Makefile.am @@ -127,7 +127,6 @@ posix_plat_src = \ qpid/sys/posix/Time.cpp \ qpid/sys/posix/Thread.cpp \ qpid/sys/posix/Shlib.cpp \ - qpid/sys/posix/SystemInfo.cpp \ qpid/sys/posix/Mutex.cpp \ qpid/sys/posix/Fork.cpp \ qpid/sys/posix/StrError.cpp \ @@ -151,7 +150,13 @@ if HAVE_ECF poller = qpid/sys/solaris/ECFPoller.cpp endif -platform_src = $(posix_plat_src) $(poller) +if SUNOS + systeminfo = qpid/sys/solaris/SystemInfo.cpp +else + systeminfo = qpid/sys/posix/SystemInfo.cpp +endif + +platform_src = $(posix_plat_src) $(poller) $(systeminfo) platform_hdr = $(posix_plat_hdr) posix_broker_src = \ |
