comparison lwlib/config.h.in @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents f220cc83d72e
children b8cc9ab3f761
comparison
equal deleted inserted replaced
397:f4aeb21a5bad 398:74fd4e045ea6
27 27
28 #undef NEED_MOTIF 28 #undef NEED_MOTIF
29 #undef NEED_ATHENA 29 #undef NEED_ATHENA
30 #undef NEED_LUCID 30 #undef NEED_LUCID
31 31
32 /* The path to the Athena widgets - the usual value is `X11/Xaw' */
33 #undef ATHENA_H_PATH
34
35 /* For use in #include statements.
36 You can't use macros directly within the <> of a #include statement.
37 The multiply nested macros are necessary to make old gcc's happy.
38 However, those nested macros are too much for AIX xlc to deal with. */
39 #if defined(_AIX) && !defined(__GNUC__)
40 #define ATHENA_INCLUDE(header_file) <ATHENA_H_PATH/header_file>
41 #else
42 #define INCLUDE_GLUE_2(dirname,basename) <##dirname##/##basename##>
43 #define INCLUDE_GLUE_1(dirname,basename) INCLUDE_GLUE_2(dirname,basename)
44 #define ATHENA_INCLUDE(header_file) INCLUDE_GLUE_1(ATHENA_H_PATH,header_file)
45 #endif
46
32 #endif /* _LWLIB_CONFIG_H_ */ 47 #endif /* _LWLIB_CONFIG_H_ */