2004-07-02 Michael Chastain <mec.gnu@mindspring.com>
* lib/compiler.c: Accept __HP_CXD_SPP for old hp ansi c compiler. * lib/compiler.cc: Likewise.
This commit is contained in:
parent
2d2b9592a7
commit
d205ad70f2
@ -1,3 +1,8 @@
|
||||
2004-07-02 Michael Chastain <mec.gnu@mindspring.com>
|
||||
|
||||
* lib/compiler.c: Accept __HP_CXD_SPP for old hp ansi c compiler.
|
||||
* lib/compiler.cc: Likewise.
|
||||
|
||||
2004-06-30 Michael Chastain <mec.gnu@mindspring.com>
|
||||
|
||||
* lib/compiler.cc: Work around string preprocessing problem
|
||||
|
@ -52,7 +52,13 @@ set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ "unknown"} -]
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (__HP_CXD_SPP)
|
||||
/* older hp ansi c, such as A.11.01.25171.gp, defines this */
|
||||
set compiler_info [join {hpcc __HP_CXD_SPP} -]
|
||||
#endif
|
||||
|
||||
#if defined (__HP_cc)
|
||||
/* newer hp ansi c, such as B.11.11.28706.gp, defines this */
|
||||
set compiler_info [join {hpcc __HP_cc} -]
|
||||
#endif
|
||||
|
||||
|
@ -40,7 +40,13 @@ set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ "unknown"} -]
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (__HP_CXD_SPP)
|
||||
/* older hp ansi c, such as A.11.01.25171.gp, defines this */
|
||||
set compiler_info [join {hpcc __HP_CXD_SPP} -]
|
||||
#endif
|
||||
|
||||
#if defined (__HP_cc)
|
||||
/* newer hp ansi c, such as B.11.11.28706.gp, defines this */
|
||||
set compiler_info [join {hpcc __HP_cc} -]
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user