aboutsummaryrefslogtreecommitdiff
path: root/src/backend_libjpeg.c
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2019-02-23 21:04:06 +0000
committerHarry Jeffery <harry@exec64.co.uk>2019-02-23 21:04:10 +0000
commitcd0684a2cbd4e68a51ef595c32c0faf1bf1ac41a (patch)
treef8839b2a666ad1b8bc6c390d76835f607bc9e76b /src/backend_libjpeg.c
parent28eb7b50dcc91c2c869721d9c62095b7dc29f3cc (diff)
downloadimv-cd0684a2cbd4e68a51ef595c32c0faf1bf1ac41a.tar.gz
Makefile: Don't use $(wildcard)
Diffstat (limited to 'src/backend_libjpeg.c')
-rw-r--r--src/backend_libjpeg.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/backend_libjpeg.c b/src/backend_libjpeg.c
index ba3b1f9..d1e0b17 100644
--- a/src/backend_libjpeg.c
+++ b/src/backend_libjpeg.c
@@ -8,8 +8,6 @@
#include <unistd.h>
#include <fcntl.h>
-#ifdef IMV_BACKEND_LIBJPEG
-
#include <turbojpeg.h>
struct private {
@@ -227,12 +225,3 @@ const struct imv_backend *imv_backend_libjpeg(void)
{
return &libjpeg_backend;
}
-
-#else
-
-const struct imv_backend *imv_backend_libjpeg(void)
-{
- return NULL;
-}
-
-#endif