1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
|
AC_INIT(libgdiplus, [6.0.4],
[https://github.com/mono/mono/issues/new])
AC_CONFIG_SRCDIR([README.md])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_SYSTEM
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_HEADERS([config.h])
AM_MAINTAINER_MODE
AM_PROG_LIBTOOL
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_C_BIGENDIAN
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
if test "x$PKG_CONFIG" = "xno"; then
AC_MSG_ERROR([You need to install pkg-config])
fi
GLIB_REQUIRED_VERSION="2.2.3"
PKG_CHECK_MODULES(BASE_DEPENDENCIES, glib-2.0 >= $GLIB_REQUIRED_VERSION)
GDIPLUS_LIBS="`$PKG_CONFIG --libs glib-2.0 `"
GDIPLUS_CFLAGS="`$PKG_CONFIG --cflags glib-2.0 `"
CAIRO_REQUIRED_VERSION="1.6.4"
PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRED_VERSION)
# Optional use of Pango's text rendering on top of Cairo
AC_ARG_WITH(pango, [ --with-pango use Pango to measure and draw text],[text_v=pango],[text_v=default])
GDIPLUS_CFLAGS="$GDIPLUS_CFLAGS -Wall -Wextra -Wno-unused-parameter -Wno-sign-compare -std=gnu99"
AC_ARG_ENABLE(warnaserror, AS_HELP_STRING([--enable-warnaserror],[Enable treating warnings as errors.]),[warnaserror=yes],[warnaserror=no])
if test $warnaserror = "yes"; then
GDIPLUS_CFLAGS="$GDIPLUS_CFLAGS -Werror -Wno-unknown-warning-option -Wno-clobbered -Wno-typedef-redefinition"
fi
AC_ARG_ENABLE(asan, AS_HELP_STRING([--enable-asan],[Enable address sanitizer.]),[asan=yes],[asan=no])
if test $asan = "yes"; then
GDIPLUS_CFLAGS="$GDIPLUS_CFLAGS -fsanitize=address,signed-integer-overflow,undefined -g -O1"
LDFLAGS="$LDFLAGS -fsanitize=address,signed-integer-overflow,undefined"
fi
AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage],[Enable code coverage.]),[coverage=yes],[coverage=no])
if test $coverage = "yes"; then
GDIPLUS_CFLAGS="$GDIPLUS_CFLAGS --coverage -g"
LDFLAGS="$LDFLAGS --coverage"
fi
CAIRO_LIBS="`pkg-config --libs cairo `"
CAIRO_CFLAGS="`pkg-config --cflags cairo `"
cairo_info="`pkg-config --modversion cairo ` (system)"
GDIPLUS_PKG_REQ="cairo"
PANGO_REQUIRED_VERSION="1.40.14"
PANGO_MAX_VERSION="1.43"
if test $text_v = "pango"; then
PKG_CHECK_MODULES(PANGO, pango >= $PANGO_REQUIRED_VERSION)
fi
if test $text_v = "default"; then
PKG_CHECK_MODULES(PANGO, pango >= $PANGO_REQUIRED_VERSION && pango <= $PANGO_MAX_VERSION,
[text_v=pango], [text_v=cairo])
fi
if test $text_v = "pango"; then
PANGO_LIBS="`pkg-config --libs pangocairo `"
PANGO_CFLAGS="`pkg-config --cflags pangocairo `"
AC_DEFINE(USE_PANGO_RENDERING,1,[Use Pango to measure and draw text])
GDIPLUS_PKG_REQ="$GDIPLUS_PKG_REQ pangocairo-1.0"
fi
AM_CONDITIONAL(USE_PANGO_RENDERING, [test $text_v = "pango"])
GDIPLUS_LIBS="$GDIPLUS_LIBS $CAIRO_LIBS $PANGO_LIBS"
GDIPLUS_CFLAGS="$GDIPLUS_CFLAGS $CAIRO_CFLAGS $PANGO_CFLAGS"
# Fall back to using fontconfig/freetype-config if their .pc is not found
PKG_CHECK_MODULES(FONTCONFIG, fontconfig,
[fontconfig_pkgconfig=yes], [fontconfig_pkgconfig=no])
if test "x$FONTCONFIG" = "xno"; then
AC_PATH_PROG(FONTCONFIG_CONFIG, fontconfig-config, no)
if test "x$FONTCONFIG_CONFIG" = "xyes"; then
FONTCONFIG_CFLAGS="`fontconfig-config --cflags`"
FONTCONFIG_LIBS="`fontconfig-config --libs`"
fi
fi
AC_CHECK_LIB(fontconfig, FcInit)
AC_CHECK_FUNCS(FcFini)
PKG_CHECK_MODULES(FREETYPE2, freetype2,
[freetype2_pkgconfig=yes], freetype2_pkgconfig=no])
if test "x$FREETYPE2" = "xno"; then
AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no)
if test "x$FREETYPE_CONFIG" = "xyes"; then
FREETYPE2_CFLAGS="`freetype-config --cflags`"
FREETYPE2_LIBS="`freetype-config --libs`"
fi
fi
GDIPLUS_LIBS="$GDIPLUS_LIBS $FONTCONFIG_LIBS $FREETYPE2_LIBS"
GDIPLUS_CFLAGS="$GDIPLUS_CFLAGS $FONTCONFIG_CFLAGS $FREETYPE2_CFLAGS"
AC_CHECK_HEADERS(byteswap.h)
AC_SEARCH_LIBS(sqrt, m)
AC_MSG_CHECKING([host threading settings])
case "$host" in
*-*-mingw*|*-*-cygwin*)
AC_DEFINE_UNQUOTED(CYGWIN,1,[Win32])
AC_CHECK_LIB(intl, gettext)
;;
*-*-*netbsd*)
AC_DEFINE_UNQUOTED(BSDOS,1,[NetBSD])
;;
*-*-*freebsd*)
AC_DEFINE_UNQUOTED(BSDOS,1,[FreeBSD])
CFLAGS="-D_THREAD_SAFE $CFLAGS"
;;
*-*-*openbsd*)
AC_DEFINE_UNQUOTED(BSDOS,1,[OpenBSD])
CFLAGS="$CFLAGS"
LIBS="$LIBS"
;;
*-*-linux*)
AC_DEFINE_UNQUOTED(LINUX,1,[Linux])
AC_CHECK_LIB(pthread, pthread_create)
;;
*-*-solaris*)
AC_DEFINE_UNQUOTED(SOLARIS,1,[Solaris])
AC_DEFINE_UNQUOTED(_REENTRANT,1,[For libc reentrancy])
CFLAGS="-pthreads $CFLAGS"
;;
*-*-aix*|*-*-os400)
AC_DEFINE_UNQUOTED(AIX,1,[AIX or PASE])
# Specify a 64-bit build via GCC, as Mono is always 64-bit on AIX/PASE
CFLAGS="-D_THREAD_SAFE -maix64 $CFLAGS"
LDFLAGS="-maix64 $LDFLAGS"
# Like mono, don't use `OBJECT_MODE=64`, but specify 64-bit mode IBM binutils
# explictly instead.
AR="/usr/bin/ar -X64"
NM="/usr/bin/nm -X64"
;;
*-*-darwin*)
AC_DEFINE_UNQUOTED(OSX,1,[OS X])
no_libpng16=yes # workaround until we can upgrade the libpng used by bockbuild
;;
*)
AC_MSG_RESULT(Unrecognized host $host)
AC_DEFINE_UNQUOTED(OTHEROS,1,[Unknown])
;;
esac
# Apparently for BSD special handling needs to happen
# See http://archives/neohapsis.com/archives/openbsd/2001-11/2142.html
# by Miod Vallat <miod@online.fr>
AC_CACHE_CHECK(
[if compiler recognizes -pthread],
myapp_cv_gcc_pthread,
ac_save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -pthread"
AC_LANG_SAVE
AC_LANG_C
AC_TRY_LINK([#include <pthread.h>],
[void *p = pthread_create;],
myapp_cv_gcc_pthread=yes,
myapp_cv_gcc_pthread=no)
AC_LANG_RESTORE
CFLAGS=$ac_save_CFLAGS
)
if test $myapp_cv_gcc_pthread = yes
then
myapp_threads=""
CFLAGS="$CFLAGS -pthread"
else
AC_CHECK_LIB(pthread,pthread_create,myapp_threads=-lpthread,
[AC_CHECK_LIB(c_r,pthread_create,myapp_threads=-lc_r)])
fi
# sigsetjmp is a macro on some platforms, so can't use AC_CHECK_FUNCS
AC_MSG_CHECKING(for sigsetjmp)
AC_TRY_LINK([#include <setjmp.h>], [
sigjmp_buf env;
sigsetjmp(env, 0);
], gdip_ok=yes, gdip_ok=no)
AC_MSG_RESULT($gdip_ok)
if test "$gdip_ok" = "yes"; then
AC_DEFINE(HAVE_SIGSETJMP, 1, sigsetjmp is available)
fi
# when possible hide stuff we don't want to export
AC_MSG_CHECKING(for visibility __attribute__)
AC_TRY_COMPILE([], [
void __attribute__ ((visibility ("hidden"))) doit (void) {}
void main () { doit (); }
], [
have_visibility_hidden=yes
AC_MSG_RESULT(yes)
], [
have_visibility_hidden=no
AC_MSG_RESULT(no)
])
case "$host" in
i*86-*-*)
case $host_os in
solaris*)
# On solaris 10 x86, gcc prints a warning saying 'visibility attribute not supported on this configuration; ignored', but linking fails.
have_visibility_hidden=no
esac
;;
powerpc-*-*)
case $host_os in
aix*|os400*)
# XCOFF doesn't have this, but somehow it appears anyways
have_visibility_hidden=no
esac
;;
esac
if test "x$have_visibility_hidden" = "xyes"; then
AC_DEFINE(HAVE_VISIBILITY_HIDDEN, 1, [Support for the visibility ("hidden") attribute])
fi
AC_ARG_WITH(libexif,
[AC_HELP_STRING([--without-libexif], [disable EXIF support])])
dnl If the user doesn't force a --prefix= then assume the OS default for resolcing libtiff etc
case $prefix in
NONE) prefix=$ac_default_prefix ;;
esac
dnl Test for libjpeg (this needs to be checked before libtiff, since libtiff depends on libjpeg)
AC_ARG_WITH([libjpeg],
AS_HELP_STRING([--with-libjpeg=PREFIX],
[Prefix where libjpeg is installed, or 'no' to disable]),
[libjpeg_prefix="$withval"], [libjpeg_prefix="${prefix}"])
if test x$with_libjpeg != xno && test -z "$LIBJPEG"; then
JPEG_CFLAGS="-I${libjpeg_prefix}/include"
JPEG_LIBS="-L${libjpeg_prefix}/lib"
save_cflags=$CFLAGS; CFLAGS=$JPEG_CFLAGS
save_libs=$LIBS; LIBS=$JPEG_LIBS
AC_CHECK_LIB(jpeg, jpeg_destroy_decompress,
jpeg_ok=yes,
jpeg_ok=no
AC_MSG_WARN(*** JPEG loader will not be built (JPEG library not found) ***))
if test "$jpeg_ok" = yes; then
AC_MSG_CHECKING([for jpeglib.h])
AC_TRY_CPP(
[#include <stdio.h>
#undef PACKAGE
#undef VERSION
#undef HAVE_STDLIB_H
#include <jpeglib.h>],
jpeg_ok=yes,
jpeg_ok=no)
AC_MSG_RESULT($jpeg_ok)
if test "$jpeg_ok" = yes; then
JPEG='jpeg'; LIBJPEG="-ljpeg"
if test "$libjpeg_prefix" != "NONE"; then
LIBJPEG="$LIBJPEG -L$libjpeg_prefix"
fi
else
AC_MSG_WARN(*** JPEG loader will not be built (JPEG header file not found) ***)
fi
fi
CFLAGS=$save_cflags
LIBS=$save_libs
fi
if test x$JPEG != x; then
GDIPLUS_LIBS="$GDIPLUS_LIBS $LIBJPEG"
AC_DEFINE(HAVE_LIBJPEG, 1, Define if jpeg support is available)
else
jpeg_ok="no (Get it from http://freshmeat.net/projects/libjpeg)"
fi
dnl Test for libtiff
AC_ARG_WITH([libtiff],
AS_HELP_STRING([--with-libtiff=PREFIX],
[Prefix where libtiff is installed, or 'no' to disable]),
[libtiff_prefix="$withval"], [libtiff_prefix="${prefix}"])
if test x$with_libtiff != xno && test -z "$LIBTIFF"; then
TIFF_CFLAGS="-I${libjpeg_prefix}/include -I${libtiff_prefix}/include"
TIFF_LIBS="-L${libjpeg_prefix}/lib -L${libtiff_prefix}/lib"
save_cflags=$CFLAGS; CFLAGS=$TIFF_CFLAGS
save_libs=$LIBS; LIBS=$TIFF_LIBS
AC_CHECK_LIB(tiff, TIFFReadScanline,
[AC_CHECK_HEADER(tiffio.h,
TIFF='tiff'; LIBTIFF='-ltiff'; tiff_ok=yes,
AC_MSG_WARN(*** TIFF loader will not be built (TIFF header files not found) ***))],
[AC_CHECK_LIB(tiff, TIFFWriteScanline,
[AC_CHECK_HEADER(tiffio.h,
TIFF='tiff'; LIBTIFF='-ltiff -ljpeg -lz'; tiff_ok=yes,
AC_MSG_WARN(*** TIFF loader will not be built (TIFF header files not found) ***))],
[AC_CHECK_LIB(tiff34, TIFFFlushData,
[AC_CHECK_HEADER(tiffio.h,
TIFF='tiff'; LIBTIFF='-ltiff34 -ljpeg -lz'; tiff_ok=yes,
AC_MSG_WARN(*** TIFF loader will not be built (TIFF header files not found) ***))],
AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF library not found) ***), -lz -lm)], -ljpeg -lz -lm)], -lm)
CFLAGS=$save_cflags
LIBS=$save_libs
fi
if test x$TIFF != x; then
GDIPLUS_LIBS="$GDIPLUS_LIBS $LIBTIFF"
AC_DEFINE(HAVE_LIBTIFF, 1, Define if tiff support is available)
else
tiff_ok="no (Get it from http://www.libtiff.org/)"
fi
dnl Test for libgif or libungif
AC_ARG_WITH([libgif],
AS_HELP_STRING([--with-libgif=PREFIX],
[Prefix where libgif is installed, or 'no' to disable]),
[libgif_prefix="$withval"], [libgif_prefix="${prefix}"])
if test x$with_libgif != xno && test -z "$LIBGIF"; then
GIF_CFLAGS="-I${libgif_prefix}/include"
GIF_LIBS="-L${libgif_prefix}/lib"
save_cflags=$CFLAGS; CFLAGS=$GIF_CFLAGS
save_libs=$LIBS; LIBS=$GIF_LIBS
AC_CHECK_LIB(gif, DGifOpenFileName,
[AC_CHECK_HEADER(gif_lib.h,
GIF='gif'; LIBGIF='-lgif'; gif_ok=yes,
AC_MSG_WARN(*** GIF loader will not be built (giflibrary not found) ***))],
AC_MSG_WARN(*** GIF loader will not be built (giflibrary not found) ***))
AC_CHECK_LIB(ungif, DGifOpenFileName,
[AC_CHECK_HEADER(gif_lib.h,
GIF='ungif'; LIBGIF='-lungif'; gif_ok=yes,
AC_MSG_WARN(*** GIF loader will not be built (ungiflibrary not found) ***))],
AC_MSG_WARN(*** GIF loader will not be built (ungiflibrary not found) ***))
CFLAGS=$save_cflags
LIBS=$save_libs
fi
if test x$GIF != x; then
GDIPLUS_LIBS="$GDIPLUS_LIBS $LIBGIF"
AC_DEFINE(HAVE_LIBGIF, 1, Define if gif support is available)
else
gif_ok="no (See http://sourceforge.net/projects/libgif)"
fi
dnl Test for libpng
libpng_found=no
AC_MSG_CHECKING(for libpng16)
if test "x$no_libpng16" != "x"; then
AC_MSG_RESULT(skipped)
elif $PKG_CONFIG --exists libpng16 ; then
AC_MSG_RESULT(yes)
PNG='png'
PNG_DEP_CFLAGS_PACKAGES=libpng16
LIBPNG=`$PKG_CONFIG --libs libpng16`
libpng_found=yes
else
AC_MSG_RESULT(no)
fi
if test "x$libpng_found" != "xyes"; then
AC_MSG_CHECKING(for libpng14)
if $PKG_CONFIG --exists libpng14 ; then
AC_MSG_RESULT(yes)
PNG='png'
PNG_DEP_CFLAGS_PACKAGES=libpng14
LIBPNG=`$PKG_CONFIG --libs libpng14`
libpng_found=yes
else
AC_MSG_RESULT(no)
fi
fi
if test "x$libpng_found" != "xyes"; then
AC_MSG_CHECKING(for libpng12)
if $PKG_CONFIG --exists libpng12 ; then
AC_MSG_RESULT(yes)
PNG='png'
PNG_DEP_CFLAGS_PACKAGES=libpng12
LIBPNG=`$PKG_CONFIG --libs libpng12`
libpng_found=yes
else
AC_MSG_RESULT(no)
fi
fi
if test "x$libpng_found" != "xyes"; then
AC_MSG_CHECKING(for png)
AC_CHECK_LIB(png, png_read_info,
[AC_CHECK_HEADER(png.h, png_ok=yes, png_ok=no)],
AC_MSG_ERROR(*** libpng12 not found. See http://www.libpng.org/pub/png/libpng.html.), -lz -lm)
if test "$png_ok" = yes; then
AC_MSG_CHECKING([for png_structp in png.h])
AC_TRY_COMPILE([#include <png.h>],
[png_structp pp; png_infop info; png_colorp cmap; png_create_read_struct;],
png_ok=yes,
png_ok=no)
AC_MSG_RESULT($png_ok)
if test "$png_ok" = yes; then
PNG='png'; LIBPNG='-lpng -lz'
else
AC_MSG_ERROR(*** libpng12 found, but it is too old. See http://www.libpng.org/pub/png/libpng.html.)
fi
else
AC_MSG_ERROR(*** libpng12 not found. See http://www.libpng.org/pub/png/libpng.html.)
fi
fi
GDIPLUS_LIBS="$GDIPLUS_LIBS $LIBPNG"
AC_DEFINE(HAVE_LIBPNG, 1, Define if png support is available. Always defined.)
dnl
dnl Test for X11. Allow compiling without x11 support using the without-x11
dnl flag
dnl
AC_ARG_WITH(x11,
[AC_HELP_STRING([--without-x11], [Disable X11 support])],
[disable_x11=yes])
if test x$disable_x11 != xyes; then
AC_MSG_CHECKING(X11 support)
if $PKG_CONFIG --exists x11 ; then
GDIPLUS_LIBS="$GDIPLUS_LIBS `$PKG_CONFIG --libs x11`"
GDIPLUS_CFLAGS="$GDIPLUS_CFLAGS `$PKG_CONFIG --cflags x11`"
x11_available=yes
else
AC_TRY_COMPILE(
[#include <X11/Xlib.h>],
[],
[x11_available=yes],
[x11_available=no])
fi
if test "x$x11_available" != "xyes"; then
AC_MSG_ERROR( [ Failed to compile with X11/Xlib.h include. You must fix your compiler paths ])
else
AC_MSG_RESULT(yes)
fi
else
x11_available=no
fi
if test x$x11_available = xyes; then
AC_DEFINE(HAVE_X11, 1, Define if x11 is available.)
fi
AM_CONDITIONAL(HAVE_X11, test x$x11_available = xyes)
dnl Test for libexif
if test x$with_libexif != xno && test -z "$LIBEXIF"; then
PKG_CHECK_MODULES(LIBEXIF, libexif, [libexif_pkgconfig=yes], libexif_pkgconfig=no])
if test x$libexif_pkgconfig = xyes ; then
GDIPLUS_CFLAGS="$GDIPLUS_CFLAGS $LIBEXIF_CFLAGS"
GDIPLUS_LIBS="$GDIPLUS_LIBS $LIBEXIF_LIBS"
AC_DEFINE(HAVE_LIBEXIF, 1, Define if libexif is available.)
else
libexif_pkgconfig="No. Get it from http://libexif.sourceforge.net/"
fi
else
libexif_pkgconfig="No. You disabled it."
fi
AM_CONDITIONAL(HAVE_LIBEXIF, test x$libexif_pkgconfig = xyes)
GDIPLUS_PKG_LIBS="$GDIPLUS_LIBS"
GDIPLUS_PKG_CFLAGS="$GDIPLUS_CFLAGS"
AC_SUBST(GDIPLUS_LIBS)
AC_SUBST(GDIPLUS_CFLAGS)
AC_SUBST(GDIPLUS_PKG_LIBS)
AC_SUBST(GDIPLUS_PKG_CFLAGS)
AC_SUBST(GDIPLUS_PKG_REQ)
AC_OUTPUT([
Makefile
libgdiplus.pc
libgdiplus0.spec
src/Makefile
tests/Makefile])
echo "---"
echo "Configuration summary"
echo ""
echo " * Installation prefix = $prefix"
echo " * Cairo = $cairo_info"
echo " * Text = $text_v"
echo " * EXIF tags = $libexif_pkgconfig"
echo " * X11 = $x11_available"
echo " * Codecs supported:"
echo ""
echo " - TIFF: $tiff_ok"
echo " - JPEG: $jpeg_ok"
echo " - GIF: $gif_ok"
echo " - PNG: yes"
echo ""
echo " NOTE: if any of the above say 'no' you may install the"
echo " corresponding development packages for them, rerun"
echo " autogen.sh to include them in the build."
echo ""
echo "---"
|