wmcliphist: Switch from angled brackets to quotes for local includes.

This commit is contained in:
Doug Torrance 2014-11-22 20:48:41 -06:00 committed by Carlos R. Mafra
parent cf6aed73bc
commit a134f7433b
9 changed files with 24 additions and 24 deletions

View file

@ -1,6 +1,6 @@
CC ?= gcc CC ?= gcc
PREFIX = /usr/local PREFIX = /usr/local
INCLUDES = `pkg-config --cflags gtk+-2.0 x11` -I. -Ifoodock INCLUDES = `pkg-config --cflags gtk+-2.0 x11`
# for normal use # for normal use
CFLAGS += -Wall -ansi -pedantic $(INCLUDES) CFLAGS += -Wall -ansi -pedantic $(INCLUDES)

View file

@ -1,4 +1,4 @@
#include <wmcliphist.h> #include "wmcliphist.h"
#include <time.h> #include <time.h>
/* when true, clipboard will be automatically taken up by wmcliphist */ /* when true, clipboard will be automatically taken up by wmcliphist */

View file

@ -1,4 +1,4 @@
#include <wmcliphist.h> #include "wmcliphist.h"
#include <gdk/gdkkeysyms.h> #include <gdk/gdkkeysyms.h>

View file

@ -1,4 +1,4 @@
#include <wmcliphist.h> #include "wmcliphist.h"
int autosave_period = 120; int autosave_period = 120;

View file

@ -1,4 +1,4 @@
#include <wmcliphist.h> #include "wmcliphist.h"
#include <gdk/gdkkeysyms.h> #include <gdk/gdkkeysyms.h>
/* Exec on hotkey? */ /* Exec on hotkey? */

View file

@ -1,4 +1,4 @@
#include <wmcliphist.h> #include "wmcliphist.h"
#include <sys/stat.h> #include <sys/stat.h>
#define RC_BUF_SIZE 256 #define RC_BUF_SIZE 256

View file

@ -1,4 +1,4 @@
#include <wmcliphist.h> #include "wmcliphist.h"
/* /*
* converts text in UTF-8 to charset by actual locale * converts text in UTF-8 to charset by actual locale

View file

@ -2,25 +2,25 @@
* (c) 2001 Michal Krause <michal@krause.cz> * (c) 2001 Michal Krause <michal@krause.cz>
*/ */
#include <wmcliphist.h> #include "wmcliphist.h"
#include <icon/ico_60x60_mask.xbm> #include "icon/ico_60x60_mask.xbm"
#include <icon/ico_60x60_black.xpm> #include "icon/ico_60x60_black.xpm"
#include <icon/ico_60x60_white.xpm> #include "icon/ico_60x60_white.xpm"
#include <icon/ico_60x60_gray.xpm> #include "icon/ico_60x60_gray.xpm"
#include <icon/ico_40x40_mask.xbm> #include "icon/ico_40x40_mask.xbm"
#include <icon/ico_40x40_black.xpm> #include "icon/ico_40x40_black.xpm"
#include <icon/ico_40x40_white.xpm> #include "icon/ico_40x40_white.xpm"
#include <icon/ico_40x40_gray.xpm> #include "icon/ico_40x40_gray.xpm"
#include <icon/ico_30x30_mask.xbm> #include "icon/ico_30x30_mask.xbm"
#include <icon/ico_30x30_black.xpm> #include "icon/ico_30x30_black.xpm"
#include <icon/ico_30x30_white.xpm> #include "icon/ico_30x30_white.xpm"
#include <icon/ico_30x30_gray.xpm> #include "icon/ico_30x30_gray.xpm"
#include <icon/ico_16x16_mask.xbm> #include "icon/ico_16x16_mask.xbm"
#include <icon/ico_16x16.xpm> #include "icon/ico_16x16.xpm"
/* /*
* print some help * print some help

View file

@ -20,9 +20,9 @@
#include <gdk/gdk.h> #include <gdk/gdk.h>
#include <gdk/gdkx.h> #include <gdk/gdkx.h>
#include <foodock.h> #include "foodock/foodock.h"
#include <debug.h> #include "debug.h"
#define VERSION 0x0003 #define VERSION 0x0003