~mordred/libmemcached/win32

« back to all changes in this revision

Viewing changes to m4/pandora_clock_gettime.m4

  • Committer: Monty Taylor
  • Date: 2010-02-12 19:32:19 UTC
  • mfrom: (533.1.266 pandora-build)
  • Revision ID: mordred@inaugust.com-20100212193219-qgm4lb7ap7rqbg6p
Some porting work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl Copyright (C) 2010 Monty Taylor
 
2
dnl This file is free software; Monty Taylor
 
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
 
 
6
#--------------------------------------------------------------------
 
7
# Check for clock_gettime
 
8
#--------------------------------------------------------------------
 
9
 
 
10
AC_DEFUN([PANDORA_CLOCK_GETTIME],[
 
11
  AC_SEARCH_LIBS([clock_gettime],[rt])
 
12
  AS_IF([test "x${ac_cv_search_clock_gettime}" != "xno"],[
 
13
    AC_DEFINE([HAVE_CLOCK_GETTIME],[1],[Have a working clock_gettime function])
 
14
  ])
 
15
])