Last change
on this file since 516 was
465,
checked in by djay, 11 years ago
|
Add the optional YAML ZCFG support #4 and the zcfg2yaml converter. Return error messages that enable the service provider to quickly identify the root cause of errors due to configuration file syntax #90. Fix logic in addMapToMap #91. Enable multiple range definition using default and supported blocks. Add the lastest revision number in version.h (available from Python ZOO-API as zoo.VERSION).
|
File size:
991 bytes
|
Line | |
---|
1 | OS:=$(shell uname -s) |
---|
2 | ifeq ($(OS),Darwin) |
---|
3 | MACOS_LD_FLAGS=-lintl |
---|
4 | MACOS_LD_NET_FLAGS=-framework SystemConfiguration -framework CoreFoundation |
---|
5 | MACOS_CFLAGS=-arch $(shell uname -m) |
---|
6 | endif |
---|
7 | |
---|
8 | YAML_CFLAGS=@YAML_CPPFLAGS@ |
---|
9 | YAML_LDFLAGS=@YAML_LDFLAGS@ |
---|
10 | YAML_FILE=@YAML_FILE@ |
---|
11 | YAML_FILE1=@YAML_FILE1@ |
---|
12 | |
---|
13 | GDAL_CFLAGS=@GDAL_CFLAGS@ |
---|
14 | GDAL_LIBS=@GDAL_LIBS@ |
---|
15 | |
---|
16 | XML2CFLAGS=@XML2_CPPFLAGS@ |
---|
17 | XML2LDFLAGS=@XML2_LDFLAGS@ |
---|
18 | |
---|
19 | PYTHONCFLAGS=@PYTHON_CPPFLAGS@ |
---|
20 | PYTHONLDFLAGS=@PYTHON_LDFLAGS@ |
---|
21 | PYTHON_ENABLED=@PYTHON_ENABLED@ |
---|
22 | PYTHON_FILE=@PYTHON_FILE@ |
---|
23 | |
---|
24 | RUBYCFLAGS=@RUBY_CPPFLAGS@ |
---|
25 | RUBYLDFLAGS=@RUBY_LDFLAGS@ |
---|
26 | RUBY_ENABLED=@RUBY_ENABLED@ |
---|
27 | RUBY_FILE=@RUBY_FILE@ |
---|
28 | |
---|
29 | JS_ENABLED=@JS_ENABLED@ |
---|
30 | JSCFLAGS=@JS_CPPFLAGS@ |
---|
31 | JSLDFLAGS=@JS_LDFLAGS@ |
---|
32 | JS_FILE=@JS_FILE@ |
---|
33 | ifeq ($(JS_ENABLED),-DUSE_JS) |
---|
34 | JS_LDFLAGS=${ZRPATH}/zoo-kernel/ulinet.o ${ZRPATH}/zoo-kernel/service_internal_js.o -lcurl |
---|
35 | endif |
---|
36 | |
---|
37 | MS_CFLAGS=@MS_CFLAGS@ |
---|
38 | MS_LDFLAGS=@MS_LIBS@ |
---|
39 | MS_FILE=@MS_FILE@ |
---|
40 | |
---|
41 | ZOO_CFLAGS=-I${ZRPATH}/../thirds/cgic206/ -I${ZRPATH}/zoo-kernel/ |
---|
42 | ZOO_LDFLAGS=-lcrypto |
---|
Note: See
TracBrowser
for help on using the repository browser.