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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.60)
AC_INIT([Gem],[0.93.3],[zmoelnig@iem.at],[Gem],[http://gem.iem.at])
AM_INIT_AUTOMAKE([1.10 foreign])
#
AC_CONFIG_FILES([Makefile abstractions/Makefile])
# documentation
AC_CONFIG_FILES([help/Makefile doc/Makefile examples/Makefile])
# src
AC_CONFIG_FILES([src/Makefile src/Gem/Makefile src/Utils/Makefile])
AC_CONFIG_FILES([src/RTE/Makefile src/Base/Makefile src/plugins/Makefile ])
AC_CONFIG_FILES([src/Output/Makefile ])
AC_CONFIG_FILES([src/deprecated/Makefile ])
## plugins that use this autoconf instance for configuration
AC_CONFIG_FILES([plugins/Makefile])
AC_CONFIG_FILES([plugins/imageQT/Makefile])
AC_CONFIG_FILES([plugins/imageMAGICK/Makefile])
AC_CONFIG_FILES([plugins/imageTIFF/Makefile])
AC_CONFIG_FILES([plugins/imageJPEG/Makefile])
AC_CONFIG_FILES([plugins/imageSGI/Makefile])
AC_CONFIG_FILES([plugins/filmAVI/Makefile])
AC_CONFIG_FILES([plugins/filmAVIPLAY/Makefile])
AC_CONFIG_FILES([plugins/filmDS/Makefile])
AC_CONFIG_FILES([plugins/filmDarwin/Makefile])
AC_CONFIG_FILES([plugins/filmGMERLIN/Makefile])
AC_CONFIG_FILES([plugins/filmMPEG1/Makefile])
AC_CONFIG_FILES([plugins/filmMPEG3/Makefile])
AC_CONFIG_FILES([plugins/filmQT/Makefile])
AC_CONFIG_FILES([plugins/filmQT4L/Makefile])
AC_CONFIG_FILES([plugins/filmTEST/Makefile])
AC_CONFIG_FILES([plugins/recordQT/Makefile])
AC_CONFIG_FILES([plugins/recordQT4L/Makefile])
AC_CONFIG_FILES([plugins/recordV4L/Makefile])
AC_CONFIG_FILES([plugins/recordV4L2/Makefile])
AC_CONFIG_FILES([plugins/videoDC1394/Makefile])
AC_CONFIG_FILES([plugins/videoDS/Makefile])
AC_CONFIG_FILES([plugins/videoDV4L/Makefile])
AC_CONFIG_FILES([plugins/videoDarwin/Makefile])
AC_CONFIG_FILES([plugins/videoSGI/Makefile])
AC_CONFIG_FILES([plugins/videoTEST/Makefile])
AC_CONFIG_FILES([plugins/videoUNICAP/Makefile])
AC_CONFIG_FILES([plugins/videoV4L/Makefile])
AC_CONFIG_FILES([plugins/videoV4L2/Makefile])
AC_CONFIG_FILES([plugins/videoVFW/Makefile])
## extra holds additional objects/libraries
# some of them have their own build system
#AC_CONFIG_FILES([extra/Makefile])
# some do not
AC_CONFIG_FILES([extra/pix_drum/Makefile extra/pix_mano/Makefile])
AC_CONFIG_FILES([extra/pix_fiducialtrack/Makefile])
# other stuff
AC_CONFIG_FILES([build/Makefile Gem.pc])
##########################
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_SRCDIR([src/Base/GemBase.h])
AC_CONFIG_SUBDIRS([extra])
if test -d "$srcdir/plugins/videoAVT"; then
AC_CONFIG_SUBDIRS([plugins/videoAVT])
fi
if test -d "$srcdir/plugins/videoHALCON"; then
AC_CONFIG_SUBDIRS([plugins/videoHALCON])
fi
if test -d "$srcdir/plugins/videoPYLON"; then
AC_CONFIG_SUBDIRS([plugins/videoPYLON])
fi
AC_LANG(C++)
ARCH=$(uname -m)
KERN=$(uname -s)
AC_SUBST(CXXCPP)
AC_SUBST(CXX)
AC_SUBST(GEM_TARGETS)
AC_SUBST(EXT)
AC_SUBST(INCLUDES)
AC_SUBST(LIBS)
AC_SUBST(CXXFLAGS)
AC_SUBST(CPPFLAGS)
AC_SUBST(DEFS)
AC_SUBST(DEFINES)
AC_SUBST(X_CFLAGS)
AC_SUBST(X_PRE_LIBS)
AC_SUBST(X_LIBS)
AC_SUBST(X_EXTRA_LIBS)
AC_SUBST(PKG_CFLAGS)
AC_SUBST(PKG_LIBS)
AC_SUBST(prefix)
# Checks for programs.
AC_PROG_CXX
AC_PROG_OBJCXX
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
#predeps_CXX="-lstdc++"
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_SED
AC_ARG_WITH([ALL],
AS_HELP_STRING([--without-ALL],[en/disable ALL libraries by default]))
GEM_CHECK_RTE()
GEM_ARG_ENABLE([mmx], [MMX-support])
dnl disabled SSE2 by default, since there are still few chips around that fully support it
dnl unlike MMX or SSE
GEM_ARG_DISABLE([sse2], [SSE2-support])
GEM_ARG_ENABLE([altivec], [AltiVec-support])
GEM_ARG_DISABLE([powerpc], [PowerPC specific optimizations])
GEM_ARG_ENABLE([pascalstrings], [containing '\p'])
GEM_ARG_ENABLE([registerstruct], [use \"-freg-struct-return\" (needed for FreeFrame)], [force])
GEM_TARGET(Controls)
GEM_TARGET(Geos)
GEM_TARGET(Manips)
GEM_TARGET(Nongeos)
GEM_TARGET(Particles)
GEM_TARGET(Pixes)
GEM_TARGET(openGL)
GEM_TARGET_DISABLED(Vertex)
AC_CHECK_LIB([m],[sin])
AC_CHECK_LIB([z],[main])
AC_CHECK_LIB([dl],[dlopen])
# Checks for libraries.
## on OSX X shouldn't be used by default as there are other ways
## however, if people really want it ("--with-x") they should get it
if test "x$KERN" = "xDarwin"; then
if test "x$with_x" = "x"; then
with_x="no"
fi
fi
AC_PATH_X
AC_PATH_XTRA
if test "x$with_x" != "xno"; then
# AC_CHECK_LIB([X11],[main])
# AC_CHECK_LIB([Xext],[main])
AC_CHECK_LIB([Xxf86vm],[XF86VidModeGetAllModeLines])
fi
IEM_CHECK_GL
IEM_CHECK_GLU
IEM_CHECK_GLUT
IEM_CHECK_GLX
IEM_CHECK_AGL
## use system's libGLEW
GEM_CHECK_LIB([glew], [GLEW], [glewInit],,,,[OpenGL Extension Wrangler library], [no])
## http://wiki.fifengine.de/Segfault_in_cxa_allocate_exception#Workaround_.231
### "-lstdc++" really has to be added before e.g. "-lGL" in order to avoid
### triggering the bug
### however, libtool is way to clever and eliminates duplicate LIBS entries.
### since "-lstdc++" is usually found in the postdeps, this would remove the
### entry found in LIBS; so we add it to the predeps_CXX (only)
stdcxx_LIBS=$LIBS
AC_CHECK_LIB([stdc++],[main],[predeps_CXX="$predeps_CXX -lstdc++"])
LIBS=$stdcxx_LIBS
dnl some checks for osX
GEM_CHECK_FRAMEWORK([Cocoa],
[have_cocoa_framework="yes"],
[have_cocoa_framework="no"])
GEM_CHECK_FRAMEWORK([Carbon],
[have_carbon_framework="yes"],
[have_carbon_framework="no"])
GEM_CHECK_FRAMEWORK([QuickTime],
[have_quicktime_framework="yes"],
[have_quicktime_framework="no"])
AM_CONDITIONAL(VIDEODARWIN, test "x${have_carbon_framework}" = "xyes" && test "x${have_quicktime_framework}" = "xyes")
#fallback to imagemagick if people are too lazy to type ImageMagick
if test "x$with_ImageMagick" = "x"; then
with_ImageMagick="$with_imagemagick"
fi
GEM_CHECK_LIB([ImageMagick++], [Magick++], [main],
AC_DEFINE([HAVE_LIBMAGICKPLUSPLUS], [1], [image loading/saving with ImageMagick++]),
,,[image loader])
#if test "x${have_ImageMagick}" = "xyes"
#then
# with_tiff=no
# with_jpeg=no
#fi
GEM_CHECK_LIB([tiff], [tiff], [TIFFOpen],,,,[image loader])
GEM_CHECK_LIB([jpeg], [jpeg], [jpeg_read_header],,,,[image loader])
GEM_CHECK_LIB([ftgl], [ftgl], [main],,,[-lfreetype],[font support])
## film en/decoders
GEM_CHECK_LIB([avifile], [aviplay], [CreateIAviReadFile],,,,[movie loader])
GEM_CHECK_LIB([gmerlin_avdec], [gmerlin_avdec], [gavl_start],,,,[movie loader])
GEM_CHECK_LIB([mpeg], [mpeg], [OpenMPEG],,,,[movie loader])
GEM_CHECK_LIB([libmpeg3], [mpeg3], [mpeg3_check_sig],,,,[movie loader])
GEM_CHECK_LIB([libquicktime], [quicktime], [quicktime_init],,,,[movie loader])
GEM_CHECK_LIB([lqt], [quicktime], [quicktime_init],,,,[movie loader])
# special function in libquicktime
old_cflags=${CFLAGS}
old_ldflags=${LDFLAGS}
CFLAGS="${CFLAGS} $GEM_LIB_LIBQUICKTIME_CFLAGS $GEM_LIB_LQT_CFLAGS"
LDFLAGS="${LDFLAGS} $GEM_LIB_LIBQUICKTIME_LIBS $GEM_LIB_LQT_LIBS"
AC_CHECK_FUNCS([lqt_seek_video])
AC_CHECK_FUNCS([lqt_open_write])
CFLAGS=${old_cflags}
LDFLAGS=${old_ldflags}
#video
GEM_CHECK_LIB([libdc1394-2], [dc1394], [main],,,, [video input])
GEM_CHECK_LIB([libdv],[dv], [main],,,, [video input])
GEM_CHECK_LIB([libraw1394], [raw1394], [main],,,, [video input])
GEM_CHECK_LIB([libiec61883], [iec61883], [main],,,, [video input])
AC_CHECK_HEADERS([vl/vl.h])
GEM_ARG_WITH([unicap], [video input], [force])
GEM_CHECK_LIB([libunicap], [unicap], [unicap_check_version],,,, [video input])
if test "x$have_unicap" = "xyes"; then
AC_CHECK_HEADER([unicap/unicap.h],
[
AC_DEFINE([HAVE_UNICAP], [], [video capturing using UNICAP])
have_unicap="yes"
],[have_unicap="no"])
fi
AM_CONDITIONAL([HAVE_LIB_UNICAP], [test "x${have_unicap}" = "xyes"])
have_v4l="no"
GEM_ARG_WITH([v4l], [video input], [force])
AC_CHECK_HEADERS([linux/videodev.h], have_v4l="yes")
GEM_CHECK_LIB([libv4l1], [v4l1], [v4l1_open],,,, [video output])
if test "x$have_libv4l1" = "xyes"; then
have_v4l="yes (libv4l)"
fi
if test "x$with_v4l" = "xno"; then
have_v4l="no"
fi
AM_CONDITIONAL([HAVE_V4L], [test "x${have_v4l}" != "xno"])
have_v4l2="no"
GEM_ARG_WITH([v4l2], [video input], [force])
AC_CHECK_HEADERS([linux/videodev2.h])
GEM_CHECK_LIB([libv4l2], [v4l2], [v4l2_open],,,, [video input])
# AC_DEFINE([HAVE_VIDEO4LINUX2], [], [video capturing using v4l2])
if test "x$have_libv4l2" = "xyes"; then
have_v4l2="yes (libv4l)"
fi
if test "x$with_v4l2" = "xno"; then
have_v4l2="no"
fi
AM_CONDITIONAL([HAVE_V4L2], [test "x${have_v4l2}" != "xno"])
GEM_CHECK_LIB([vfw32], [vfw32], [AVIFileInit],,,, [video input])
# is this needed?
dnl GEM_CHECK_LIB([avicap32],[avicap32],[main],,,,[video input])
# for this to work properly, the INCLUDES had to be set with PKG_FTGL_CFLAGS
AC_CHECK_HEADERS([FTGL/ftgl.h])
AC_ARG_WITH([default-font],
AS_HELP_STRING([--with-default-font=vera.ttf],[specify the default font for text-rendering])
)
if test "x$with_default_font" != "x" && \
test "x$with_default_font" != "xno" &&
test "x$with_default_font" != "xyes"; then
AC_DEFINE_UNQUOTED([GEM_DEFAULT_FONT], "${with_default_font}", [default font for text rendering])
AC_MSG_RESULT([using "${with_default_font}" as default font])
fi
# threading
GEM_CHECK_THREADS
# pkg-config checks
dnl PKG_CHECK_MODULES(PKG_FT2,freetype2)
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([fcntl.h float.h memory.h stddef.h stdlib.h string.h strings.h sys/ioctl.h sys/time.h termios.h unistd.h])
AC_CHECK_HEADERS([wordexp.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_CHECK_SIZEOF([unsigned int])
AC_CHECK_SIZEOF([void *])
# Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_FUNC_MMAP
AC_CHECK_FUNCS([bzero floor gettimeofday memset munmap pow sqrt strchr strdup strrchr strstr strnlen])
# enabling recording with quicktime4linux
gem_tmp_lqt_libs="$LIBS"
LIBS="$LIBS $PKG_LIBS"
AC_MSG_CHECKING(for lqt_open_write)
AC_LINK_IFELSE([AC_LANG_CALL([], [lqt_open_write])],
AC_DEFINE([HAVE_LQT_OPEN_WRITE], [], [film recording using quicktime4linux])
AC_MSG_RESULT(yes),
AC_MSG_RESULT(no))
LIBS="$gem_tmp_lqt_libs"
### make-depend flags
if test "x$ac_cv_c_compiler_gnu" = "xyes"; then
AC_SUBST(MAKEDEP_FLAGS, "-MM")
else
AC_SUBST(MAKEDEP_FLAGS, "-M")
fi
# using pix_videoOS rather than pix_video
AC_ARG_WITH([video], AS_HELP_STRING([--with-video=plugins|Darwin|DS|NT],[use plugins for video capture or OS-specific "pix_video"]))
## on OSX we still default to the olde way
#if test "x$KERN" = "xDarwin"; then
# if test "x$with_film" = "x"; then
# with_film="Darwin"
# fi
# if test "x$with_video" = "x"; then
# with_video="Darwin"
# fi
#fi
if test "x$with_video" = "x"; then
with_video="plugins"
elif test "x$with_video" = "xyes"; then
with_video="plugins"
elif test "x$with_video" = "xno"; then
# hmm, what to do here?
AC_MSG_RESULT([ignoring request for no video...using plugins])
with_video="plugins"
elif test "x$with_video" = "xplugins"; then
:
else
AC_DEFINE_UNQUOTED([GEM_VIDEOBACKEND], [GEM_VIDEOBACKEND_$with_video], [backend for deprecated video-capture objects])
AC_MSG_RESULT([using deprecated video-loader $with_video])
fi
# using pix_filmOS rather than pix_film
AC_ARG_WITH([film], AS_HELP_STRING([--with-film=plugins|Darwin],[use plugins for video decoding or OS-specific "pix_film"]))
if test "x$with_film" = "x"; then
with_film="plugins"
elif test "x$with_film" = "xyes"; then
with_film="plugins"
elif test "x$with_film" = "xno"; then
# hmm, what to do here?
AC_MSG_RESULT([ignoring request for no film...using plugins])
with_film="plugins"
elif test "x$with_film" = "xplugins"; then
:
else
AC_DEFINE_UNQUOTED([GEM_FILMBACKEND], [GEM_FILMBACKEND_$with_film], [backend for deprecated film-decoding objects])
AC_MSG_RESULT([using deprecated film-loader $with_film])
fi
# enabling "-freg-struct-return" (for FreeFrame)
# i wonder could we make this the default ???
if test "x$enable_registerstruct" != "xno"; then
GEM_CHECK_CXXFLAGS([-freg-struct-return],
[enable_registerstruct="yes"], [enable_registerstruct="no"])
if test "x$enable_registerstruct" = "xyes"; then
AC_MSG_RESULT([enabling "register struct return"
allows to make use of FreeFrame-effects without recompiling them
might break things, if you are using several different compilers])
fi
fi
if test "x$KERN" = "xDarwin"; then
GEM_CHECK_CXXFLAGS([-Os],,GEM_CHECK_CXXFLAGS([-O3]))
# shall we built FAT-binaries ?
## this needs more thinking! running just the preprocessor does not like these flags
## for now we could live with just adding these manually with GEM_EXTRA_CXXFLAGS and GEM_EXTRA_LDFLAGS
dnl GEM_CHECK_CXXFLAGS([-arch i386 -arch ppc], GEM_CHECK_LDFLAGS([-arch i386 -arch ppc], [EXT="d_fat"]))
else
GEM_CHECK_CXXFLAGS([-O3])
fi
dnl this is only useful for debugging and might break things on older compilers
dnl GEM_CHECK_CXXFLAGS([-fno-builtin])
GEM_CHECK_CXXFLAGS([-falign-loops -falign-functions -falign-jumps -funroll-loops],,
GEM_CHECK_CXXFLAGS([-falign-loops -funroll-loops])
)
GEM_CHECK_CXXFLAGS([-ffast-math])
## SIMD support
# naive approach is to just check, which SIMD-flags the compiler takes
# and use these
# drawback: while the compiler might support compilation for a specific
# SIMD instruction set, the hardware you are compiling for might not
# proposal:
# by default the configure-task should only enable flags that are known
# to work on the machine we are compiling.
# the user can override this by explicitely stating that they want the
# flag to be enabled (if possible)
# e.g. "./configure --enable-sse2" on a pentium-3 should
# produce a binary that will only run on machines with SSE2 registers
# whereas "./configure" will make a binary with only MMX enabled.
#
# but how do we test for the CPU-caps? on linux we could just read /proc/cpuinfo
# but on other OSs?
# we make it a bit complicated in order to allow people to enforce the
# compilation with a specific SIMD-instruction set, even on platforms
# that don't support it
# why? think cross-compilation
GEM_CHECK_FAT(GEM_ARCH)
AC_MSG_RESULT($GEM_ARCH)
AC_SUBST(GEM_ARCH_CXXFLAGS)
AC_SUBST(GEM_ARCH_LDFLAGS)
if test "x${ARCH}" = "xi386" || test "x${ARCH}" = "xi686" || test "x${ARCH}" = "xx86_64"; then
if test "x$enable_altivec" != "xyes"; then enable_altivec="no"; fi
fi
if test "x${ARCH}" = "xPower Macintosh" || test "x${ARCH}" = "xpowerpc"; then
if test "x$enable_mmx" != "xyes"; then enable_mmx="no" ; fi
if test "x$enable_sse2" != "xyes"; then enable_sse2="no"; fi
fi
if test "x$enable_mmx" != "xno"; then
GEM_CHECK_CXXFLAGS([-mmmx])
fi
if test "x$enable_sse2" = "xyes"; then
GEM_CHECK_CXXFLAGS([-msse2])
fi
if test "x$enable_altivec" != "xno"; then
GEM_CHECK_CXXFLAGS([-faltivec])
fi
if test "x$enable_powerpc" = "xyes"; then
GEM_CHECK_CXXFLAGS([-mpowerpc-gfxopt])
fi
# on os-x we might come across "pascal strings" containing "\p"...
if test "x$enable_pascalstrings" != "xno"; then
GEM_CHECK_CXXFLAGS([-fpascal-strings])
fi
## dummy conditionals that are always "true" (ENABLED) or "false" (DISABLED)
enabled="yes"
AM_CONDITIONAL([ENABLED], test "x${enabled}" = "xyes")
AM_CONDITIONAL([DISABLED], test "x${enabled}" = "xno")
# damned: gcc on osX seems to report that it supports "-ip -ipo_obj" although they are only icc flags
dnl GEM_CHECK_CXXFLAGS([-ip -ipo_obj])
dnl we want dos2unix...
dnl AC_CHECK_TOOL([DOS2UNIX], [dos2unix], [true])
AC_OUTPUT
dnl GEM compilation options:
dnl =======================================
dnl
dnl give some feedback about the configuration
if test "x$have_ftgl" = "xyes"; then
have_font=FTGL
fi
if test "x$have_quicktime_framework" = "xyes"; then
have_libquicktime="yes (framework)"
fi
have_ieee1394=""
if test "x$have_libdc1394_2" = "xyes"; then
have_ieee1394="$have_ieee1394 libdc1394"
fi
if test "x$have_ieee1394" = "x"; then
have_ieee1394="no";
else
have_ieee1394="yes ($have_ieee1394 )"
fi
if test "x$with_film" = "xplugins"; then
use_film_plugins="yes"
else
use_film_plugins="no (using $with_film backend)"
fi
if test "x$with_video" = "xplugins"; then
use_video_plugins="yes"
else
use_video_plugins="no (using $with_video backend)"
fi
AC_MSG_RESULT([
Result:
Target : Gem.${EXT}
Objects : ${GEM_TARGETS}
Configuration:
Compiler : ${CXX}
CXXFLAGS : ${CXXFLAGS} ${X_CFLAGS}
: ${PKG_CFLAGS}
INCLUDES : ${INCLUDES}
DEFINES : ${DEFINES}
LIBS : ${LIBS}
: ${PKG_LIBS}
LDFLAGS : ${LDFLAGS}
: ${X_LIBS}
Install path : ${prefix}
pure-data:
version : ${PD_MAJORVERSION}.${PD_MINORVERSION}
extension : ${EXT}
used optional libraries:
font-rendering : ${have_font}
image-support
use ImageMagick : ${have_ImageMagick}
use TIFF : ${have_tiff}
use JPEG : ${have_jpeg}
moviefile-support
use PLUGINS : ${use_film_plugins}
use mpeg : ${have_mpeg}
use mpeg-3 : ${have_libmpeg3}
use QuickTime : ${have_libquicktime}
use aviplay : ${have_avifile}
use gmerlin : ${have_gmerlin_avdec}
capture-support
use PLUGINS : ${use_video_plugins}
use v4l : ${have_v4l}
use v4l2 : ${have_v4l2}
use ieee1394 : ${have_ieee1394}
])
if test "x$PD_VERSION" = "x"; then
AC_MSG_ERROR([Pd (header) is mandatory and seems to be missing!])
fi
if test "x$no_gl" = "xyes"; then
AC_MSG_ERROR([GL (headers) not found! you need openGL!!!])
fi
if test "x$no_glu" = "xyes" && test "x$no_agl" = "xyes"; then
AC_MSG_ERROR([GLU (headers) not found! you need openGL Utility Library!!!])
fi
AC_MSG_RESULT([Now run make ...])
|