Advertisement
Guest User

*.mk and config.in

a guest
Apr 18th, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.85 KB | None | 0 0
  1. -----------------------------------------------------------------------------------------------------
  2. *.mk (path "hardcoded", at the moment I know the right path, i will use $(STAGING_DIR)/apr-1-config or whats the correct path...)
  3. -----------------------------------------------------------------------------------------------------
  4.  
  5. #############################################################
  6. #
  7. # apr-util
  8. #
  9. #############################################################
  10. APR_UTIL_VERSION = 1.4.1
  11. APR_UTIL_SITE = http://archive.apache.org/dist/apr
  12. APR_UTIL_INSTALL_STAGING = YES
  13. APT_UTIL_DEPENDENCIES = apr
  14. APR_UTIL_CONF_ENV = \
  15.     --with-apr=/home/bluefire/buildroot/output/host/usr/arm-unknown-linux-gnueabi/sysroot/usr/bin/apr-1-config
  16.  
  17. $(eval $(call AUTOTARGETS))
  18.  
  19. -----------------------------------------------------------------------------------------------------
  20. *.mk (path "hardcoded", at the moment I know the right path, i will use $(TARGET_DIR)/apr-1-config or whats the correct path...)
  21. -----------------------------------------------------------------------------------------------------
  22.  
  23. #############################################################
  24. #
  25. # apr-util
  26. #
  27. #############################################################
  28. APR_UTIL_VERSION = 1.4.1
  29. APR_UTIL_SITE = http://archive.apache.org/dist/apr
  30. APR_UTIL_INSTALL_STAGING = YES
  31. APT_UTIL_DEPENDENCIES = apr
  32. APR_UTIL_CONF_ENV = \
  33.     --with-apr=/home/bluefire/buildroot/output/target/usr/bin/apr-1-config
  34.  
  35. $(eval $(call AUTOTARGETS))
  36.  
  37. -----------------------------------------------------------------------------------------------------
  38. Config.in
  39. -----------------------------------------------------------------------------------------------------
  40.  
  41. config BR2_PACKAGE_APR_UTIL
  42.     bool "apr-util"
  43.     help
  44.       The utility library for the apache runtime project
  45.  
  46.       http://apr.apache.org/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement