diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2007-04-26 00:01:06 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2007-04-26 00:01:06 +0000 |
| commit | 95529d52609cfbfc7df137d5bb50a0f7e4a2ddba (patch) | |
| tree | 3a34cf87fe183e813ad9518206e9515c23e7e057 /cpp/src/qpid/sys | |
| parent | d0cfa8d4724bd5f5f018d923d62d9bea87cdcb80 (diff) | |
| download | qpid-python-95529d52609cfbfc7df137d5bb50a0f7e4a2ddba.tar.gz | |
* Make APR/"posix" configurable using --disable-apr
* Make "posix" code build (but not run correctly)
* By default still build APR version, which works as before
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@532543 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys')
| -rw-r--r-- | cpp/src/qpid/sys/posix/PosixAcceptor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/posix/PosixAcceptor.cpp b/cpp/src/qpid/sys/posix/PosixAcceptor.cpp index b5f6c6ee83..af200d393d 100644 --- a/cpp/src/qpid/sys/posix/PosixAcceptor.cpp +++ b/cpp/src/qpid/sys/posix/PosixAcceptor.cpp @@ -31,7 +31,7 @@ void fail() { throw qpid::Exception("PosixAcceptor not implemented"); } class PosixAcceptor : public Acceptor { public: - virtual int16_t getPort() const { fail(); return 0; } + virtual uint16_t getPort() const { fail(); return 0; } virtual void run(qpid::sys::ConnectionInputHandlerFactory* ) { fail(); } virtual void shutdown() { fail(); } }; |
