385abae
Description: <short summary of the patch>
385abae
 TODO: Put a short summary on the line above and replace this paragraph
385abae
 with a longer explanation of this change. Complete the meta-information
385abae
 with other relevant fields (see below for details). To make it easier, the
385abae
 information below has been extracted from the changelog. Adjust it or drop
385abae
 it.
385abae
 .
385abae
 gcl (2.6.12-9) unstable; urgency=medium
385abae
 .
385abae
   * Version_2_6_13pre8a
385abae
   * Bug fix: "ftbfs with GCC-5", thanks to Matthias Klose (Closes:
385abae
     #777866).
385abae
Author: Camm Maguire <camm@debian.org>
385abae
Bug-Debian: https://bugs.debian.org/777866
385abae
385abae
---
385abae
The information above should follow the Patch Tagging Guidelines, please
385abae
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
385abae
are templates for supplementary fields that you might want to add:
385abae
385abae
Origin: <vendor|upstream|other>, <url of original patch>
385abae
Bug: <url in upstream bugtracker>
385abae
Bug-Debian: https://bugs.debian.org/<bugnumber>
385abae
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
385abae
Forwarded: <no|not-needed|url proving that it has been forwarded>
385abae
Reviewed-By: <name and email of someone who approved the patch>
385abae
Last-Update: <YYYY-MM-DD>
385abae
385abae
--- gcl-2.6.12.orig/o/prelink.c
385abae
+++ gcl-2.6.12/o/prelink.c
385abae
@@ -2,6 +2,12 @@
385abae
 
385abae
 #include "include.h"
385abae
 
385abae
+extern FILE *stdin __attribute__((weak));
385abae
+extern FILE *stderr __attribute__((weak));
385abae
+extern FILE *stdout __attribute__((weak));
385abae
+extern rl_compentry_func_t *rl_completion_entry_function __attribute__((weak));
385abae
+extern const char *rl_readline_name __attribute__((weak));
385abae
+
385abae
 void
385abae
 prelink_init(void) {
385abae