Search:

Type: Posts; User: salsan

Search: Search took 0.02 seconds.

  1. You right, but if you create "configure", I don't...

    You right, but if you create "configure", I don't think install bin in home directory,

    .
  2. before make install take privilege of "root" for...

    before make install take privilege of "root" for this try with "su" or "sudo"

    $ ./configure --prefix=YOUR FAVORITE DIRECTORY
    $make
    $su
    #make install
  3. in your makefile.am change "src" with directory...

    in your makefile.am change "src" with directory of source of your file or you speak about installation your "bin" in system ?

    if this look your configure options




    I've take this from man
  4. This is my rules for make "configure" edit...

    This is my rules for make "configure"



    edit this line


    MY_PROGRAM_NAME = name of your program
    VERSION = version of program example 0.1 or 1.4
    AUTHOR = added your email.
  5. $su [yourpassword] $make install

    $su [yourpassword]
    $make install
  6. Thanks more for your help, but is possible know...

    Thanks more for your help, but is possible know version of your

    stdio.h



    gcc
  7. This is result if try with __USE_LARGEFILE

    This is result if try with __USE_LARGEFILE
  8. /* Support Large File */ #define...

    /* Support Large File */
    #define _FILE_OFFSET_BITS 64
    #define __USE_LARGEFILE64

    #include <stdio.h>
    #include <unistd.h>
    #include <string.h>
    #include <stdlib.h>
    #include <errno.h>
  9. I've get this info from This is my stdio.h...

    I've get this info from



    This is my stdio.h
  10. I've tried now with fseeko and ftello but this is...

    I've tried now with fseeko and ftello but this is result with gcc



    this is my new code


    /* Support Large File */
    #define _FILE_OFFSET_BITS 64
  11. [Large file][Value too large for defined data type]

    This is my little program for open Large File, but don't work.


    /* Support Large File */
    #define _FILE_OFFSET_BITS 64

    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include...
Results 1 to 11 of 11