mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
05bc472d2d
- Remove patches for upstream commits in 8.2. - Add an upstream patch to include NT_PROCSTAT_AUXV, NT_PROCSTAT_PS_STRINGS, and NT_PROCSTAT_VMMAP notes in core dumps generated by 'gcore'. - Update kgdb for changes in 8.2. - Add 'USES=gettext-runtime' Reviewed by: pizzamig (maintainer) Differential Revision: https://reviews.freebsd.org/D17085
12 lines
447 B
Python
12 lines
447 B
Python
--- gdb/python/python-config.py 2017-09-14 09:28:17 UTC
|
|
+++ gdb/python/python-config.py
|
|
@@ -59,6 +59,8 @@ for opt in opt_flags:
|
|
|
|
elif opt in ('--libs', '--ldflags'):
|
|
libs = ['-lpython' + pyver + abiflags]
|
|
+ if getvar('LDFLAGS') is not None:
|
|
+ libs.extend(getvar('LDFLAGS').split())
|
|
if getvar('LIBS') is not None:
|
|
libs.extend(getvar('LIBS').split())
|
|
if getvar('SYSLIBS') is not None:
|