Changeset 106
- Timestamp:
- 02/05/06 07:06:25 (3 years ago)
- Files:
-
- fastphoto/trunk/src/Makefile.am (modified) (1 diff)
- fastphoto/trunk/src/cache.c (added)
- fastphoto/trunk/src/cache.h (added)
- fastphoto/trunk/src/cgi.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fastphoto/trunk/src/Makefile.am
r100 r106 6 6 bin_PROGRAMS = fastphoto 7 7 8 noinst_HEADERS = c gi.h resize.h8 noinst_HEADERS = cache.h cgi.h resize.h 9 9 10 fastphoto_SOURCES = main.c c gi.c resize.c10 fastphoto_SOURCES = main.c cache.c cgi.c resize.c 11 11 fastphoto_LDADD = $(EPEG_LIBS) fastphoto/trunk/src/cgi.c
r105 r106 4 4 5 5 #include "fastphoto.h" 6 #include "cache.h" 6 7 7 8 #define CONTENT_TYPE_JPEG "Content-Type: image/jpeg\n" … … 74 75 75 76 params->infile = path_translated; 76 params->outfile = "/tmp/cache.jpg";77 params->outfile = NULL; 77 78 params->x = 0; 78 79 params->y = 0; 79 80 80 81 parse_query (params, query_string); 82 83 cache_init (params); 81 84 82 85 return 1;
