From 21f850c451cb7db8a0085ddcc892290ecac859eb Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Thu, 11 Oct 2012 01:35:29 -0400 Subject: [PATCH] Remove dead pandora files. --- m4/pandora_clock_gettime.m4 | 15 ------- m4/pandora_fdatasync.m4 | 25 ------------ m4/pandora_have_gcc_atomics.m4 | 37 ----------------- m4/pandora_have_libaio.m4 | 56 -------------------------- m4/pandora_have_libavahi.m4 | 41 ------------------- m4/pandora_have_libhaildb.m4 | 43 -------------------- m4/pandora_have_libpcre.m4 | 73 ---------------------------------- 7 files changed, 290 deletions(-) delete mode 100644 m4/pandora_clock_gettime.m4 delete mode 100644 m4/pandora_fdatasync.m4 delete mode 100644 m4/pandora_have_gcc_atomics.m4 delete mode 100644 m4/pandora_have_libaio.m4 delete mode 100644 m4/pandora_have_libavahi.m4 delete mode 100644 m4/pandora_have_libhaildb.m4 delete mode 100644 m4/pandora_have_libpcre.m4 diff --git a/m4/pandora_clock_gettime.m4 b/m4/pandora_clock_gettime.m4 deleted file mode 100644 index bab2f0bb..00000000 --- a/m4/pandora_clock_gettime.m4 +++ /dev/null @@ -1,15 +0,0 @@ -dnl Copyright (C) 2010 Monty Taylor -dnl This file is free software; Monty Taylor -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -#-------------------------------------------------------------------- -# Check for clock_gettime -#-------------------------------------------------------------------- - -AC_DEFUN([PANDORA_CLOCK_GETTIME],[ - AC_SEARCH_LIBS([clock_gettime],[rt]) - AS_IF([test "x${ac_cv_search_clock_gettime}" != "xno"],[ - AC_DEFINE([HAVE_CLOCK_GETTIME],[1],[Have a working clock_gettime function]) - ]) -]) diff --git a/m4/pandora_fdatasync.m4 b/m4/pandora_fdatasync.m4 deleted file mode 100644 index e8bba25c..00000000 --- a/m4/pandora_fdatasync.m4 +++ /dev/null @@ -1,25 +0,0 @@ -dnl Copyright (C) 2009 Sun Microsystems, Inc. -dnl This file is free software; Sun Microsystems, Inc. -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -#-------------------------------------------------------------------- -# Check for a working fdatasync call -#-------------------------------------------------------------------- - - -AC_DEFUN([PANDORA_WORKING_FDATASYNC],[ - AC_CACHE_CHECK([working fdatasync],[ac_cv_func_fdatasync],[ - AC_LANG_PUSH(C++) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ -#include - ]],[[ -fdatasync(4); - ]])], - [ac_cv_func_fdatasync=yes], - [ac_cv_func_fdatasync=no]) - AC_LANG_POP() - ]) - AS_IF([test "x${ac_cv_func_fdatasync}" = "xyes"], - [AC_DEFINE([HAVE_FDATASYNC],[1],[If the system has a working fdatasync])]) -]) diff --git a/m4/pandora_have_gcc_atomics.m4 b/m4/pandora_have_gcc_atomics.m4 deleted file mode 100644 index a106895f..00000000 --- a/m4/pandora_have_gcc_atomics.m4 +++ /dev/null @@ -1,37 +0,0 @@ -dnl Copyright (C) 2009 Sun Microsystems, Inc. -dnl This file is free software; Sun Microsystems, Inc. -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -#-------------------------------------------------------------------- -# Check for GCC Atomic Support -#-------------------------------------------------------------------- - - -AC_DEFUN([PANDORA_HAVE_GCC_ATOMICS],[ - - AC_CACHE_CHECK( - [whether the compiler provides atomic builtins], - [ac_cv_gcc_atomic_builtins], - [AC_LINK_IFELSE( - [AC_LANG_PROGRAM([],[[ - int foo= -10; int bar= 10; - if (!__sync_fetch_and_add(&foo, bar) || foo) - return -1; - bar= __sync_lock_test_and_set(&foo, bar); - if (bar || foo != 10) - return -1; - bar= __sync_val_compare_and_swap(&bar, foo, 15); - if (bar) - return -1; - return 0; - ]])], - [ac_cv_gcc_atomic_builtins=yes], - [ac_cv_gcc_atomic_builtins=no])]) - - AS_IF([test "x$ac_cv_gcc_atomic_builtins" = "xyes"],[ - AC_DEFINE(HAVE_GCC_ATOMIC_BUILTINS, 1, - [Define to 1 if compiler provides atomic builtins.]) - ]) - -]) diff --git a/m4/pandora_have_libaio.m4 b/m4/pandora_have_libaio.m4 deleted file mode 100644 index 000073b2..00000000 --- a/m4/pandora_have_libaio.m4 +++ /dev/null @@ -1,56 +0,0 @@ -dnl Copyright (C) 2011 Andrew Hutchings -dnl This file is free software; Sun Microsystems, Inc. -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -#-------------------------------------------------------------------- -# Check for libaio -#-------------------------------------------------------------------- - - -AC_DEFUN([_PANDORA_SEARCH_LIBAIO],[ - AC_REQUIRE([AC_LIB_PREFIX]) - - AC_CHECK_HEADERS(libaio.h) - AC_LIB_HAVE_LINKFLAGS(aio,, - [ - #include - ], - [ - int aio_cmd= IO_CMD_PREAD; - ]) - - AM_CONDITIONAL(HAVE_LIBAIO, [test "x${ac_cv_libaio}" = "xyes"]) - - AS_IF([test "x${ac_cv_libaio}" = "xyes"],[ - AC_DEFINE([LINUX_NATIVE_AIO], [1], [Enabel libaio support in InnoDB]) - ]) -]) - -AC_DEFUN([_PANDORA_HAVE_LIBAIO],[ - - AC_ARG_ENABLE([libaio], - [AS_HELP_STRING([--disable-libaio], - [Build with libaio support @<:@default=on@:>@])], - [ac_enable_libaio="$enableval"], - [ac_enable_libaio="yes"]) - - _PANDORA_SEARCH_LIBAIO -]) - - -AC_DEFUN([PANDORA_HAVE_LIBAIO],[ - AC_REQUIRE([_PANDORA_HAVE_LIBAIO]) -]) - -AC_DEFUN([_PANDORA_REQUIRE_LIBAIO],[ - ac_enable_libaio="yes" - _PANDORA_SEARCH_LIBAIO - AS_IF([test "x$ac_cv_header_libaio_h" = "xno"],[ - AC_MSG_ERROR([Couldn't find libaio.h. On Debian this can be found in libaio-dev. On Redhat this can be found in libaio-devel.]) - ]) -]) - -AC_DEFUN([PANDORA_REQUIRE_LIBAIO],[ - AC_REQUIRE([_PANDORA_REQUIRE_LIBAIO]) -]) diff --git a/m4/pandora_have_libavahi.m4 b/m4/pandora_have_libavahi.m4 deleted file mode 100644 index b32432dc..00000000 --- a/m4/pandora_have_libavahi.m4 +++ /dev/null @@ -1,41 +0,0 @@ -dnl Copyright (C) 2009 Sun Microsystems, Inc. -dnl This file is free software; Sun Microsystems, Inc. -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -AC_DEFUN([_PANDORA_SEARCH_LIBAVAHI],[ - AC_REQUIRE([AC_LIB_PREFIX]) - - dnl -------------------------------------------------------------------- - dnl Check for libavahi - dnl -------------------------------------------------------------------- - - AC_ARG_ENABLE([libavahi], - [AS_HELP_STRING([--disable-libavahi], - [Build with libavahi support @<:@default=on@:>@])], - [ac_enable_libavahi="$enableval"], - [ac_enable_libavahi="yes"]) - - AS_IF([test "x$ac_enable_libavahi" = "xyes"],[ - AC_LIB_HAVE_LINKFLAGS(avahi-client,avahi-common,[ - #include - #include - ],[ - AvahiSimplePoll *simple_poll= avahi_simple_poll_new(); - ]) - ],[ - ac_cv_libavahi="no" - ]) - - AM_CONDITIONAL(HAVE_LIBAVAHI, [test "x${ac_cv_libavahi}" = "xyes"]) -]) - -AC_DEFUN([PANDORA_HAVE_LIBAVAHI],[ - AC_REQUIRE([_PANDORA_SEARCH_LIBAVAHI]) -]) - -AC_DEFUN([PANDORA_REQUIRE_LIBAVAHI],[ - AC_REQUIRE([_PANDORA_SEARCH_LIBAVAHI]) - AS_IF([test "x${ac_cv_libavahi}" = "xno"], - AC_MSG_ERROR([libavahi is required for ${PACKAGE}])) -]) diff --git a/m4/pandora_have_libhaildb.m4 b/m4/pandora_have_libhaildb.m4 deleted file mode 100644 index b957f64c..00000000 --- a/m4/pandora_have_libhaildb.m4 +++ /dev/null @@ -1,43 +0,0 @@ -dnl Copyright (C) 2009 Sun Microsystems, Inc. -dnl This file is free software; Sun Microsystems, Inc. -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -AC_DEFUN([_PANDORA_SEARCH_LIBHAILDB],[ - AC_REQUIRE([AC_LIB_PREFIX]) - - dnl -------------------------------------------------------------------- - dnl Check for libhaildb - dnl -------------------------------------------------------------------- - - AC_ARG_ENABLE([libhaildb], - [AS_HELP_STRING([--disable-libhaildb], - [Build with libhaildb support @<:@default=on@:>@])], - [ac_enable_libhaildb="$enableval"], - [ac_enable_libhaildb="yes"]) - - - AS_IF([test "x$ac_enable_libhaildb" = "xyes"],[ - AC_LIB_HAVE_LINKFLAGS(haildb,,[ - #include - ],[ - ib_update_table_statistics(NULL); - ]) - AS_IF([test "x${ac_cv_libhaildb}" = "xyes"],[ - AC_DEFINE([HAVE_HAILDB_H],[1],[Do we have haildb.h]) - ]) - ],[ - ac_cv_libhaildb="no" - ]) - AM_CONDITIONAL(HAVE_LIBHAILDB, [test "x${ac_cv_libhaildb}" = "xyes"]) -]) - -AC_DEFUN([PANDORA_HAVE_LIBHAILDB],[ - AC_REQUIRE([_PANDORA_SEARCH_LIBHAILDB]) -]) - -AC_DEFUN([PANDORA_REQUIRE_LIBHAILDB],[ - AC_REQUIRE([PANDORA_HAVE_LIBHAILDB]) - AS_IF([test "x${ac_cv_libhaildb}" = "xno"], - AC_MSG_ERROR([libhaildb 2.3.2 or later is required for ${PACKAGE}])) -]) diff --git a/m4/pandora_have_libpcre.m4 b/m4/pandora_have_libpcre.m4 deleted file mode 100644 index bfa733a1..00000000 --- a/m4/pandora_have_libpcre.m4 +++ /dev/null @@ -1,73 +0,0 @@ -dnl Copyright (C) 2009 Sun Microsystems, Inc. -dnl This file is free software; Sun Microsystems, Inc. -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -#-------------------------------------------------------------------- -# Check for libpcre -#-------------------------------------------------------------------- - - -AC_DEFUN([_PANDORA_SEARCH_LIBPCRE],[ - AC_REQUIRE([AC_LIB_PREFIX]) - - AC_LIB_HAVE_LINKFLAGS(pcre,, - [#include ], - [ - pcre *re= NULL; - pcre_version(); - ]) - AS_IF([test "x$ac_cv_libpcre" = "xno"], - [ - unset ac_cv_libpcre - unset HAVE_LIBPCRE - unset LIBPCRE - unset LIBPCRE_PREFIX - unset LTLIBPCRE - AC_LIB_HAVE_LINKFLAGS(pcre,, - [#include ], - [ - pcre *re= NULL; - pcre_version(); - ]) - AS_IF([test "x$ac_cv_libpcre" = "xyes"], [ - ac_cv_pcre_location="" - ]) - ],[ - ac_cv_pcre_location="" - ]) - - AM_CONDITIONAL(HAVE_LIBPCRE, [test "x${ac_cv_libpcre}" = "xyes"]) -]) - -AC_DEFUN([_PANDORA_HAVE_LIBPCRE],[ - - AC_ARG_ENABLE([libpcre], - [AS_HELP_STRING([--disable-libpcre], - [Build with libpcre support @<:@default=on@:>@])], - [ac_enable_libpcre="$enableval"], - [ac_enable_libpcre="yes"]) - - _PANDORA_SEARCH_LIBPCRE -]) - - -AC_DEFUN([PANDORA_HAVE_LIBPCRE],[ - AC_REQUIRE([_PANDORA_HAVE_LIBPCRE]) -]) - -AC_DEFUN([_PANDORA_REQUIRE_LIBPCRE],[ - ac_enable_libpcre="yes" - _PANDORA_SEARCH_LIBPCRE - - AS_IF([test x$ac_cv_libpcre = xno],[ - AC_MSG_ERROR([libpcre is required for ${PACKAGE}. On Debian this can be found in libpcre3-dev. On RedHat this can be found in pcre-devel.]) - ],[ - AC_DEFINE_UNQUOTED(PCRE_HEADER,[${ac_cv_pcre_location}], - [Location of pcre header]) - ]) -]) - -AC_DEFUN([PANDORA_REQUIRE_LIBPCRE],[ - AC_REQUIRE([_PANDORA_REQUIRE_LIBPCRE]) -]) -- 2.30.2