From 5cac64189701682ebc7c89f4daaddc426fc5073e Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Sat, 6 Oct 2012 10:09:07 -0400 Subject: [PATCH] Remove unused m4 --- m4/pandora_have_libz.m4 | 51 ----------------------------------------- m4/pandora_use_pipe.m4 | 36 ----------------------------- 2 files changed, 87 deletions(-) delete mode 100644 m4/pandora_have_libz.m4 delete mode 100644 m4/pandora_use_pipe.m4 diff --git a/m4/pandora_have_libz.m4 b/m4/pandora_have_libz.m4 deleted file mode 100644 index 6122120a..00000000 --- a/m4/pandora_have_libz.m4 +++ /dev/null @@ -1,51 +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 libz -#-------------------------------------------------------------------- - - -AC_DEFUN([_PANDORA_SEARCH_LIBZ],[ - AC_REQUIRE([AC_LIB_PREFIX]) - - AC_LIB_HAVE_LINKFLAGS(z,, - [ - #include - ],[ - crc32(0, Z_NULL, 0); - ]) - - AM_CONDITIONAL(HAVE_LIBZ, [test "x${ac_cv_libz}" = "xyes"]) -]) - -AC_DEFUN([_PANDORA_HAVE_LIBZ],[ - - AC_ARG_ENABLE([libz], - [AS_HELP_STRING([--disable-libz], - [Build with libz support @<:@default=on@:>@])], - [ac_enable_libz="$enableval"], - [ac_enable_libz="yes"]) - - _PANDORA_SEARCH_LIBZ -]) - - -AC_DEFUN([PANDORA_HAVE_LIBZ],[ - AC_REQUIRE([_PANDORA_HAVE_LIBZ]) -]) - -AC_DEFUN([_PANDORA_REQUIRE_LIBZ],[ - ac_enable_libz="yes" - _PANDORA_SEARCH_LIBZ - - AS_IF([test x$ac_cv_libz = xno],[ - AC_MSG_ERROR([libz is required for ${PACKAGE}. On Debian this can be found in zlib1g-dev. On RedHat this can be found in zlib-devel.]) - ]) -]) - -AC_DEFUN([PANDORA_REQUIRE_LIBZ],[ - AC_REQUIRE([_PANDORA_REQUIRE_LIBZ]) -]) diff --git a/m4/pandora_use_pipe.m4 b/m4/pandora_use_pipe.m4 deleted file mode 100644 index f877b7f6..00000000 --- a/m4/pandora_use_pipe.m4 +++ /dev/null @@ -1,36 +0,0 @@ -dnl -*- mode: m4; c-basic-offset: 2; indent-tabs-mode: nil; -*- -dnl vim:expandtab:shiftwidth=2:tabstop=2:smarttab: -dnl -dnl pandora-build: A pedantic build system -dnl Copyright (C) 2009 Sun Microsystems, Inc. -dnl This file is free software; Sun Microsystem -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl From Monty Taylor -dnl -dnl Test if we can Use -pipe to avoid making temp files during the compile. -dnl Should speed up compile on slower disks - -AC_DEFUN([PANDORA_USE_PIPE],[ - - AS_IF([test "$GCC" = "yes"],[ - AC_CACHE_CHECK([for working -pipe], [pandora_cv_use_pipe], [ - AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ -#include - -int main(int argc, char** argv) -{ - (void) argc; (void) argv; - return 0; -} - ]])], - [pandora_cv_use_pipe=yes], - [pandora_cv_use_pipe=no]) - ]) - AS_IF([test "$pandora_cv_use_pipe" = "yes"],[ - AM_CFLAGS="-pipe ${AM_CFLAGS}" - AM_CXXFLAGS="-pipe ${AM_CXXFLAGS}" - ]) - ]) -]) -- 2.30.2