pandora_vc_build.m4 859 B

123456789101112131415161718192021222324252627282930313233343536
  1. dnl Copyright (C) 2009 Sun Microsystems, Inc.
  2. dnl This file is free software; Sun Microsystems, Inc.
  3. dnl gives unlimited permission to copy and/or distribute it,
  4. dnl with or without modifications, as long as this notice is preserved.
  5. AC_DEFUN([PANDORA_TEST_VC_DIR],[
  6. pandora_building_from_vc=no
  7. if test -d ".bzr" ; then
  8. pandora_building_from_bzr=yes
  9. pandora_building_from_vc=yes
  10. else
  11. pandora_building_from_bzr=no
  12. fi
  13. if test -d ".svn" ; then
  14. pandora_building_from_svn=yes
  15. pandora_building_from_vc=yes
  16. else
  17. pandora_building_from_svn=no
  18. fi
  19. if test -d ".hg" ; then
  20. pandora_building_from_hg=yes
  21. pandora_building_from_vc=yes
  22. else
  23. pandora_building_from_hg=no
  24. fi
  25. if test -d ".git" ; then
  26. pandora_building_from_git=yes
  27. pandora_building_from_vc=yes
  28. else
  29. pandora_building_from_git=no
  30. fi
  31. ])