File: explicitly_link_with_ncurses.patch

package info (click to toggle)
libcdk5 5.0.20251014-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,544 kB
  • sloc: ansic: 32,708; sh: 5,317; makefile: 1,203; awk: 55; sed: 49; cpp: 41
file content (17 lines) | stat: -rw-r--r-- 685 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Fix missing libncurses5 dependency
             2017 - '$(CC)' instead of hard code 'gcc' - #876031
             Thanks Helmut Grohne
Author: Sam Hocevar <sho@debian.org>
Reviewed-by: Herbert Parentes Fortes Neto <hpfn@ig.com.br>
Last-Update: 2017-09-18
--- libcdk5.orig/Makefile.in
+++ libcdk5/Makefile.in
@@ -305,7 +305,7 @@
 all cdklib :: $(CDKLIB)
 
 @MAKE_NORMAL@cdkshlib $(OLD_SHLIB_FILE) :: $(CDKSHOBJS)
-@MAKE_NORMAL@	$(CC) -shared -Wl,-soname=$(OLD_SONAME) $(LDFLAGS) $(LIBS) -o $(OLD_SHLIB_FILE) $(CDKSHOBJS)
+@MAKE_NORMAL@	$(CC) -shared -Wl,-soname=$(OLD_SONAME) $(LDFLAGS) $(LIBS) -o $(OLD_SHLIB_FILE) $(CDKSHOBJS) $(LIBS)
 
 #
 # Make the examples directory.