Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 582824 | Differences between
and this patch

Collapse All | Expand All

(-)os/Linux.c (-1 / +1 lines)
Lines 393-399 Link Here
393
     * for the cwd symlink, since on linux the links we care about will never
393
     * for the cwd symlink, since on linux the links we care about will never
394
     * be relative links (cwd, exec)
394
     * be relative links (cwd, exec)
395
     * Doing this because readlink works on static buffers */
395
     * Doing this because readlink works on static buffers */
396
    link = canonicalize_file_name(link_file);
396
    link = realpath(link_file, NULL);
397
397
398
    /* we no longer need need the path to the link file */
398
    /* we no longer need need the path to the link file */
399
    obstack_free(mem_pool, link_file);
399
    obstack_free(mem_pool, link_file);
(-)Makefile.PL (-1 / +1 lines)
Lines 17-23 Link Here
17
    ABSTRACT_FROM    => 'lib/Proc/ProcessTable.pm',
17
    ABSTRACT_FROM    => 'lib/Proc/ProcessTable.pm',
18
    LICENSE          => 'artistic_2',
18
    LICENSE          => 'artistic_2',
19
    'LDFROM'    => '$(O_FILES)',
19
    'LDFROM'    => '$(O_FILES)',
20
    'LIBS'	=> [''],
20
    'LIBS'	=> ['-lobstack'],
21
    'OBJECT'    => 'ProcessTable.o OS.o',
21
    'OBJECT'    => 'ProcessTable.o OS.o',
22
    MIN_PERL_VERSION => '5.006',
22
    MIN_PERL_VERSION => '5.006',
23
    CONFIGURE_REQUIRES => {
23
    CONFIGURE_REQUIRES => {

Return to bug 582824