diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-14 08:19:03 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-14 08:19:03 +0000 |
commit | 696497e2c8e02609edf2437f53a3f49e722b9b63 (patch) | |
tree | 0ee8d5caf99e3900f1a74cd4565637ab09e19608 /x11/xstroke/files | |
parent | Update to 0.4.8pl9. (diff) |
add xstroke 0.5.12
Fullscreen gesture recognition
Notes
Notes:
svn path=/head/; revision=59067
Diffstat (limited to 'x11/xstroke/files')
-rw-r--r-- | x11/xstroke/files/patch-Imakefile | 15 | ||||
-rw-r--r-- | x11/xstroke/files/patch-etc::Imakefile | 8 | ||||
-rw-r--r-- | x11/xstroke/files/patch-regex_feature.c | 10 | ||||
-rw-r--r-- | x11/xstroke/files/patch-regex_feature.h | 10 |
4 files changed, 43 insertions, 0 deletions
diff --git a/x11/xstroke/files/patch-Imakefile b/x11/xstroke/files/patch-Imakefile new file mode 100644 index 000000000000..7d6a7e68e121 --- /dev/null +++ b/x11/xstroke/files/patch-Imakefile @@ -0,0 +1,15 @@ +--- Imakefile.orig Tue Dec 11 06:17:11 2001 ++++ Imakefile Tue May 14 16:06:49 2002 +@@ -1,9 +1,10 @@ + #define IHaveSubdirs + SUBDIRS=etc +-CDEBUGFLAGS=-g -ansi -ansi-error -Wall -pedantic ++CDEBUGFLAGS=%%CFLAGS%% + YFLAGS=-d +-LOCAL_LIBRARIES=$(XTESTLIB) $(XLIB) $(XRENDERLIB) $(XFTLIB) -lm -ldl -lpthread ++LOCAL_LIBRARIES=$(XTESTLIB) $(XLIB) $(XRENDERLIB) $(XFTLIB) -lm -lpthread %%LDFLAGS%% + FLEX=flex ++YACC=bison -y + OBJS=xstroke.o args.o backing.o bresenham.o brush.o control_win.o stroke.o matrix.o \ + action.o action_item.o feature.o gesture.o log.o option.o sprintf_alloc.o \ + rec.o rec_callback.o rec_history.o rec_lex.o rec_mode.o rec_parse.o \ diff --git a/x11/xstroke/files/patch-etc::Imakefile b/x11/xstroke/files/patch-etc::Imakefile new file mode 100644 index 000000000000..42af7775852c --- /dev/null +++ b/x11/xstroke/files/patch-etc::Imakefile @@ -0,0 +1,8 @@ +--- etc/Imakefile.orig Tue May 14 16:16:09 2002 ++++ etc/Imakefile Tue May 14 16:16:18 2002 +@@ -1,4 +1,4 @@ +-CONFDIR=/etc/xstroke ++CONFDIR=%%PREFIX%%/etc/xstroke + + all:: + diff --git a/x11/xstroke/files/patch-regex_feature.c b/x11/xstroke/files/patch-regex_feature.c new file mode 100644 index 000000000000..7e6e0b8a8a4f --- /dev/null +++ b/x11/xstroke/files/patch-regex_feature.c @@ -0,0 +1,10 @@ +--- regex_feature.c.orig Tue May 14 16:03:27 2002 ++++ regex_feature.c Tue May 14 16:03:58 2002 +@@ -13,6 +13,7 @@ + GNU General Public License for more details. + */ + ++#include <sys/types.h> + #include <stdio.h> + #include <stdlib.h> + #include <regex.h> diff --git a/x11/xstroke/files/patch-regex_feature.h b/x11/xstroke/files/patch-regex_feature.h new file mode 100644 index 000000000000..d28c0974606d --- /dev/null +++ b/x11/xstroke/files/patch-regex_feature.h @@ -0,0 +1,10 @@ +--- regex_feature.h.orig Tue May 14 16:05:14 2002 ++++ regex_feature.h Tue May 14 16:05:29 2002 +@@ -16,6 +16,7 @@ + #ifndef REGEX_FEATURE_H + #define REGEX_FEATURE_H + ++#include <sys/types.h> + #include <regex.h> + + regex_t *regex_feature_alloc(char *regex_str); |