~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_fdatasync.m4

pandora-build v0.72 - Moved remaining hard-coded tests into pandora-build
macros.
Add PANDORA_DRIZZLE_BUILD to run the extra checks that drizzle needs that 
plugins would also need to run so we can just use that macro in generated
external plugin builds.
Added support to register_plugins for external plugin building.
Renamed register_plugins.py to pandora-plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl  Copyright (C) 2009 Sun Microsystems
 
2
dnl This file is free software; Sun Microsystems
 
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 a working fdatasync call
 
8
#--------------------------------------------------------------------
 
9
 
 
10
 
 
11
AC_DEFUN([PANDORA_WORKING_FDATASYNC],[
 
12
  AC_CACHE_CHECK([working fdatasync],[ac_cv_func_fdatasync],[
 
13
    AC_LANG_PUSH(C++)
 
14
    AC_RUN_IFELSE([AC_LANG_PROGRAM([[
 
15
#include <unistd.h>
 
16
      ]],[[
 
17
fdatasync(4);
 
18
      ]])],
 
19
    [ac_cv_func_fdatasync=yes],
 
20
    [ac_cv_func_fdatasync=no])
 
21
    AC_LANG_POP()
 
22
  ])
 
23
  AS_IF([test "x${ac_cv_func_fdatasync}" = "xyes"],
 
24
    [AC_DEFINE([HAVE_FDATASYNC],[1],[If the system has a working fdatasync])])
 
25
])
 
 
b'\\ No newline at end of file'