[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / dep / ACE_wrappers / ace / config-vxworks.h
blobbb6ed5796d5f61cd25e9532c4d3b0e7a78fb5d52
1 //* -*- C++ -*- */
2 // $Id: config-vxworks.h 81046 2008-03-21 10:11:12Z johnnyw $
4 // The following configuration file is designed to work for VxWorks
5 // Based on ACE_VXWORKS it will select the correct config file
7 #ifndef ACE_CONFIG_VXWORKS_H
8 #define ACE_CONFIG_VXWORKS_H
9 #include /**/ "ace/pre.h"
11 // If ACE_VXWORKS is not defined try to figure out the VxWorks version
12 #if !defined (ACE_VXWORKS)
13 # include "vxWorks.h"
14 # if !defined (_WRS_VXWORKS_MAJOR) && !defined (_WRS_VXWORKS_MINOR)
15 # error You must define ACE_VXWORKS
16 # else
17 # if (_WRS_VXWORKS_MAJOR == 6)
18 # if (_WRS_VXWORKS_MINOR == 0)
19 # define ACE_VXWORKS 0x600
20 # elif (_WRS_VXWORKS_MINOR == 1)
21 # define ACE_VXWORKS 0x610
22 # elif (_WRS_VXWORKS_MINOR == 2)
23 # define ACE_VXWORKS 0x620
24 # elif (_WRS_VXWORKS_MINOR == 3)
25 # define ACE_VXWORKS 0x630
26 # elif (_WRS_VXWORKS_MINOR == 4)
27 # define ACE_VXWORKS 0x640
28 # elif (_WRS_VXWORKS_MINOR == 5)
29 # define ACE_VXWORKS 0x650
30 # elif (_WRS_VXWORKS_MINOR == 6)
31 # define ACE_VXWORKS 0x660
32 # endif
33 # endif
34 # endif
35 #endif /* ! ACE_VXWORKS */
37 #if (ACE_VXWORKS == 0x551)
38 # include "ace/config-vxworks5.x.h"
39 #elif (ACE_VXWORKS == 0x620)
40 # include "ace/config-vxworks6.2.h"
41 #elif (ACE_VXWORKS == 0x630)
42 # include "ace/config-vxworks6.3.h"
43 #elif (ACE_VXWORKS == 0x640)
44 # include "ace/config-vxworks6.4.h"
45 #elif (ACE_VXWORKS == 0x650)
46 # include "ace/config-vxworks6.5.h"
47 #elif (ACE_VXWORKS == 0x660)
48 # include "ace/config-vxworks6.6.h"
49 #else
50 #error Unknown VxWorks version
51 #endif
53 #include /**/ "ace/post.h"
54 #endif /* ACE_CONFIG_VXWORKS_H */