Recent content by cbaron

  1. C

    Ada X11 compilation -- help needed

    I'm trying to get X11 programs coded in Ada95 to compile. For this i made a small shell script called Xgnatmake : #!/bin/tcsh # Mise en place des variables d'environement setenv ADA_OBJECTS_PATH /usr/local/Bindings/X11 setenv ADA_INCLUDE_PATH /usr/local/Bindings/X11 # Compilation...
  2. C

    Taking the plunge into Unix, help/advice needed

    Well, fink may need some configuration to be done, open a terminal window, and type pico .tcshrc notice that the dot is needed. You should have pico opened, go to the end of the file and add this line : source /sw/bin/init.csh Then type ctrl+x, y and press enter, you may type source...
  3. C

    Taking the plunge into Unix, help/advice needed

    You may be able to install fink on the second partition, but it would need to link /sw to the install dir. I suggest you install fink normally, then mv it tou your second partition, and then : cd / ln -s sw /Volumes/yoursecondpartition/path/to/fink/folder/ that should work.
  4. C

    can you use the GNOME and KDE packages from a linux CD on X11

    Short answer: YES. Long answer: but you may have to install an RPM kinda thing before, since most softwares on Linux CDs are archived with it. I heard someone found RPM for OSX, but I'm not sure. The simplest way (if you have at least a xDSL connection) is to install them from fink...
  5. C

    Learning Cocoa Programming

    Well... For a real newbie, you may start with programming the command line in C, learn something about Object Oriented Programming, and then move to Cocoa/Objective-C. In fact, you won't go far without any knowledge on these. I may suggest some good tutorials sites such as CocoaDevCentral.com...
  6. C

    If You're a Gamer...

    Be happy, SimCity 4 will be out in May (look at Aspyr's Website).
  7. C

    net sharing with PCs

    That's all right, it works well, even without using DHCP.
  8. C

    net sharing with PCs

    In fact I wanted to know how to configure the PC client as Jaguar provides a "Share internet connexion" button.
  9. C

    FAQ on Apple's X11 server

    Thanks for FAQ, and thanks to rhg for that tip, I can now use X11 with french keymapping.
  10. C

    net sharing with PCs

    I'm connected via ADSL (with a USB modem, that's why I want to configure my mac as a DHCP server for the pc).
  11. C

    NSProgressIndicator

    Do you have an alert while compiling that says : NSProgressIndicator does not respond to -startAnimation: That would mean NSProgressIndicator dosn't have a method called startAnimation. You may look at the class's documentation
  12. C

    net sharing with PCs

    All right, let me expose my problem : I want to share my internet connexion from my mac (OS X 10.2.3) to a PC (winXP pro :D ). I just want to know if the PC needs to be configured like if it were a mac. Please answer, thanks.
  13. C

    Internet Share

    It may do fine, since the server has its DNS set correctly. But you can also (and it should be faster) directly input your provider's DNS adresses.
  14. C

    Internet Share

    Your problem is that your clients need DNS entries to find hosts on the net with their domain names. You have to configure DNS entries on your clients, what the DHCP server don't do.
  15. C

    PBX header <-> framework problem, 'No such file..'

    1st : Have you actualy checked the framework for your target? If it's not, the compiler complains it can't find the files, else it should work just fine. 2nd : Do you include the header like &lt;kernel/kernel.h&gt; or &lt;kernel.h&gt;? The second way is not valid. You must include...
Back
Top