Package: memlockd Severity: serious Tags: patch memlockd fails to build on multiple architectures (at least arm, mips, and mipsel) due to the way the compiler is invoked:
gcc -O2 memlockd.cpp -o memlockd -Wall -W -Wshadow -Wpointer-arith -Wcast-align
-Wwrite-strings -Wcast-qual -pedantic -ffor-scope -lstdc++
gcc: error trying to exec 'cc1plus': execvp: No such file or directory
--- memlockd-0.03.orig/Makefile
+++ memlockd-0.03/Makefile
@@ -5,7 +5,7 @@
memlockd: memlockd.cpp
- gcc -O2 memlockd.cpp -o memlockd $(WFLAGS) -lstdc++
+ g++ -O2 memlockd.cpp -o memlockd $(WFLAGS)
clean:
rm -f memlockd
--
Robert Edmonds
[EMAIL PROTECTED]
signature.asc
Description: Digital signature

