diff --git a/LICENSE b/LICENSE index 509108de6..42fd1789c 100644 --- a/LICENSE +++ b/LICENSE @@ -1562,3 +1562,11 @@ consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. ======================================================================== + +5. License of libjpeg + +======================================================================== +externals/libjpeg + +this software is based in part on the work of the Independent JPEG Group. +======================================================================== diff --git a/examples/Application.mk b/examples/Application.mk index 867dcec75..94412151a 100644 --- a/examples/Application.mk +++ b/examples/Application.mk @@ -64,9 +64,8 @@ else INSTALL_DIR = $(BIN_DIR) endif -ROOTDEPPATH = --dep-path . - -VPATH = +ROOTDEPPATH += --dep-path . +VPATH += all: .built .PHONY: clean preconfig depend distclean diff --git a/examples/asmp/asmp_main.c b/examples/asmp/asmp_main.c index c79be3a28..2441c73a7 100644 --- a/examples/asmp/asmp_main.c +++ b/examples/asmp/asmp_main.c @@ -135,7 +135,7 @@ static int run_worker(const char *filename) ret = mptask_assign(&mptask); if (ret != 0) { - err("mptask_asign() failure. %d\n", ret); + err("mptask_assign() failure. %d\n", ret); return ret; } @@ -154,7 +154,7 @@ static int run_worker(const char *filename) return ret; } - /* Initialize MP message queue with asigned CPU ID, and bind it to MP task */ + /* Initialize MP message queue with assigned CPU ID, and bind it to MP task */ ret = mpmq_init(&mq, KEY_MQ, mptask_getcpuid(&mptask)); if (ret < 0) diff --git a/examples/audio_player/audio_player_main.cxx b/examples/audio_player/audio_player_main.cxx index 6bcee366a..1820056bd 100644 --- a/examples/audio_player/audio_player_main.cxx +++ b/examples/audio_player/audio_player_main.cxx @@ -58,7 +58,7 @@ #include "include/pool_layout.h" #include "include/fixed_fence.h" #ifdef CONFIG_AUDIOUTILS_PLAYLIST -# include "playlist/playlist.h" +#include