source: scripts/patches/tar-1.15.1-gcc4_fix_tests.patch @ a7d67ca

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since a7d67ca was 7f65c0e, checked in by Jim Gifford <clfs@…>, 18 years ago

r625@server (orig r623): jim | 2005-10-31 12:43:24 -0800
Final Move

  • Property mode set to 100644
File size: 1.4 KB
  • tar-1.15.1/tests/genfile.

    Submitted By: Ryan Oliver <ryan.oliver@pha.com.au>
    Date: 2005-04-25
    Initial Package Version: 1.15.1
    Origin: Ryan Oliver
    Description: Fix compilation issues with gcc4
    
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../lib -I../lib -I../src    -O2 -pipe -MT genfile.o -MD -MP -MF ".deps/genfile.Tpo" -c -o genfile.o genfile.c; \
    then mv -f ".deps/genfile.Tpo" ".deps/genfile.Po"; else rm -f ".deps/genfile.Tpo"; exit 1; fi
    genfile.c:63: error: static declaration of 'argp_program_version' follows non-static declaration
    ../lib/argp.h:428: error: previous declaration of 'argp_program_version' was here
    genfile.c:64: error: static declaration of 'argp_program_bug_address' follows non-static declaration
    ../lib/argp.h:444: error: previous declaration of 'argp_program_bug_address' was here
    
    old new  
    6060/* Block buffer for sparse file */
    6161char *buffer;
    6262
    63 static const char *argp_program_version = "genfile (" PACKAGE ") " VERSION;
    64 static const char *argp_program_bug_address = "<" PACKAGE_BUGREPORT ">";
     63const char *argp_program_version = "genfile (" PACKAGE ") " VERSION;
     64const char *argp_program_bug_address = "<" PACKAGE_BUGREPORT ">";
    6565static char doc[] = N_("genfile generates data files for GNU paxutils test suite");
    6666
    6767static struct argp_option options[] = {
Note: See TracBrowser for help on using the repository browser.