patchGNU Source Installer - Patches: patch #6308, patch for libsrcinst/srccfgopt.c

 
 

You are not allowed to post comments on this tracker with your current authentication level.

patch #6308: patch for libsrcinst/srccfgopt.c

Submitter:  Jorma Karvonen <jormak>
Submitted:  Thu 06 Dec 2007 08:26:21 PM UTC
   
 
Category:  None Priority:  5 - Normal
Status:  Invalid Privacy:  Public
Assigned to:  None Open/Closed:  Closed

Thu 06 Dec 2007 08:26:21 PM UTC, original submission:  

23c23,25
<
---

> #ifdef HAVE_NLS
> # include <locale.h>
> #endif

45,51c47,49
<     {"Optional Packages and X", "^(Optional Packages|X features)",
<      SRC_MAIN_PATTERN, 0, 0, 0},
<     {"Environment Variables", "^Some influential environment variables",
<      SRC_ENV_PATTERN, 0, 0, 0},
<     {"Optional Features and Packages",
<      "^--enable and --with options recognized", SRC_MAIN_PATTERN, 0, 0, 0},
<
---

>     {"Optional Packages and X", "^(Optional Packages|X features)", SRC_MAIN_PATTERN, 0, 0, 0},
>     {"Environment Variables", "^Some influential environment variables", SRC_ENV_PATTERN, 0, 0, 0},
>     {"Optional Features and Packages", "^--enable and --with options recognized", SRC_MAIN_PATTERN, 0, 0, 0},

126,160c124,158
<     _init_configure_option(o->options + idx++, "--prefix", "=PREFIX",
<    "install files in PREFIX overriding default prefix",
<    0);
<
<     _init_configure_option(o->options + idx++, "--exec-prefix", "=EPREFIX",
<    "install architecture-dependent files in EPREFIXs [default=PREFIX]",
<    0);
<     _init_configure_option(o->options + idx++, "--bindir", "=DIR",
<    "user executables [EPREFIX/bin]", 0);
<     _init_configure_option(o->options + idx++, "--sbindir", "=DIR",
<    "system admin executables [EPREFIX/sbin]", 0);
<     _init_configure_option(o->options + idx++, "--libexecdir", "=DIR",
<    "program executables [EPREFIX/libexec]", 0);
<     _init_configure_option(o->options + idx++, "--datadir", "=DIR",
<    "read-only architecture-independent data [PREFIX/share]",
<    0);
<     _init_configure_option(o->options + idx++, "--sysconfdir", "=DIR",
<    "read-only single-machine data [PREFIX/etc]",
<    0);
<     _init_configure_option(o->options + idx++, "--sharedstatedir", "=DIR",
<    "modifiable architecture-independent data [PREFIX/com]",
<    0);
<     _init_configure_option(o->options + idx++, "--localstatedir", "=DIR",
<    "modifiable single-machine data [PREFIX/var]",
<    0);
<     _init_configure_option(o->options + idx++, "--libdir", "=DIR",
<    "object code libraries [EPREFIX/lib]", 0);
<     _init_configure_option(o->options + idx++, "--includedir", "=DIR",
<    "C header files [PREFIX/include]", 0);
<     _init_configure_option(o->options + idx++, "--oldincludedir", "=DIR",
<    "C header files for non-gcc [/usr/include]", 0);
<     _init_configure_option(o->options + idx++, "--infodir", "=DIR",
<    "info documentation [PREFIX/info]", 0);
<     _init_configure_option(o->options + idx++, "--mandir", "=DIR",
<    "man documentation [PREFIX/man]", 0);
---

>     _init_configure_option(o->options + idx++, "--prefix", gettext ( "=PREFIX" ),
>    gettext ( "install files in PREFIX overriding default prefix" ),
>    0); /* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>
>     _init_configure_option(o->options + idx++, "--exec-prefix", gettext ( "=EPREFIX" ),
>    gettext ( "install architecture-dependent files in EPREFIXs [default=PREFIX]" ),
>    0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--bindir", gettext ( "=DIR" ),
>    gettext ( "user executables [EPREFIX/bin]" ), 0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--sbindir", gettext ( "=DIR" ),
>    gettext ( "system admin executables [EPREFIX/sbin]" ), 0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--libexecdir", gettext ( "=DIR" ),
>    gettext ( "program executables [EPREFIX/libexec]" ), 0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--datadir", gettext ( "=DIR"),
>    gettext ( "read-only architecture-independent data [PREFIX/share]" ),
>    0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--sysconfdir", gettext ( "=DIR" ),
>    gettext ( "read-only single-machine data [PREFIX/etc]" ),
>    0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--sharedstatedir", gettext ( "=DIR" ),
>    gettext ( "modifiable architecture-independent data [PREFIX/com]" ),
>    0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--localstatedir", gettext ( "=DIR" ),
>    gettext ( "modifiable single-machine data [PREFIX/var]" ),
>    0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--libdir", gettext ( "=DIR" ),
>    gettext ( "object code libraries [EPREFIX/lib]" ), 0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--includedir", gettext ( "=DIR" ),
>    gettext ( "C header files [PREFIX/include]"), 0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--oldincludedir", gettext ( "=DIR" ),
>    gettext ( "C header files for non-gcc [/usr/include]" ), 0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--infodir", gettext ( "=DIR" ),
>    gettext ( "info documentation [PREFIX/info]" ), 0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */
>     _init_configure_option(o->options + idx++, "--mandir", gettext ( "=DIR" ),
>    gettext ( "man documentation [PREFIX/man]" ), 0);/* warning: passing arguments 4 of ‘_init_configure_option’ makes pointer from integer without a cast */


Jorma Karvonen <jormak>
Group Member

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by sick_soul (Updated the item)
  • -email is unavailable- added by jormak (patch for libsrcinst/srccfgopt.c)
  • -email is unavailable- added by jormak (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

     

    Follow 3 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2007-12-08 sick_soul StatusNone Invalid
        Open/ClosedOpen Closed
    2007-12-06 jormak Carbon-Copy- Added jormak

    Back to the top

    Powered by Savane 3.13-4b48.
    Corresponding source code