mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@141474 d073be05-634f-4543-b044-5fe20cf6d1d6
15 lines
556 B
Diff
15 lines
556 B
Diff
The sample binary will fail to link on systems that need a replacement for
|
|
calloc because their implementation isn't GNU-calloc compatible. For example,
|
|
OS X is affected by this.
|
|
|
|
Signed-off-by: Clemens Lang <cal@macports.org>
|
|
Upstream-Status: Submitted [http://lists.gnu.org/archive/html/bug-barcode/2015-10/msg00000.html]
|
|
--- Makefile.am.orig 2015-10-19 19:14:29.000000000 +0200
|
|
+++ Makefile.am 2015-10-19 19:14:36.000000000 +0200
|
|
@@ -38,4 +38,4 @@
|
|
|
|
|
|
sample_SOURCES = sample.c
|
|
-sample_LDADD = libbarcode.la
|
|
+sample_LDADD = libbarcode.la lib/libgnu.la
|