diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-09-16 13:05:46 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-09-16 13:05:46 +0200 |
commit | afab289b265ff987c3f62393b3ef707c2650704f (patch) | |
tree | e4145c43758117b6c9c372a89cbb8ad34e6fb7fe /package/libnl | |
parent | a2e96ddb9519a2f40857f11501b88e465d25082d (diff) |
add some native build fixes (tested on Lemote notebook)
- enable busybox applets needed for natvie builds
- add header packages for expat and libnl
- remove rtl8187b driver, use kernel included driver
(needs more testing)
Diffstat (limited to 'package/libnl')
-rw-r--r-- | package/libnl/Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/package/libnl/Makefile b/package/libnl/Makefile index 1cbe9f093..d7021a844 100644 --- a/package/libnl/Makefile +++ b/package/libnl/Makefile @@ -11,12 +11,25 @@ PKG_DESCR:= Netlink library PKG_SECTION:= libs PKG_SITES:= http://downloads.openwrt.org/sources/ +PKG_SUBPKGS:= LIBNL LIBNL_DEV +PKGSD_LIBNL_DEV:= header files for netlink library +PKGSC_LIBNL_DEV:= devel + include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,LIBNL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) +$(eval $(call PKG_template,LIBNL_DEV,${PKG_NAME}-dev,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_LIBNL_DEV},${PKGSC_LIBNL_DEV})) + +SUB_INSTALLS-y:= +SUB_INSTALLS-m:= +SUB_INSTALLS-${ADK_PACKAGE_LIBNL_DEV}+= libnl-dev-install -post-install: +post-install: ${SUB_INSTALLS-m} ${SUB_INSTALLS-y} ${INSTALL_DIR} ${IDIR_LIBNL}/usr/lib ${CP} ${WRKINST}/usr/lib/libnl.so* ${IDIR_LIBNL}/usr/lib +libnl-dev-install: + ${INSTALL_DIR} ${IDIR_LIBNL_DEV}/usr/include + ${CP} ${WRKINST}/usr/include/* ${IDIR_LIBNL_DEV}/usr/include + include ${TOPDIR}/mk/pkg-bottom.mk |