Removed spurrious old file.
authorMonty Taylor <mordred@inaugust.com>
Mon, 10 Aug 2009 21:21:46 +0000 (14:21 -0700)
committerMonty Taylor <mordred@inaugust.com>
Mon, 10 Aug 2009 21:21:46 +0000 (14:21 -0700)
m4/pandora_have_sqlite.m4 [deleted file]

diff --git a/m4/pandora_have_sqlite.m4 b/m4/pandora_have_sqlite.m4
deleted file mode 100644 (file)
index 8cfaddd..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-dnl  Copyright (C) 2009 Sun Microsystems
-dnl This file is free software; Sun Microsystems
-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_SQLITE],[
-  AC_REQUIRE([AC_LIB_PREFIX])
-
-  AC_LIB_HAVE_LINKFLAGS(sqlite3,,[
-    #include <stdio.h>
-    #include <sqlite3.h>
-  ],[
-    sqlite3 *db;
-    sqlite3_open(NULL, &db);
-  ])
-
-  AM_CONDITIONAL(HAVE_LIBSQLITE3, [test "x${ac_cv_libsqlite3}" = "xyes"])
-
-])
-
-AC_DEFUN([PANDORA_HAVE_SQLITE],[
-  AC_REQUIRE([_PANDORA_SEARCH_SQLITE])
-])