Thanks for the suggestions; however, this is what happened
including some file searching and viewing:
*********************** start example (1)
**********************************************************************
[Craig-Harbucks-Computer:/tmp] dlib% startx -- -rootless
dyld: xinit can't open library: /usr/X11R6/lib/libXmuu.1.dylib (No
such file or directory,
errno = 2)
/usr/X11R6/bin/startx: line 117: 3206 Trace/BPT trap xinit $client
$clientargs --
$server $display $serverargs
[Craig-Harbucks-Computer:/tmp] dlib% locate libXmuu.1.dylib
[Craig-Harbucks-Computer:/tmp] dlib% cd /usr/X11R6/lib/
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% ls libX*
libX11.a libXaw.dylib libXfontcache.a libXmu.a libXpm.a libXss.a
libXvMC.a
libX11.dylib libXdmcp.a libXft.a libXmu.dylib libXpm.dylib libXt.a
libXxf86misc.a
libXTrap.a libXext.a libXft.dylib libXmuu.a libXrandr.a libXt.dylib
libXxf86vm.a
libXTrap.dylib libXext.dylib libXi.a libXmuu.dylib libXrandr.dylib
libXtst.a
libXau.a libXfont.a libXi.dylib libXp.a libXrender.a libXtst.dylib
libXaw.a libXfont.dylib libXinerama.a libXp.dylib libXrender.dylib
libXv.a
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% ls -l -a libXmuu*
-rw-r--r-- 1 root admin 13412 Dec 1 14:40 libXmuu.a
lrwxr-xr-x 1 root admin 17 Dec 1 18:23 libXmuu.dylib ->
libXmuu.1.0.dylib
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% rehash
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% startx -- -rootless
dyld: xinit can't open library: /usr/X11R6/lib/libXmuu.1.dylib (No
such file or directory,
errno = 2)
/usr/X11R6/bin/startx: line 117: 3214 Trace/BPT trap xinit $client
$clientargs --
$server $display $serverargs
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% locate
libXmuu.1.0.dylib
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% locate libXmuu
/usr/X11R6/lib/libXmuu.a
/usr/X11R6/lib/libXmuu.dylib
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib%
************************** end example (1)
************************************************************************
************************** start example (2)
************************************************************************
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% startx -- -quartz
dyld: xinit can't open library: /usr/X11R6/lib/libXmuu.1.dylib (No
such file or directory,
errno = 2)
/usr/X11R6/bin/startx: line 117: 3221 Trace/BPT trap xinit $client
$clientargs --
$server $display $serverargs
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% locate startx
/usr/X11R6/bin/startx
/usr/X11R6/lib/X11/doc/html/startx.1.html
/usr/X11R6/man/man1/startx.1
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% cat
/usr/X11R6/bin/startx
#!/bin/sh
# $Xorg: startx.cpp,v 1.3 2000/08/17 19:54:29 cpqbld Exp $
#
# This is just a sample implementation of a slightly less primitive
# interface than xinit. It looks for user .xinitrc and .xserverrc
# files, then system xinitrc and xserverrc files, else lets xinit
choose
# its default. The system xinitrc should probably do things like
check
# for .Xresources files and merge them in, startup up a window
manager,
# and pop a clock and serveral xterms.
#
# Site administrators are STRONGLY urged to write nicer versions.
#
# $XFree86: xc/programs/xinit/startx.cpp,v 3.12.2.2 2002/01/28
18:27:34 tsi Exp $
userclientrc=$HOME/.xinitrc
userserverrc=$HOME/.xserverrc
sysclientrc=/usr/X11R6/lib/X11/xinit/xinitrc
sysserverrc=/usr/X11R6/lib/X11/xinit/xserverrc
defaultclient=/usr/X11R6/bin/xterm
defaultserver=/usr/X11R6/bin/X
defaultclientargs=""
defaultserverargs=""
clientargs=""
serverargs=""
if [ -f $userclientrc ]; then
defaultclientargs=$userclientrc
elif [ -f $sysclientrc ]; then
defaultclientargs=$sysclientrc
fi
if [ -f $userserverrc ]; then
defaultserverargs=$userserverrc
elif [ -f $sysserverrc ]; then
defaultserverargs=$sysserverrc
fi
whoseargs="client"
while [ x"$1" != x ]; do
case "$1" in
# '' required to prevent cpp from treating "/*" as a C comment.
/''*|\./''*)
if [ "$whoseargs" = "client" ]; then
if [ x"$clientargs" = x ]; then
client="$1"
else
clientargs="$clientargs $1"
fi
else
if [ x"$serverargs" = x ]; then
server="$1"
else
serverargs="$serverargs $1"
fi
fi
;;
--)
whoseargs="server"
;;
*)
if [ "$whoseargs" = "client" ]; then
clientargs="$clientargs $1"
else
# display must be the FIRST server argument
if [ x"$serverargs" = x ] && expr "$1" : ':[0-9][0-9]*$' >
/dev/null 2>&1; then
display="$1"
else
serverargs="$serverargs $1"
fi
fi
;;
esac
shift
done
# process client arguments
if [ x"$client" = x ]; then
# if no client arguments either, use rc file instead
if [ x"$clientargs" = x ]; then
client="$defaultclientargs"
else
client=$defaultclient
fi
fi
# process server arguments
if [ x"$server" = x ]; then
# if no server arguments or display either, use rc file instead
if [ x"$serverargs" = x -a x"$display" = x ]; then
server="$defaultserverargs"
else
server=$defaultserver
fi
fi
if [ x"$XAUTHORITY" = x ]; then
XAUTHORITY=$HOME/.Xauthority
export XAUTHORITY
fi
removelist=
xinit $client $clientargs -- $server $display $serverargs
if [ x"$removelist" != x ]; then
xauth remove $removelist
fi
************************** end example (2)
************************************************************************
************************** start example (3)
************************************************************************
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% fink list -i
threaded
Information about 1831 packages read in 7 seconds.
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% fink list -i
Information about 1831 packages read in 2 seconds.
i aalib 1.4rc5-2 Ascii art library
i aalib-bin 1.4rc5-2 Ascii art library
i aalib-shlibs 1.4rc5-2 Ascii art library
i apt 0.5.4-6 Advanced front-end for dpkg
i apt-shlibs 0.5.4-6 Advanced front-end for dpkg
i audiofile 0.2.3-4 Audio File Library
i audiofile-bin 0.2.3-4 Audio File Library
i audiofile-shlib 0.2.3-4 Audio File Library
i base-files 1.6-1 Directory infrastructure
i bzip2 1.0.2-1 Block-sorting file compressor
i darwin 6.2-1 [virtual package representing the kernel]
i db3 3.3.11-12 Berkeley DB embedded database
i db3-bin 3.3.11-12 Binary utilities for db3
i db3-doc 3.3.11-12 Documentation for db3
i db3-shlibs 3.3.11-12 Shared Libraries for db3
i debianutils 1.23-1 Misc. utilities specific to Debian (and F...
i dlcompat 20021117-1 Dynamic loading compatibility library
i dlcompat-dev 20021117-1 headers and static libraries for dlcompat
i dlcompat-shlibs 20021117-1 shared libraries for dlcompat
i docbook-dsssl-n 1.77-1 Norman Walsh's DSSSL DocBook stylesheets
i docbook-dtd 4.1.2-3 DocBook SGML/XML DTDs official releases
i dpkg 1.9.20-4 The Debian package manager
i esound 0.2.28-1 Enlightened Sound Daemon
i esound-bin 0.2.28-1 Enlightened Sound Daemon
i esound-common 0.2.28-1 Enlightened Sound Daemon
i esound-shlibs 0.2.28-1 Enlightened Sound Daemon
i expat 1.95.4-2 C library for parsing XML
i expat-shlibs 1.95.4-2 C library for parsing XML
i fink 0.11.0-1 The Fink package manager
i g77 3.1-2002042 GNU FORTRAN77 compiler.
i gdbm 1.8.0-6 GNU dbm library
i gdbm-shlibs 1.8.0-6 GNU dbm library
i gettext 0.10.40-3 Message localization support
i ghostscript-fon 6.0-3 Standard fonts for Ghostscript
i ghostscript6 6.01-2 Interpreter for PostScript and PDF, v6.01...
i giflib-bin 4.1.0-7 GIF image format handling library, LZW-en...
i giflib-shlibs 4.1.0-7 GIF image format handling library,
LZW-en...
i gimp 1.2.3-10 The GNU Image Manipulation Program
i gimp-shlibs 1.2.3-10 The GNU Image Manipulation Program
i glib 1.2.10-8 Common C routines used by Gtk+ and other ...
i glib-shlibs 1.2.10-8 Common C routines used by Gtk+ and other ...
i gmp 4.1-10 GNU multiple precision arithmetic library
i gmp-shlibs 4.1-10 GNU multiple precision arithmetic library
i gnome-libs 1.4.2-2 Base libraries for GNOME
i gnome-libs-dev 1.4.2-2 Base libraries for GNOME
i gnome-libs-shli 1.4.2-2 Base libraries for GNOME
i gtk+ 1.2.10-13 The Gimp Toolkit
i gtk+-data 1.2.10-13 The Gimp Toolkit
i gtk+-shlibs 1.2.10-13 The Gimp Toolkit
i gtk-doc 0.9-4 GTK+ DocBook Documentation Generator
i gzip 1.2.4a-6 The gzip file compressor
i imlib 1.9.10-9 General image handling library for X11 an...
i imlib-shlibs 1.9.10-9 General image handling library for X11
an...
i libiconv 1.7-5 Character set conversion library
i libjpeg 6b-5 JPEG image format handling library
i libjpeg-bin 6b-5 JPEG image format handling library
i libjpeg-shlibs 6b-5 JPEG image format handling library
i libmpeg 1.3.1-6 Gimp MPEG library
i libmpeg-shlibs 1.3.1-6 Gimp MPEG library
i libpng 1.0.12-6 PNG image format handling library
i libpng-shlibs 1.0.12-6 PNG image format handling library
i libpoll 1.2-2 SysV poll(2) Emulation Library
i libpoll-shlibs 1.2-2 SysV poll(2) Emulation Library
i libtiff 3.5.7-7 TIFF image format library and tools
i libtiff-bin 3.5.7-7 TIFF image format library and tools
i libtiff-shlibs 3.5.7-7 TIFF image format library and tools
i libungif 4.1.0final- GIF image format handling library, LZW-fr...
i macosx 10.2.2-1 [virtual package representing the system]
i ncurses 5.2-9 Binaries for the full-screen ascii drawin...
i netpbm 9.25-2 Graphics manipulation programs and libraries
i netpbm-bin 9.25-2 Graphics manipulation programs and libraries
i netpbm-shlibs 9.25-2 Graphics manipulation programs and libraries
i openjade 1.3.1-3 Implementation of DSSSL
i openssl-dev 0.9.6g-2 Secure Sockets Layer and general crypto l...
i openssl-shlibs 0.9.6g-2 Secure Sockets Layer and general crypto
l...
i orbit 0.5.17-3 The CORBA ORB used in GNOME
i orbit-bin 0.5.17-3 The CORBA ORB used in GNOME
i orbit-shlibs 0.5.17-3 The CORBA ORB used in GNOME
i passwd 20020329-2 User and group entries for daemons
i python 2.2.2-1 Interpreted, object-oriented language.
i python22 2.2.2-1 Interpreted, object-oriented language.
i python22-shlibs 2.2.2-1 Interpreted, object-oriented language.
i readline 4.3-5 Comfortable terminal input library
i readline-shlibs 4.3-5 Comfortable terminal input library
i sgml-entities-i 1986-3 SGML standard (ISO 8879) entity sets for
...
i storable-pm 1.0.14-1 Perl module for persistent data structures
i tar 1.13.25-1 GNU tar - tape archiver
i tcltk 8.4.1-1 Tool Command Language and the Tk toolkit.
i tcltk-dev 8.4.1-1 Tool Command Language and the Tk toolkit.
i tcltk-shlibs 8.4.1-1 Tool Command Language and the Tk toolkit.
i type1inst 0.6.1-3 Type 1 PostScript font installation utility
i windowmaker 0.80.1-2 GNUstep (NeXT-like) Window Manager
i windowmaker-shl 0.80.1-2 GNUstep (NeXT-like) Window Manager
i xaw3d 1.5-5 Athena widget set with 3D look
i xaw3d-shlibs 1.5-5 Athena widget set with 3D look
i xfree86-base 4.2.1.1-3 XFree86 libraries, utilities, clients
and...
i xfree86-base-sh 4.2.1.1-3 XFree86 libraries, utilities, clients
and...
i xfree86-rootles 4.2.1.1-3 XFree86 libraries, utilities, clients
and...
i xfree86-rootles 4.2.1.1-3 XFree86 libraries, utilities, clients
and...
i zlib 1.1.4-1 Compression library
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% startx -- -quartz
dyld: xinit can't open library: /usr/X11R6/lib/libXmuu.1.dylib (No
such file or directory,
errno = 2)
/usr/X11R6/bin/startx: line 117: 3811 Trace/BPT trap xinit $client
$clientargs --
$server $display $serverargs
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib%
************************** end example (3)
************************************************************************
************************** start example (4)
************************************************************************
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% locate xinit
/Users/dlib/.xinitrc
/Users/dlib/.xinitrc.old.Apr01.23:13:07
/Users/dlib/Library/Logs/CrashReporter/xinit.crash.log
/usr/X11R6/bin/xinit
/usr/X11R6/etc/xinit
/usr/X11R6/etc/xinit/xinitrc
/usr/X11R6/lib/X11/doc/html/xinit.1.html
/usr/X11R6/lib/X11/xinit
/usr/X11R6/man/man1/xinit.1
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib%
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% locate
libXmuu.1.dylib
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib%
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% locate libXmuu.1
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib%
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib% locate libXmuu
/usr/X11R6/lib/libXmuu.a
/usr/X11R6/lib/libXmuu.dylib
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib%
************************** end example (4)
************************************************************************I have tried
to provide
information regarding what's installed and to investigate the
missing
libXmuu.1.dylib file - perhaps there are othewr problems
All I found were:
/usr/X11R6/lib/libXmuu.a
/usr/X11R6/lib/libXmuu.dylib
[Craig-Harbucks-Computer:/usr/X11R6/lib] dlib%
So, any more suggestions? Thanks
-Craig
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
On Tuesday, Dec 03, 2002, at 08:51AM, Alexander Hansen <[EMAIL PROTECTED]>
wrote:
>Try using "startx -- -quartz" or "startx -- -rootless" to start X.
>
>On Mon, 2002-12-02 at 23:28, Craig Harbuck wrote:
>>
>> I had OS 10.1.5 with XDarwin and fink (and gimp and windowmaker)
>> working fine
>>
>> After installing
>> (1) OS 10.2 and its updates
>> (2) developer tools and its updates
>>
>> I down loaded fink-0.11.0
>> and following the instructions on
>>
>> http://fink.sourceforge.net/news/jaguar.php
>>
>> I get the following:
>>
>> >>>>>>>>>>>>>>>>>>>>>>>> start <<<<<<<<<<<<<<<<<<<<<
>>
>> [Craig-Harbucks-Computer:~/Desktop/fink-0.11.0] dlib% sudo ./dpkg-checkall.sh
>> Password:
>> Checking for missing files (Package - Missing files):
>>
>> g77 - /sw/include/g2c.h
>> xfree86-base-shlibs - /usr/X11R6/lib/libdps.1.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libdpstk.1.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libfreetype.6.2.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libICE.6.3.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/liboldX.6.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libpsres.1.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libSM.6.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libX11.6.2.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXaw.6.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXaw.7.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXext.6.4.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXfont.1.4.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXft.1.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXi.6.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXmu.6.2.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXmuu.1.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXp.6.2.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXpm.4.11.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXrandr.1.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXrender.1.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXt.6.0.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXTrap.6.4.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXtst.6.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libdps.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libdpstk.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libfreetype.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libICE.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/liboldX.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libpsres.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libSM.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libX11.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXaw.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXaw.7.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXext.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXfont.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXft.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXi.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXmu.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXmuu.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXp.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXpm.4.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXrandr.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXrender.1.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXt.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXTrap.6.dylib
>> xfree86-base-shlibs - /usr/X11R6/lib/libXtst.6.dylib
>> xfree86-base - /usr/X11R6/lib/libdps.dylib
>> xfree86-base - /usr/X11R6/lib/libdpstk.dylib
>> xfree86-base - /usr/X11R6/lib/libfreetype.dylib
>> xfree86-base - /usr/X11R6/lib/libICE.dylib
>> xfree86-base - /usr/X11R6/lib/liboldX.dylib
>> xfree86-base - /usr/X11R6/lib/libpsres.dylib
>> xfree86-base - /usr/X11R6/lib/libSM.dylib
>> xfree86-base - /usr/X11R6/lib/libX11.dylib
>> xfree86-base - /usr/X11R6/lib/libXaw.dylib
>> xfree86-base - /usr/X11R6/lib/libXext.dylib
>> xfree86-base - /usr/X11R6/lib/libXfont.dylib
>> xfree86-base - /usr/X11R6/lib/libXft.dylib
>> xfree86-base - /usr/X11R6/lib/libXi.dylib
>> xfree86-base - /usr/X11R6/lib/libXmu.dylib
>> xfree86-base - /usr/X11R6/lib/libXmuu.dylib
>> xfree86-base - /usr/X11R6/lib/libXp.dylib
>> xfree86-base - /usr/X11R6/lib/libXpm.dylib
>> xfree86-base - /usr/X11R6/lib/libXrandr.dylib
>> xfree86-base - /usr/X11R6/lib/libXrender.dylib
>> xfree86-base - /usr/X11R6/lib/libXt.dylib
>> xfree86-base - /usr/X11R6/lib/libXTrap.dylib
>> xfree86-base - /usr/X11R6/lib/libXtst.dylib
>> xfree86-rootless-shlibs - /usr/X11R6/lib/libGL.1.2.dylib
>> xfree86-rootless-shlibs - /usr/X11R6/lib/libGLU.1.3.dylib
>> xfree86-rootless-shlibs - /usr/X11R6/lib/libGL.1.dylib
>> xfree86-rootless-shlibs - /usr/X11R6/lib/libGLU.1.dylib
>> xfree86-rootless - /usr/X11R6/lib/libGL.dylib
>> xfree86-rootless - /usr/X11R6/lib/libGLU.dylib
>> [Craig-Harbucks-Computer:~/Desktop/fink-0.11.0] dlib% sudo
>/sw/lib/fink/postinstall.pl
>> Password:
>> Checking system... powerpc-apple-darwin6.2
>> This system was not released at the time this Fink release was made, but
>> should work.
>> ln -s /sw/fink/10.2 /sw/fink/dists
>> [Craig-Harbucks-Computer:~/Desktop/fink-0.11.0] dlib% X
>>
>> This is a pre-release version of XFree86, and is not supported in any
>> way. Bugs may be reported to [EMAIL PROTECTED] and patches submitted
>> to [EMAIL PROTECTED] Before reporting bugs in pre-release versions,
>> please check the latest version in the XFree86 CVS repository
>> (http://www.XFree86.Org/cvs)
>>
>> XFree86 Version 4.2.1.1 / X Window System
>> (protocol Version 11, revision 0, vendor release 6600)
>> Release Date: 18 October 2002
>> If the server is older than 6-12 months, or if your hardware is
>> newer than the above date, look for a newer version before
>> reporting problems. (See http://www.XFree86.Org/FAQ)
>> Operating System: Darwin
>> Using keymapping provided in /System/Library/Keyboards/USA.keymapping.
>> _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root
>> Display mode: IOKit
>> Failed to connect to the HID System as the window server!
>>
>> Fatal server error:
>> Quit the Mac OS X window server or use the -quartz option.
>>
>> OsVendorFatalError
>> AbortDDX
>> Quitting XDarwin...
>> [Craig-Harbucks-Computer:~/Desktop/fink-0.11.0] dlib%
>>
>> <<<<<<<<<<<<<<<<< end >>>>>>>>>>>>>>>>>>>>
>>
>> I would appreciate some help, as i really want to install
>> IDL 5.6 for Mac OS X, but nee a working xFree86 first.
>>
>> Craig Harbuck
>> [EMAIL PROTECTED]
>> [EMAIL PROTECTED]
>>
>>
>> -------------------------------------------------------
>> This SF.net email is sponsored by: Get the new Palm Tungsten T
>> handheld. Power & Color in a compact size!
>> http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en
>> _______________________________________________
>> Fink-beginners mailing list
>> [EMAIL PROTECTED]
>> https://lists.sourceforge.net/lists/listinfo/fink-beginners
>>
>--
>Alexander K. Hansen
>Associate Research Scientist, Columbia University
>visiting MIT Plasma Science and Fusion Center
>Levitated Dipole Experiment
>175 Albany Street, NW17-219
>Cambridge, MA 02139-4213
>
>
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-beginners mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-beginners