Fossil

Check-in [57b58527]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Teach config.h to recognize Sun's C compiler.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | sun-compiler
Files: files | file ages | folders
SHA1: 57b585276b8b9c42cfcb6694898aac707c2dcc9b
User & Date: edward 2013-06-06 06:31:32.249
Context
2013-06-06
06:31
Teach config.h to recognize Sun's C compiler. ... (Closed-Leaf check-in: 57b58527 user: edward tags: sun-compiler)
2013-06-05
08:12
make "fossil rm FOO" work as expected on case-insensitive file systems, where committed files "foo/*" exist. ... (check-in: fa6311a5 user: jan.nijtmans tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/config.h.
75
76
77
78
79
80
81


82
83
84
85
86
87
88
#    define COMPILER_NAME "msc"
#  elif defined(__MINGW32__)
#    define COMPILER_NAME "mingw32"
#  elif defined(_WIN32)
#    define COMPILER_NAME "win32"
#  elif defined(__GNUC__)
#    define COMPILER_NAME "gcc-" __VERSION__


#  else
#    define COMPILER_NAME "unknown"
#  endif
#endif

#ifndef _RC_COMPILE_








>
>







75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#    define COMPILER_NAME "msc"
#  elif defined(__MINGW32__)
#    define COMPILER_NAME "mingw32"
#  elif defined(_WIN32)
#    define COMPILER_NAME "win32"
#  elif defined(__GNUC__)
#    define COMPILER_NAME "gcc-" __VERSION__
#  elif defined(__SUNPRO_C)
#    define COMPILER_NAME "Sun C"
#  else
#    define COMPILER_NAME "unknown"
#  endif
#endif

#ifndef _RC_COMPILE_