Magellan Linux

Contents of /trunk/dev86/patches/dev86-0.16.17-x86_64.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 362 - (show annotations) (download)
Tue Sep 25 20:47:54 2007 UTC (16 years, 7 months ago) by niro
File size: 896 byte(s)
-64bit fixes

1 --- dev86-0.16.17/bcc/bcc.c.fix 2005-01-03 23:41:55.000000000 +0100
2 +++ dev86-0.16.17/bcc/bcc.c 2006-12-27 16:32:57.000000000 +0100
3 @@ -226,12 +226,12 @@
4
5 } else {
6 /* Relative paths to normal PREFIX directory */
7 - default_include = build_libpath("-I", "/lib/bcc/include", "");
8 - default_libdir = build_libpath("-L", "/lib/bcc", libdir_suffix);
9 - optim_rules = build_libpath("-d", "/lib/bcc", libdir_suffix);
10 + default_include = build_libpath("-I", "/lib64/bcc/include", "");
11 + default_libdir = build_libpath("-L", "/lib64/bcc", libdir_suffix);
12 + optim_rules = build_libpath("-d", "/lib64/bcc", libdir_suffix);
13
14 - build_prefix("/lib/bcc", libdir_suffix, "");
15 - build_prefix("/lib/bcc", "", "");
16 + build_prefix("/lib64/bcc", libdir_suffix, "");
17 + build_prefix("/lib64/bcc", "", "");
18 }
19
20 build_prefix("/bin", "", "");