Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 116062 | Differences between
and this patch

Collapse All | Expand All

(-)./glkloader-0.3.2/xpconfig/xpconfig.c~ (+2 lines)
Lines 33-38 Link Here
33
33
34
#include <assert.h>
34
#include <assert.h>
35
#include <string.h>
35
#include <string.h>
36
#include <stdio.h>
37
#include <stdlib.h>
36
38
37
#include "xpconfig.h"
39
#include "xpconfig.h"
38
40
(-)./glkloader-0.3.2/glkloader.c~ (+1 lines)
Lines 29-34 Link Here
29
29
30
#include <stdlib.h>
30
#include <stdlib.h>
31
#include <stdio.h>
31
#include <stdio.h>
32
#include <string.h>
32
#include <glk.h>
33
#include <glk.h>
33
34
34
#include "defines.h"
35
#include "defines.h"
(-)./glkloader-0.3.2/generate_glkfuncs.pl~ (+1 lines)
Lines 282-287 Link Here
282
282
283
# Global definitions 
283
# Global definitions 
284
print OUT_FILE "#include <stdio.h>\n";
284
print OUT_FILE "#include <stdio.h>\n";
285
print OUT_FILE "#include <stdlib.h>\n";
285
print OUT_FILE "#include <glk.h>\n";
286
print OUT_FILE "#include <glk.h>\n";
286
print OUT_FILE "\n";
287
print OUT_FILE "\n";
287
print OUT_FILE "#include \"defines.h\"\n";
288
print OUT_FILE "#include \"defines.h\"\n";
(-)./glkloader-0.3.2/xpconfig/applist.c~ (+1 lines)
Lines 32-37 Link Here
32
#endif
32
#endif
33
33
34
#include <string.h>
34
#include <string.h>
35
#include <stdlib.h>
35
36
36
#include "applist.h"
37
#include "applist.h"
37
#include "sectionlist.h"
38
#include "sectionlist.h"
(-)./glkloader-0.3.2/xpconfig/sectionlist.c~ (+1 lines)
Lines 32-37 Link Here
32
#endif
32
#endif
33
33
34
#include <string.h>
34
#include <string.h>
35
#include <stdlib.h>
35
36
36
#include "sectionlist.h"
37
#include "sectionlist.h"
37
#include "keylist.h"
38
#include "keylist.h"
(-)./glkloader-0.3.2/xpconfig/keylist.c~ (+2 lines)
Lines 32-37 Link Here
32
#endif
32
#endif
33
33
34
#include <string.h>
34
#include <string.h>
35
#include <stdio.h>
36
#include <stdlib.h>
35
37
36
#include "keylist.h"
38
#include "keylist.h"
37
39
(-)./glkloader-0.3.2/xpconfig/platform_rcfile.c~ (-1 lines)
Lines 405-411 Link Here
405
			sprintf( filename, "%s/.%src", dirname, application );
405
			sprintf( filename, "%s/.%src", dirname, application );
406
			parseConfigFile( filename, application );
406
			parseConfigFile( filename, application );
407
			free( filename );
407
			free( filename );
408
			free( dirname );
409
		}
408
		}
410
	}
409
	}
411
410
(-)./glkloader-0.3.2/glk.h~ (-2 / +3 lines)
Lines 17-24 Link Here
17
/* You may have to edit the definition of glui32 to make sure it's really a
17
/* You may have to edit the definition of glui32 to make sure it's really a
18
    32-bit unsigned integer type, and glsi32 to make sure it's really a
18
    32-bit unsigned integer type, and glsi32 to make sure it's really a
19
    32-bit signed integer type. If they're not, horrible things will happen. */
19
    32-bit signed integer type. If they're not, horrible things will happen. */
20
typedef unsigned long glui32; 
20
#include <stdint.h>
21
typedef signed long glsi32; 
21
typedef uint32_t glui32; 
22
typedef int32_t glsi32; 
22
23
23
/* These are the compile-time conditionals that reveal various Glk optional
24
/* These are the compile-time conditionals that reveal various Glk optional
24
    modules. */
25
    modules. */

Return to bug 116062