when I tried to compile my package "mypkg-curl" for the Attitude Adjusment, I got the following error:

Package mypackage is missing dependencies for the following libraries:
libcurl.so.4
libmicroxml.so.1

I already put the above dependencies in my Makefile, here after the code:

define Package/mypkg/Default
  SECTION:=utils
  CATEGORY:=Utilities
  DEPENDS:=+libuci +libubox +libubus +libmicroxml +libjson-c +shflags
endef

define Package/mypkg-curl
  $(call Package/mypkg/Default)
  TITLE+= (using libcurl)
  DEPENDS+= +libcurl
  VARIANT:=curl
endef

I can see that the binarie of my package is generated. But the openwrt package (.ipk) is not generated.
What could be the problem. And how to fix it?

(Last edited by kallel on 14 Mar 2014, 09:37)