-
If DESTDIR is set while doing make install, library will be installed to ${DESTDIR}${PREFIX} but headers will be installed to ${PREFIX}. The patch fixes this inconsistency. The patch can also be downloaded from
http://pkgsrc-wip.cvs.sourceforge.net/viewvc/*checkout*/pkgsrc-wip/wip/quickfix/patches/patch-ac?revision=1.1
Thanks,
Alex.
2009-12-21 23:18:35 UTC by alnsn
-
The patch adds NetBSD to threading flags detection section in the configure.in. All tests (runut, runat and runat_threaded) pass.
The patch can also be downloaded from
http://pkgsrc-wip.cvs.sourceforge.net/viewvc/*checkout*/pkgsrc-wip/wip/quickfix/patches/patch-aa?revision=1.1
Thanks,
Alex.
2009-12-21 23:11:50 UTC by alnsn
-
For example if i have the following C++ code for my Acceptor application:
FIX::SessionSettings settings("conf/FIXServer.cfg");
FIX::Dictionary dictionary;
vector userList = PersistenciaServer.GetUserNames(); //PersistenciaServer is my database access object
for (int i=0; i
2009-12-17 21:47:32 UTC by stapiar
-
The following code is in SocketConnector.cpp:
int SocketConnector::connect( const std::string& address, int port, bool noDelay )
{
int socket = socket_createConnector();
if ( socket != -1 )
{
if( noDelay )
socket_setsockopt( socket, TCP_NODELAY );
m_monitor.addConnect( socket );
socket_connect( socket,
2009-12-15 21:49:45 UTC by jzwinck
-
Changing from unsigned to unsigned long allows compilation, but 5 unit tests are failing:
6
7
8
9
10
11
12
13 ...
2009-11-30 17:25:13 UTC by eugenekr
-
Receiving the following compilation error on a Mac OS X 10.6.2:
Utility.cpp: In function 'bool FIX::thread_spawn(void* (*)(void*), void*, unsigned int&)':
Utility.cpp:456: error: cast from '_opaque_pthread_t*' to 'int' loses precision
Utility.cpp: In function 'unsigned int FIX::thread_self()':
Utility.cpp:496: error: cast from '_opaque_pthread_t*' to 'int' loses precision
make[4]: ***...
2009-11-30 16:44:01 UTC by eugenekr
-
Not a bug. Message was created from a string without using the message cracker. Please ignore.
2009-11-15 21:42:44 UTC by crogers
-
I just attached two patch files that should yield a fix for this issue. Ideally these patch files are applied to SocketConnector.cpp and SocketInitiator.cpp in version 1.12.4 of the QuickFIX C++ source code.
2009-11-11 20:53:27 UTC by Rob
-
From the spec:
It is permissible for fields to be repeated within a repeating group (e.g.
"384=2372=6385=R372=7385=R" represents a repeating group
with two repeating instances “delimited” by tag 372 (first field in the repeating group.).
• The NoXXX field which specifies the number of repeating group instances occurs once for a
repeating...
2009-11-10 23:28:54 UTC by crogers
-
I forgot to mention the QuickFIX details
Version: 1.12.4, C++
Compiled using SunPro with 64bit option.
2009-11-10 20:42:21 UTC by Rob