]> code.delx.au - gnu-emacs/blob - src/s/sol2.h
* s/sol2.h (C_SWITCH_X_SYSTEM): Deleted.
[gnu-emacs] / src / s / sol2.h
1 #include "usg5-4.h"
2
3 #define POSIX
4
5 /* Here is how to find X Windows. The -R option says where
6 to find X windows at run time. */
7 #ifndef __GNUC__
8 #define LD_SWITCH_SYSTEM -R/usr/openwin/lib
9 #else /* GCC */
10 #define LD_SWITCH_SYSTEM -Xlinker -R/usr/openwin/lib
11 #endif /* GCC */
12
13 /* Compile in non-ansi fashion to work around bugs in system header files. */
14 #ifndef __GNUC__
15 #define C_SWITCH_SYSTEM -Xs
16 #else /* GCC */
17 #define C_SWITCH_SYSTEM -traditional
18 #endif /* GCC */
19 #define const
20
21 /* Karl Berry writes:
22 If you have the misfortune to be running Solaris 2.1, you may have
23 noticed that the access system call does not check the readonlyness of
24 the filesystem the path refers to. This is a bug, according to
25 access(2), but in the meantime, some of us need the right behavior. */
26 #define SOLARIS_BROKEN_ACCESS