add --cflags - to make things will break without out - we can remove at 3.x
This commit is contained in:
parent
e59d979969
commit
e703629b47
1 changed files with 6 additions and 1 deletions
|
@ -27,7 +27,8 @@ Known values for OPTION are:
|
|||
--libs print library linking information
|
||||
--dep-libs print library linking information for Mapnik dependencies
|
||||
--ldflags print library paths (-L) information
|
||||
--cxxflags print pre-processor and compiler flags
|
||||
--cxxflags print pre-processor and compiler flags
|
||||
--cflags print pre-processor and compiler flags (same as cxxflags, for back-compatibility)
|
||||
--fonts print default fonts directory
|
||||
--input-plugins print default input plugins directory
|
||||
--json print all config options as json object
|
||||
|
@ -93,6 +94,10 @@ while test $# -gt 0; do
|
|||
echo -I${CONFIG_MAPNIK_INCLUDE} -I${CONFIG_MAPNIK_AGG_INCLUDE} ${CONFIG_OTHER_INCLUDES}
|
||||
;;
|
||||
|
||||
--cflags)
|
||||
echo -I${CONFIG_MAPNIK_INCLUDE} -I${CONFIG_MAPNIK_AGG_INCLUDE} ${CONFIG_OTHER_INCLUDES}
|
||||
;;
|
||||
|
||||
--libs)
|
||||
echo -L${CONFIG_MAPNIK_LIB} -l${CONFIG_MAPNIK_LIBNAME}
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue