]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
cleanup: remove old files.
authorAdam Sutton <dev@adamsutton.me.uk>
Wed, 16 Jan 2013 09:47:35 +0000 (09:47 +0000)
committerAdam Sutton <dev@adamsutton.me.uk>
Wed, 16 Jan 2013 09:47:35 +0000 (09:47 +0000)
support/dataroot/bundle.c [deleted file]
support/dataroot/datadir.c [deleted file]
support/dataroot/wd.c [deleted file]

diff --git a/support/dataroot/bundle.c b/support/dataroot/bundle.c
deleted file mode 100644 (file)
index 72abeff..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-const char *tvheadend_dataroot(void)
-{
-  return (void *)0;
-} 
diff --git a/support/dataroot/datadir.c b/support/dataroot/datadir.c
deleted file mode 100644 (file)
index ffb519b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#include "config.h"
-#include "filebundle.h"
-
-filebundle_entry_t *filebundle_root = NULL;
-
-const char *tvheadend_dataroot(void)
-{
-  return TVHEADEND_DATADIR;
-}
-
diff --git a/support/dataroot/wd.c b/support/dataroot/wd.c
deleted file mode 100644 (file)
index a8470e9..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <string.h>
-#include <unistd.h>
-#include <assert.h>
-
-#include "filebundle.h"
-
-filebundle_entry_t *filebundle_root = NULL;
-
-const char *tvheadend_dataroot(void)
-{
-  static char cwd[256] = { 0 };
-  if (!*cwd) {
-    assert(getcwd(cwd, 254));
-  }
-  return cwd;
-}