Search results

  1. R

    Xerces C++ on Tiger 10.4

    I haven't had time to follow up, BUT I did get some advice you can try: From James Berry on the c-dev@xerces.apache.org list ... http://mail-archives.apache.org/mod_mbox/xerces-c-dev/200505.mbox/%3c178F83D5-0D6C-4501-A2D6-009F12AB5764@jberry.us%3e Also from Conrad Halling on...
  2. R

    Xerces C++ on Tiger 10.4

    Installed Tiger. Fried my xerces (2.5) and perl XML::Xerces among other things. So I thought I would just recompile it. Not gonna happen. Has anyone successfully installed xerces and or XML::Xerces since April 29? Seems the issue is with MemoryManager? invalid use of undefined type 'struct...
  3. R

    opening and executing an xwindows app in php

    I want to execute an xwindows app using php. The problem is that www doesn't seem to have access to xwindows becuase I get an error like Darwin Version: 6.8 something is really screwed up because HOME is not set. Thus no user-defined resources can be set no ./.consedrc file so no...
  4. R

    Drag and drop in OS X 10.2.3

    Right. I can't drag text either. Rebooting fixes the issue temporarily though.
  5. R

    Drag and drop in OS X 10.2.3

    I'me having the same issue. A more complete description: In any application, including the finder, I can not drag anything and therefore drop anything. This happens on the desktop, any view in a finder window, itunes, iphoto, etc., etc. I can however copy and paste (like in windoze) oddly...
  6. R

    compiling mesa libs on 10.2

    Anyone had experience compiling mesa libs on 10.2? http://www.mesa3d.org/ fink has a package for it, but it's not supported by anyone anymore. The last part of my make is: Making all in math /bin/sh ../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include...
  7. R

    libpng on mac os X 10.2.2

    Did you have any issues installng mesa on 10.2? Using fink - towards the end of the compile I get: Making all in math /bin/sh ../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include -I../../src -Dceilf=ceil -Dfloorf=floor -Dsqrtf=sqrt -I/sw/include -I./src/X86 -O2...
  8. R

    Max Ram PB Wallstreet 233?

    I know the "official" limit of a PB G3 Wallstreet is 192 or 160 depending on who you ask. But has anyone had experience installing more - say 512! I found this on http://www.macsales.com 256MB PC100 CL2 SO-DIMM Low-Profile for PowerBook G3 Series Wallstreet(1998), Lombard(1999), iMac...
  9. R

    bin file on desktop kills finder

    Anyone had this issue? I downloaded OfficeX1012UpdateEN.bin from VersionTracker directly to my desktop. Then my finder crashed and could'nt be restarted even if I logged off or restarted the machine. When I checked the Force Quit dialog it showed that the Finder was trying to start becuase it...
  10. R

    MacOS X as a NIS (YP) client with NFS mounted /home file system

    Could you be more specific about the issue your having?
  11. R

    User path nto working with ~/userName

    OS X Server 10.1.3 e.g. cd ~admin /Network/Servers/damon/Users/admin: No such file or directory. This extends to the webserver as well. I can't do http://www.domain.com/~user Thanks
  12. R

    Perl stops running scripts on OS X Server after 10.1.3 upgrade?

    After a long time banging away at things, I've found that all my my line feeds in perl scripts I wrote (not the ones that are installed - I hope) we're somehow converted into Macintosh line feeds (^M)? The fix was to get rid of all the ^M characters. Perl now correctly interprets the...
  13. R

    Perl stops running scripts after 10.1.3 upgrade?

    I'm running Mac OS X Server on an G4 perl v5.6.0 . The last time I remember (a day or so ago) perl was working fine when running scripts. Today I upgraded the server to 10.1.3 and some really strange things started happening with perl. Perl no longer executes scripts. e.g. >perl...
  14. R

    Setting up htpasswd

    I want to set up htpasswd for users on our server. I added .htaccess: AuthUserFile .htpasswd AuthGroupFile /dev/null AuthName ByPassword AuthType Basic <Limit GET> require user username </Limit> and .htpasswd files to a test directory. I also uncommented AccessFileName .htaccess...
  15. R

    Perl stops running scripts on OS X Server after 10.1.3 upgrade?

    Hi All, I'm running Mac OS X Server on an G4 perl v5.6.0 . The last time I remember (a day or so ago) perl was working fine when running scripts. Today I upgraded the server to 10.1.3 and some really strange things started happening with perl. Perl no longer executes scripts. e.g...
  16. R

    Oh, no not again: Error when making

    I don't quite know exactly what they are doing here, but they definitely use crt0.o for something. Is this a config file? http://gcc.gnu.org/ml/gcc-patches/2001-03/msg00042.html I'm trying to figure out how to contact the author to ask him.
  17. R

    Oh, no not again: Error when making

    I've had that same issue. I'm compiling a "just" c program for comand line interface. I just posted a question to this effect as well. I did find some info though in the cc man (pdf version). Check this out: $make IEEE-NaN cc -no-cpp-precomp -fno-common -arch ppc -static -D__macosx...
  18. R

    ld can't locate file for -lcrt0.o & GCC_EXEC_

    I'm trying to compile a C program. I'm getting some error from ld saying it can't find an object file crt0.o. $make IEEE-NaN cc -no-cpp-precomp -fno-common -arch ppc -static -D__macosx -D_BSD_TYPES TestNaN.c -lm -lgdbm -ldl /usr/bin/ld: can't locate file for: -lcrt0.o make: ***...
  19. R

    Porting old C and ieeefp.h

    Hi All, I'm trying to port an old C program to OS X/Darwin. The makefile asks that we create the macros and programs to handle NaNs (Not A Number). Two files will be created, MakeNaN.c and NaN.h. If the system has IEEE standard floating point we use: make IEEE-NaN Here's what I get: cc...
Back
Top