Arch Linux

Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines

Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.

REPEAT: Do NOT report bugs for outdated packages!
Tasklist

FS#47248 - [libedit] symbol visibility is wrong

Attached to Project: Arch Linux
Opened by Steffen Nurpmeso (sdaoden) - Thursday, 03 December 2015, 14:23 GMT
Last edited by Gaetan Bisson (vesath) - Thursday, 03 December 2015, 19:46 GMT
Task Type Bug Report
Category Packages: Core
Status Closed
Assigned To Gaetan Bisson (vesath)
Architecture All
Severity Medium
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

Description:

The library is so compiled that symbols which should be library-local globber the global namespace.

Additional info:
* package version(s)
* config and/or log files etc.

My system is current.

Steps to reproduce:

cat > test.c <<_EOT
#include <stdio.h>
#include <histedit.h>

void tty_init(void) { fprintf(stderr, "I want to paint it black\n"); }

int main(void)
{
EditLine *el_el = el_init("TEST", stdin, stdout, stderr);
el_end(el_el);
return 0;
}
_EOT
cc -o test test.c -ledit
./test
This task depends upon

Closed by  Gaetan Bisson (vesath)
Thursday, 03 December 2015, 19:46 GMT
Reason for closing:  Upstream
Comment by Doug Newgard (Scimmia) - Thursday, 03 December 2015, 16:48 GMT
Sounds like an upstream issue.
Comment by Gaetan Bisson (vesath) - Thursday, 03 December 2015, 19:46 GMT
Like Doug said, you should report this upstream to: http://thrysoee.dk/editline/
If there's an easy fix I can apply in our package I'd be happy to do so, but this should really get fixed upstream.
Cheers.

Loading...