Advertisement
Guest User

jkridner

a guest
Nov 12th, 2008
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. diff --git a/classes/siteinfo.bbclass b/classes/siteinfo.bbclass
  2. index 039afbb..7d3b657 100644
  3. --- a/classes/siteinfo.bbclass
  4. +++ b/classes/siteinfo.bbclass
  5. @@ -33,6 +33,7 @@ def get_siteinfo_list(d):
  6. "avr32-linux-uclibc": "endian-big bit-32 common-linux common-uclibc avr32-common",\
  7. "bfin-uclinux-uclibc": "endian-little bit-32 common-uclibc bfin-common",\
  8. "i386-linux": "endian-little bit-32 common-linux common-glibc ix86-common",\
  9. + "i386-darwin": "endian-little bit-32 common-darwin common-glibc ix86-common",\
  10. "i486-linux": "endian-little bit-32 common-linux common-glibc ix86-common",\
  11. "i586-linux": "endian-little bit-32 common-linux common-glibc ix86-common",\
  12. "i686-linux": "endian-little bit-32 common-linux common-glibc ix86-comm
  13. on",\
  14. diff --git a/packages/openssl/openssl.inc b/packages/openssl/openssl.inc
  15. index 2ec1d91..919c5dc 100644
  16. --- a/packages/openssl/openssl.inc
  17. +++ b/packages/openssl/openssl.inc
  18. @@ -70,6 +70,9 @@ do_configure () {
  19. linux-sparc)
  20. target=linux-sparcv8
  21. ;;
  22. + darwin-i386)
  23. + target=darwin-i386
  24. + ;;
  25. esac
  26. # inject machine-specific flags
  27. sed -i -e "s|^\(\"$target\",\s*\"[^:]\+\):\([^:]\+\)|\1:${CFLAG}|g" Configure
  28. diff --git a/packages/quilt/quilt-native.inc b/packages/quilt/quilt-native.inc
  29. index f815969..8031d68 100644
  30. --- a/packages/quilt/quilt-native.inc
  31. +++ b/packages/quilt/quilt-native.inc
  32. @@ -10,6 +10,7 @@ inherit autotools native
  33.  
  34. PATCHTOOL = "patch"
  35. EXTRA_OECONF = "--disable-nls"
  36. +EXTRA_OECONF_append_darwin = " --without-getopt"
  37.  
  38. do_configure () {
  39. oe_runconf
  40. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement