]> git.sesse.net Git - rdpsrv/blob - Xserver/config/imake/ccimake.c
Support RDP5 logon packets.
[rdpsrv] / Xserver / config / imake / ccimake.c
1 /* $XConsortium: ccimake.c /main/15 1996/09/28 16:14:25 rws $ */
2 /*
3
4 Copyright (c) 1993, 1994  X Consortium
5
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to deal
8 in the Software without restriction, including without limitation the rights
9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
19 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23 Except as contained in this notice, the name of the X Consortium shall not be
24 used in advertising or otherwise to promote the sale, use or other dealings
25 in this Software without prior written authorization from the X Consortium.
26
27 */
28
29 /* 
30  * Warning:  This file must be kept as simple as posible so that it can 
31  * compile without any special flags on all systems.  Do not touch it unless
32  * you *really* know what you're doing.  Make changes in imakemdep.h, not here.
33  */
34
35 #define CCIMAKE                 /* only get imake_ccflags definitions */
36 #include "imakemdep.h"          /* things to set when porting imake */
37
38 #ifndef imake_ccflags
39 #define imake_ccflags "-O"
40 #endif
41
42 main()
43 {
44         write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
45         exit(0);
46 }
47