blob: af2ff2e6ac1e1f5eb9ad714866d60a32b188891b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#
# Patch managed by http://www.holgerschurig.de/patcher.html
#
--- camE-1.7/webcam.c~compile
+++ camE-1.7/webcam.c
@@ -39,6 +39,13 @@
#define VERSION "1.7"
+#ifndef TRUE
+# define TRUE 1
+#endif
+#ifndef FALSE
+# define FALSE 0
+#endif
+
void log(char *fmt,
...);
--- camE-1.7/Makefile~compile
+++ camE-1.7/Makefile
@@ -5,6 +5,7 @@
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
mandir=${prefix}/man
+docdir=${prefix}/doc/camE-1.7
CC=gcc
CFLAGS=-O2 -g -Wall
@@ -34,6 +35,9 @@
install: all
$(INSTALL_DIR) $(DESTDIR)$(bindir)
$(INSTALL_PROGRAM) camE $(DESTDIR)$(bindir)
+ $(INSTALL_DIR) $(DESTDIR)$(docdir)
+ $(INSTALL_DATA) camE_text.style camE_title.style \
+ example.camErc.ssh example.camErc $(DESTDIR)$(docdir)
clean:
-rm -f $(OBJS) *.moc *~ core* *.bak TAGS camE
|