17 lines
546 B
Plaintext
17 lines
546 B
Plaintext
$NetBSD: patch-plugins_aiksaurus_Makefile.am,v 1.1 2015/09/13 21:32:13 nros Exp $
|
|
GCC 4.6+ chokes on "--no-undefined" which older versions of GCC let fall
|
|
to the linker. Prefix with "-Wl," to fix build.
|
|
Use CXX for linking.
|
|
--- plugins/aiksaurus/Makefile.am.orig 2014-03-21 23:51:31.000000000 +0000
|
|
+++ plugins/aiksaurus/Makefile.am
|
|
@@ -28,7 +28,8 @@ aiksaurus_la_LIBADD = \
|
|
aiksaurus_la_LDFLAGS = \
|
|
-avoid-version \
|
|
-module \
|
|
- -no-undefined
|
|
+ -Wl,-no-undefined
|
|
|
|
aiksaurus_la_SOURCES =
|
|
+nodist_EXTRA_aiksaurus_la_SOURCES = dummy.cpp
|
|
|