mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 20:53:03 +01:00
Uprev pseudo to the latest version. This corrects a linking problem on some newer host systems. In addition, we add more detail to the local.conf.sample file to explain the NO32LIBS and why someone would set it to 0. Also fix a minor bug in pseudo that prevented it from building for the target. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
16 lines
424 B
Diff
16 lines
424 B
Diff
Due to disabling the LD_LIBRARY_PATH handling, we need to use a static
|
|
libsqlite.
|
|
|
|
diff -ur git.orig/Makefile.in git/Makefile.in
|
|
--- git.orig/Makefile.in
|
|
+++ git/Makefile.in
|
|
@@ -55,7 +55,7 @@
|
|
|
|
# needed for anything that links with pseduo_client.o, pretty much
|
|
CLIENT_LDFLAGS=-ldl -lpthread
|
|
-DB_LDFLAGS=-lsqlite3 -lpthread
|
|
+DB_LDFLAGS=$(SQLITE)/lib/libsqlite3.a -lpthread
|
|
|
|
PSEUDO=$(BIN)/pseudo
|
|
PSEUDODB=$(BIN)/pseudodb
|