diff -ruN with-fixes-2.95h/Cairo.st new/Cairo.st --- with-fixes-2.95h/Cairo.st 2008-01-01 18:14:43.000000000 +0000 +++ new/Cairo.st 2008-01-01 18:03:59.000000000 +0000 @@ -39,7 +39,8 @@ ! load - DLD addLibrary: 'libcairo'. + DLD addLibrary: '/opt/cairo-1.4.10/lib/libcairo'. "Tony's particular local installation." + DLD addLibrary: 'libcairo'. "Most any other platform?" self typesMap at: 'Drawable' put: #uLong; "From XLib" diff -ruN with-fixes-2.95h/Imlib2.st new/Imlib2.st --- with-fixes-2.95h/Imlib2.st 2008-01-01 18:14:43.000000000 +0000 +++ new/Imlib2.st 2008-01-01 18:05:16.000000000 +0000 @@ -39,7 +39,8 @@ ! load - (DLD addLibrary: '/usr/lib/libImlib2.so') printNl. + DLD addLibrary: '/sw/lib/libImlib2'. "Mac OS X 10.3.9 with Fink" + DLD addLibrary: 'libImlib2'. "Debian linux" self typesMap at: 'Imlib_Image' put: #cObject; diff -ruN with-fixes-2.95h/XLib.st new/XLib.st --- with-fixes-2.95h/XLib.st 2008-01-01 18:14:43.000000000 +0000 +++ new/XLib.st 2008-01-01 18:17:03.000000000 +0000 @@ -277,7 +277,8 @@ ! load - (DLD addLibrary: 'libX11' "/usr/X11R6/lib/libX11.so'") printNl. + DLD addLibrary: '/usr/X11R6/lib/libX11'. "Mac OS X 10.3.9 with Fink" + DLD addLibrary: 'libX11'. "Debian linux" self typesMap at: 'Bool' put: #int;