diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-30 05:28:55 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-30 05:28:55 +0100 |
commit | a78362f046308235c86ae7175baa3eec343142ff (patch) | |
tree | 926607cb991f98a550619c9002535a16552e546c /package | |
parent | 405da345c6744ed5a6621d0234166d45c9799b07 (diff) | |
parent | 4b5dc45c753b7f021e0eebf10cfae416a8d51c58 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package')
-rw-r--r-- | package/flex/Makefile | 3 | ||||
-rw-r--r-- | package/sudo/Makefile | 3 | ||||
-rw-r--r-- | package/xbindkeys/Makefile | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/package/flex/Makefile b/package/flex/Makefile index d026b2458..f77e4650a 100644 --- a/package/flex/Makefile +++ b/package/flex/Makefile @@ -16,6 +16,9 @@ include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,FLEX,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) +CONFIGURE_ENV+= ac_cv_func_malloc_0_nonnull=yes \ + ac_cv_func_realloc_0_nonnull=yes + post-install: ${INSTALL_DIR} ${IDIR_FLEX}/usr/bin ${INSTALL_BIN} ${WRKINST}/usr/bin/flex ${IDIR_FLEX}/usr/bin diff --git a/package/sudo/Makefile b/package/sudo/Makefile index cdde122fe..4e031c871 100644 --- a/package/sudo/Makefile +++ b/package/sudo/Makefile @@ -16,7 +16,8 @@ include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,SUDO,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -CONFIGURE_ARGS+= --without-pam +CONFIGURE_ARGS+= --without-pam \ + --with-timedir=/var/run post-install: $(INSTALL_DIR) $(IDIR_SUDO)/usr/bin diff --git a/package/xbindkeys/Makefile b/package/xbindkeys/Makefile index d40bfff35..9c4352cb6 100644 --- a/package/xbindkeys/Makefile +++ b/package/xbindkeys/Makefile @@ -18,14 +18,10 @@ $(eval $(call PKG_template,XBINDKEYS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},$ CONFIGURE_ARGS+= --disable-guile \ --disable-tk CONFIGURE_ENV+= ac_cv_func_malloc_0_nonnull=yes -#BUILD_STYLE:= manual -#INSTALL_STYLE:= manual -# please install all files and directories to the package dir post-install: $(INSTALL_DIR) $(IDIR_XBINDKEYS)/usr/bin $(INSTALL_BIN) $(WRKINST)/usr/bin/xbindkeys \ $(IDIR_XBINDKEYS)/usr/bin -# please remove ALL above comments, before commiting include ${TOPDIR}/mk/pkg-bottom.mk |