toolchain libraries need kubridge.h which is not in the SDK
toolchain libraries need kubridge.h which is not in the SDK
the lastest SVN pspirkeyb from PS2DEV SVN required kubridge.h, this header is not part of the SDK itself, it is from DA's SDK, if i want to keep my SDK with only open source code I cannot build it, is it really necessary to include kubridge.h and it's functions?
actually answering myself, applying this patch:
removed non OSS code and libs and makes the library "buildable" again :)
Maybe another good patch for the SDK?
Code: Select all
Index: asciidemo/main.c
===================================================================
--- asciidemo/main.c (revision 2452)
+++ asciidemo/main.c (working copy)
@@ -9,7 +9,6 @@
#include <pspkernel.h>
#include <pspdebug.h>
#include <pspctrl.h>
-#include <kubridge.h>
#include <pspirkeyb.h>
#include <pspirkeyb_rawkeys.h>
Index: asciidemo/Makefile
===================================================================
--- asciidemo/Makefile (revision 2452)
+++ asciidemo/Makefile (working copy)
@@ -9,7 +9,7 @@
LIBDIR = $(PSPDEV)/SDK/lib ../libpspirkeyb
LDFLAGS =
-LIBS = -lpspkubridge -lpspirkeyb -lpsppower
+LIBS = -lpspirkeyb -lpsppower
BUILD_PRX = 1
PSP_FW_VERSION = 401
Index: asciidemoprx/main.c
===================================================================
--- asciidemoprx/main.c (revision 2452)
+++ asciidemoprx/main.c (working copy)
@@ -13,7 +13,6 @@
#include <pspctrl.h>
#include <pspdebug.h>
#include <psppower.h>
-#include <kubridge.h>
#include <stdio.h>
#include <string.h>
Index: asciidemoprx/Makefile
===================================================================
--- asciidemoprx/Makefile (revision 2452)
+++ asciidemoprx/Makefile (working copy)
@@ -9,7 +9,7 @@
LIBDIR = $(PSPDEV)/SDK/lib ../libpspirkeybprx
LDFLAGS =
-LIBS = -lpspkubridge -lpspirkeybprx -lpsppower
+LIBS = -lpspirkeybprx -lpsppower
BUILD_PRX = 1
PSP_FW_VERSION = 401
Maybe another good patch for the SDK?
Code: Select all
Sending pspirkeyb/asciidemo/Makefile
Sending pspirkeyb/asciidemo/main.c
Sending pspirkeyb/asciidemoprx/Makefile
Sending pspirkeyb/asciidemoprx/main.c
Transmitting file data ....
Committed revision 2454.