summaryrefslogtreecommitdiff
path: root/image/bmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'image/bmp.c')
-rw-r--r--image/bmp.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/image/bmp.c b/image/bmp.c
index fb62da89f..1a4152649 100644
--- a/image/bmp.c
+++ b/image/bmp.c
@@ -21,25 +21,24 @@
* Content for image/bmp (implementation)
*/
-#include "utils/config.h"
-#ifdef WITH_BMP
-
#include <assert.h>
#include <string.h>
#include <stdbool.h>
#include <stdlib.h>
#include <libnsbmp.h>
+
#include "utils/config.h"
#include "content/content_protected.h"
#include "content/hlcache.h"
#include "desktop/plotters.h"
-#include "image/bitmap.h"
-#include "image/bmp.h"
#include "utils/log.h"
#include "utils/messages.h"
#include "utils/talloc.h"
#include "utils/utils.h"
+#include "image/bitmap.h"
+#include "image/bmp.h"
+
typedef struct nsbmp_content {
struct content base;
@@ -275,5 +274,3 @@ static const char *nsbmp_types[] = {
};
CONTENT_FACTORY_REGISTER_TYPES(nsbmp, nsbmp_types, nsbmp_content_handler);
-
-#endif