add --cflags - to make things will break without out - we can remove at 3.x

This commit is contained in:
Dane Springmeyer 2013-03-02 23:17:03 -05:00
parent e59d979969
commit e703629b47

View file

@ -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}
;;