Search results

  1. B

    Using PKCS11 on Darwin

    I'm trying to port an application using pkcs11 on Darwin but it won't compile. The sources themself won't compile and there are suppose to be independant... :(
  2. B

    icon from a .png file to a .icns

    I'm porting a cross platform application to OsX and i have a simple trouble with the icon : How can i change a .png to a .icns ( and so becoming able to use this file as an icon ) ? Do i have to alter my .rsrc in the applications ?
  3. B

    Escape character in Sed

    This is my script : sed s/bob/"$VAR"/g The trouble is VAR may contains a "/", and when there is one, it's interpreted by the BASH shell (and others) . How can i fix this ?
  4. B

    Trouble with a regular expression : [^<>]

    Hi ! This is my problem.Normally this regular expression [^<>] should suppress any line which do not have "<" or ">" but when i do : if [ $line = "[^<>]" ] then echo " no tags" else echo " tags" fi Every line i put in "line" ( including the ones with tags) are...
  5. B

    Installing ncurse on Panther

    Did somebody tried to install ncurse on Panther ? Is a such thing possible ?
  6. B

    Troubles with C's MySQL API

    Hi ! I tried to compil a simple programs with the mysql.h include and both gcc and cc gives me this : main.C:10:19: mysql.h: No such file or directory main.C:15: error: syntax error before `*' token main.C:16: error: `MYSQL' was not declared in this scope main.C:16: error: `db' was not...
  7. B

    PB with the MySQL C API

    Hi ! I would like to create a C applications working with MySQL database. I downloaded the Ch api for iODBC provided by MySQL.com but somehow it doesn't seems to work out... I can invoke ch ( i've to use the "sudo" command although) but when i try to compile one of the sample example of the...
  8. B

    Is there a MacOS X equivalent of .hta for JScript

    I recently learn that you can create all not-web oriented application with JScript and named the name.hta to create a ... windows application ! This seems to work only on Windows environnement (possibly only on XP) ; do you know if there something like this on MacOS X ?;)
  9. B

    HOWTO - establish a Network between a OS X computer and a Windows XP PC ?

    HOWTO - establish a Network between a OS X computer and a Windows XP PC ? I got a G3 working with 10.2 and i would like to connect to my own pc, working with XP. I tried setting the usual parameter and it failed ! I succeed in having the networking with the help of the DAVE application...
  10. B

    HOWTO - Simple Q : How to start my OS X computer under MacOS 9 ?

    Simple Q : How to start my OS X computer under MacOS 9 ? It's a very simple question but i failed to find how to do so in my docs or even in the help of Os X ?
  11. B

    Compiling a simple .c file on Unix Terminal

    I'm beginning to work with C and i wanted to compile a very simple file : #include <stdio.h> void main (void) { { printf( "Bienvenue sur WORDPAD\n\n"); } } with "cc main.C" and here what i got : [Belaran:~/Desktop/Info/Langage C] belaran% cc main.c main.c: In function `main'...
  12. B

    Explorer won't reconized files in some directory

    here is the problem: apache is running and php4 too. i can access my .php file and .html file in http:/127.0.0.1/~username/ without any problem. but when i try to go to a folder inside site , i get this : Forbidden You don't have permission to access /~belaran/CD_Romain/index.html...
  13. B

    Activating the CC (C compiler) on my UNIX terminal

    Hi ! I'm student and i'm going to use C next year and i would like to use "CC C_source.c" but the unix shell tell me : cc: Command not found. :mad: How can i fix this ?
Back
Top