readlink.m4 761 B

1234567891011121314151617181920212223242526272829
  1. # readlink.m4 serial 5
  2. dnl Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. AC_DEFUN([gl_FUNC_READLINK],
  7. [
  8. AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
  9. AC_CHECK_FUNCS_ONCE([readlink])
  10. if test $ac_cv_func_readlink = no; then
  11. HAVE_READLINK=0
  12. AC_LIBOBJ([readlink])
  13. gl_PREREQ_READLINK
  14. fi
  15. ])
  16. # Like gl_FUNC_READLINK, except prepare for separate compilation (no AC_LIBOBJ).
  17. AC_DEFUN([gl_FUNC_READLINK_SEPARATE],
  18. [
  19. AC_CHECK_FUNCS_ONCE([readlink])
  20. gl_PREREQ_READLINK
  21. ])
  22. # Prerequisites of lib/readlink.c.
  23. AC_DEFUN([gl_PREREQ_READLINK],
  24. [
  25. :
  26. ])