2
1

psmisc.mk 726 B

1234567891011121314151617181920212223
  1. #############################################################
  2. #
  3. # psmisc
  4. #
  5. #############################################################
  6. PSMISC_VERSION:=22.6
  7. PSMISC_SOURCE:=psmisc-$(PSMISC_VERSION).tar.gz
  8. PSMISC_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/psmisc
  9. PSMISC_AUTORECONF:=no
  10. PSMISC_INSTALL_STAGING:=no
  11. PSMISC_INSTALL_TARGET:=YES
  12. PSMISC_CONF_ENV:=ac_cv_func_malloc_0_nonnull=yes \
  13. ac_cv_func_realloc_0_nonnull=yes
  14. PSMISC_CONF_OPT:= $(DISABLE_IPV6)
  15. PSMISC_DEPENDENCIES:=uclibc ncurses
  16. ifeq ($(BR2_ENABLE_LOCALE),y)
  17. # psmisc gets confused and forgets to link with libintl
  18. PSMISC_MAKE_OPT:=LIBS=-lintl
  19. PSMISC_DEPENDENCIES+= gettext libintl
  20. endif
  21. $(eval $(call AUTOTARGETS,package,psmisc))