Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

38 wiersze
924 B

  1. dnl
  2. dnl Lol Engine
  3. dnl
  4. dnl Copyright © 2010—2016 Sam Hocevar <sam@hocevar.net>
  5. dnl
  6. dnl Lol Engine is free software. It comes without any warranty, to
  7. dnl the extent permitted by applicable law. You can redistribute it
  8. dnl and/or modify it under the terms of the Do What the Fuck You Want
  9. dnl to Public License, Version 2, as published by the WTFPL Task Force.
  10. dnl See http://www.wtfpl.net/ for more details.
  11. dnl
  12. # LOL_AC_SUBPROJECT()
  13. # ---------------------
  14. AC_DEFUN([LOL_AC_SUBPROJECT], [
  15. dnl
  16. dnl Build and configure Lol Engine before our repository
  17. dnl Ensure $lol_srcdir and $lol_builddir are properly set
  18. dnl
  19. ac_configure_args="${ac_configure_args} --enable-subproject"
  20. AC_CONFIG_SUBDIRS([lol])
  21. AC_SUBST(lol_srcdir, '${top_srcdir}/lol')
  22. AC_SUBST(lol_builddir, '${top_builddir}/lol')
  23. dnl
  24. dnl Subprojects use the same macros as us
  25. dnl
  26. LOL_AC_INIT()
  27. LOL_AC_CHECK()
  28. LOL_AC_FINI()
  29. ]) # LOL_AC_SUBPROJECT