diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-11-15 10:11:45 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-11-15 10:11:45 +0100 |
commit | ff6f45b68a15c4bf33ab401e4864205e2a57a066 (patch) | |
tree | f6bcec9bfd84158f2fc32a37b1321dacc6ffbd99 /package/firefox/Makefile | |
parent | 68bace539dd6d7e271cf9b5740eb8c3c5507213d (diff) |
add new ADK Symbol PKG_NEEDS
There are a lot of packages which needs special features either
toolchain or hardware features. Add a new symbol which will be
used to disable packages, when a toolchain for example does
not provide this feature.
At the moment following features are required to set for a
package: threads rt c++.
There will follow: mmu iconv.
This will help to better support targets without MMU or
threading support.
Diffstat (limited to 'package/firefox/Makefile')
-rw-r--r-- | package/firefox/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/firefox/Makefile b/package/firefox/Makefile index 462e3e596..d31deba4a 100644 --- a/package/firefox/Makefile +++ b/package/firefox/Makefile @@ -9,14 +9,15 @@ PKG_RELEASE:= 1 PKG_HASH:= ff00689f4d2ff54c5eb7b3aa367560a3645800eb0c96e73a795e461461b1970e PKG_DESCR:= graphical webbrowser PKG_SECTION:= x11/apps -PKG_DEPENDS:= libpthread alsa-lib glib libgtk2 libpng libtiff libxcursor libffi -PKG_DEPENDS+= nspr nss libjpeg-turbo libatk pango cairo libxt libx11 libstdcxx hicolor-icon-theme -PKG_DEPENDS+= libxdamage libxfixes libidl libsqlite libxcomposite gdk-pixbuf librt +PKG_DEPENDS:= alsa-lib glib libgtk2 libpng libtiff libxcursor libffi +PKG_DEPENDS+= nspr nss libjpeg-turbo libatk pango cairo libxt libx11 hicolor-icon-theme +PKG_DEPENDS+= libxdamage libxfixes libidl libsqlite libxcomposite gdk-pixbuf PKG_DEPENDS+= harfbuzz mesa libvpx libbz2 ca-certificates libevent PKG_BUILDDEP:= alsa-lib glib libgtk2 libIDL libX11 mesa libtiff gdk-pixbuf PKG_BUILDDEP+= nspr nss libjpeg-turbo libXt fontconfig sqlite atk libpng hicolor-icon-theme PKG_BUILDDEP+= libvpx pango gettext-tiny bzip2 libevent bzip2-host python2-host yasm-host PKG_BUILDDEP+= zip-host +PKG_NEEDS:= threads rt c++ PKG_URL:= http://www.mozilla.org/ PKG_SITES:= http://releases.mozilla.org/pub/mozilla.org/firefox/releases/$(PKG_VERSION)/source/ PKG_NOPARALLEL:= 1 |