Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 189982
Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +8 lines)
Line  Link Here
0
-- Python-2.5.1/configure.in.orig
0
++ Python-2.5.1/configure.in
Lines 1408-1413 Link Here
1408
		esac
1408
		esac
1409
		;;
1409
		;;
1410
	CYGWIN*)   SO=.dll;;
1410
	CYGWIN*)   SO=.dll;;
1411
	Darwin*)   SO=.dylib;;
1411
	*)	   SO=.so;;
1412
	*)	   SO=.so;;
1412
	esac
1413
	esac
1413
else
1414
else
1414
-- Python-2.5.1/Python/dynload_shlib.c.orig
1415
++ Python-2.5.1/Python/dynload_shlib.c
Lines 46-56 Link Here
46
        {"module.exe", "rb", C_EXTENSION},
46
        {"module.exe", "rb", C_EXTENSION},
47
        {"MODULE.EXE", "rb", C_EXTENSION},
47
        {"MODULE.EXE", "rb", C_EXTENSION},
48
#else
48
#else
49
#ifdef __APPLE__
50
	{".dylib", "rb", C_EXTENSION},
51
	{"module.dylib", "rb", C_EXTENSION},
52
#else
49
	{".so", "rb", C_EXTENSION},
53
	{".so", "rb", C_EXTENSION},
50
	{"module.so", "rb", C_EXTENSION},
54
	{"module.so", "rb", C_EXTENSION},
51
#endif
55
#endif
52
#endif
56
#endif
53
#endif
57
#endif
58
#endif
54
	{0, 0}
59
	{0, 0}
55
};
60
};
56
61

Return to bug 189982