free the intermediate base64 font buffer
[mage.git] / config.def.h
1 /* can also be changed by adding -D"$MACRO_NAME"=# to CFLAGS */
2 #ifndef PORT
3 #define PORT 8080
4 #endif
5 #ifndef PATH
6 #define PATH "/mage/"
7 #endif
8 #ifndef NUM_THREADS
9 #define NUM_THREADS 2
10 #endif
11 #ifndef MAX_QUEUE
12 #define MAX_QUEUE 128
13 #endif
14 #ifndef BUFFER_SIZE
15 #define BUFFER_SIZE 4096
16 #endif
17
18 /*
19 * remember to use absolute paths when deploying
20 * daemons change their current directory to root (/)
21 */
22
23 static const char fontpath[] = "./example/Tuffy_Bold.ttf";
24
25 static const char *imgpaths[] = {
26 "./example/1.png",
27 "./example/2.png"
28 };