Fixed issue #73

This commit is contained in:
Bert Münnich 2012-12-27 16:34:51 +01:00
parent b542d63f96
commit cd929eabfe
4 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,7 @@ PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
CC = gcc
CFLAGS = -ansi -Wall -pedantic -O2 -I$(PREFIX)
CFLAGS = -Wall -pedantic -O2 -I$(PREFIX)
LDFLAGS = -L$(PREFIX)
LIBS = -lX11 -lImlib2 -lgif

2
main.c
View File

@ -29,11 +29,11 @@
#include <X11/Xutil.h>
#include <X11/keysym.h>
#include "types.h"
#include "commands.h"
#include "image.h"
#include "options.h"
#include "thumbs.h"
#include "types.h"
#include "util.h"
#include "window.h"
#include "config.h"

View File

@ -19,8 +19,8 @@
#ifndef OPTIONS_H
#define OPTIONS_H
#include "image.h"
#include "types.h"
#include "image.h"
typedef struct {
/* file list: */

View File

@ -1,6 +1,10 @@
#ifndef TYPES_H
#define TYPES_H
#undef bool
#undef false
#undef true
typedef enum {
false,
true