Changeset 743 for trunk/zoo-project/zoo-services/qrencode
- Timestamp:
- Dec 3, 2015, 8:44:39 AM (9 years ago)
- Location:
- trunk/zoo-project/zoo-services/qrencode
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-services/qrencode/Makefile
r471 r743 1 1 ZRPATH=../.. 2 2 include ${ZRPATH}/zoo-kernel/ZOOMakefile.opts 3 CFLAGS= ${ZOO_CFLAGS} ${XML2CFLAGS} ${GDAL_CFLAGS} ${PYTHONCFLAGS} -DLINUX_FREE_ISSUE #-DDEBUG3 CFLAGS=-I${INST_INCLUDE} ${ZOO_CFLAGS} ${XML2CFLAGS} ${GDAL_CFLAGS} ${PYTHONCFLAGS} -DLINUX_FREE_ISSUE #-DDEBUG 4 4 CC=gcc 5 5 6 6 cgi-env/qrencode.zo: qrenc-service.c 7 g++ -DZOO_SERVICE_PROVIDER ${CFLAGS} -shared -fpic -o cgi-env/qrencode.zo ./qrenc-service.c -lqrencode ${GDAL_LIBS} -lpng ${MACOS_LD_FLAGS} 7 g++ -DZOO_SERVICE_PROVIDER ${CFLAGS} -shared -fpic -o cgi-env/qrencode.zo ./qrenc-service.c -lqrencode ${GDAL_LIBS} -lpng ${MACOS_LD_FLAGS} -L${INST_LIB} -lzoo_service 8 8 9 9 clean: -
trunk/zoo-project/zoo-services/qrencode/qrenc-service.c
r385 r743 25 25 # include "config.h" 26 26 #endif 27 #include "string.h" 27 28 #include <stdio.h> 28 29 #include <stdlib.h> 29 30 #include <png.h> 30 31 #include <getopt.h> 32 #include "qrencode.h" 31 33 32 34 #ifdef ZOO_SERVICE_PROVIDER … … 41 43 #endif 42 44 43 #include "qrencode.h"44 45 45 46 #define INCHES_PER_METER (100.0/2.54)
Note: See TracChangeset
for help on using the changeset viewer.