Marc Lerma wrote:
So, does it mean that there's no way to run any of the examples at the
moment in Visual Studio? It looks like there are still some dependencies
among libraries that have to be resolved.
I'm trying to run the 'direct' example and getting the following errors
when compiling the project:
1>Compilando...
1>declare_queues.cpp
1>c:\qpid-0.4\qpidc-0.4\src\qpid\sys\posix\integertypes.h(24) : fatal error
C1083: No se puede abrir el archivo incluir: 'stdint.h': No such file or
directory
1>direct_producer.cpp
1>c:\qpid-0.4\qpidc-0.4\src\qpid\sys\posix\integertypes.h(24) : fatal error
C1083: No se puede abrir el archivo incluir: 'stdint.h': No such file or
directory
1>listener.cpp
1>c:\qpid-0.4\qpidc-0.4\src\qpid\sys\posix\integertypes.h(24) : fatal error
C1083: No se puede abrir el archivo incluir: 'stdint.h': No such file or
directory
is there a simple solution to this? Stdint.h is a basic C library to deal
with integer types. Can we somehow get rid of these dependencies?
You shouldn't be picking up the posix versions. There is a conditional
include of platform specific headers:
#if (defined(_WINDOWS) || defined (WIN32)) && defined(_MSC_VER)
I.e. make sure either _WINDOWS or WIN32 is defined and also that
_MSC_VER is defined.
---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project: http://qpid.apache.org
Use/Interact: mailto:[email protected]