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 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
|
AC_PREREQ([2.71])
m4_include([revision.m4])
AC_INIT([codeblocks],[SVN_REVISION])
AC_CANONICAL_TARGET
AC_CONFIG_MACRO_DIR([m4])
AC_MSG_CHECKING([whether configure should try to set CFLAGS/CXXFLAGS/CPPFLAGS/LDFLAGS])
AS_IF([test "x${CFLAGS+set}" = "xset" || test "x${CXXFLAGS+set}" = "xset" || test "x${CPPFLAGS+set}" = "xset" || test "x${LDFLAGS+set}" = "xset"],[enable_flags_setting=no],[enable_flags_setting=yes])
AC_MSG_RESULT([${enable_flags_setting}])
m4_include([m4/acinclude.m4])
m4_include([m4/ax_cxx_compile_stdcxx.m4])
m4_include([m4/ax_boost_base.m4])
m4_include([m4/ax_boost_system.m4])
CODEBLOCKS_CHECK_DEBUG
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip subdir-objects])
AC_DISABLE_STATIC
LT_INIT
AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_HEADERS([src/include/config.h])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
AM_CONDITIONAL([LINUX], [test `uname` = "Linux"])
AM_CONDITIONAL([DARWIN], [test `uname` = "Darwin"])
dnl Checks for programs.
AC_PROG_CXX
AC_PROG_CPP
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_AWK
AX_CXX_COMPILE_STDCXX(11, noext)
CODEBLOCKS_CHECK_LINK_FLAG([-Wl,--no-undefined],[LDFLAGS="-Wl,--no-undefined $LDFLAGS"])
CODEBLOCKS_SETUP_FOR_TARGET
dnl Checks for header files.
AC_HEADER_DIRENT
m4_warn([obsolete],
[The preprocessor macro `STDC_HEADERS' is obsolete.
Except in unusual embedded environments, you can safely include all
ISO C90 headers unconditionally.])dnl
# Autoupdate added the next two lines to ensure that your configure
# script's behavior did not change. They are probably safe to remove.
AC_CHECK_INCLUDES_DEFAULT
AC_PROG_EGREP
AC_CHECK_HEADERS([fcntl.h limits.h stdlib.h string.h sys/param.h unistd.h malloc.h sys/malloc.h malloc/malloc.h])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
m4_warn([obsolete],
[Update your code to rely only on HAVE_SYS_TIME_H,
then remove this warning and the obsolete code below it.
All current systems provide time.h; it need not be checked for.
Not all systems provide sys/time.h, but those that do, all allow
you to include it and time.h simultaneously.])dnl
AC_CHECK_HEADERS_ONCE([sys/time.h])
# Obsolete code to be removed.
if test $ac_cv_header_sys_time_h = yes; then
AC_DEFINE([TIME_WITH_SYS_TIME],[1],[Define to 1 if you can safely include both <sys/time.h>
and <time.h>. This macro is obsolete.])
fi
# End of obsolete code.
AC_C_VOLATILE
dnl Checks for library functions.
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_MALLOC
AC_FUNC_MEMCMP
AC_FUNC_STAT
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([atexit getcwd isascii memchr memmove memset strcasecmp strchr strcspn strdup strrchr strstr])
AC_CHECK_LIB(dl, dlopen)
AC_CHECK_LIB(pthread, pthread_create)
AC_CHECK_FUNC(snprintf, AC_DEFINE(HAVE_SNPRINTF,,snprintf))
AC_CHECK_FUNC(vsnprintf, AC_DEFINE(HAVE_VSNPRINTF,,vsnprintf))
PKG_CHECK_MODULES([zlib], [zlib], [HAVE_ZLIB=yes], [HAVE_ZLIB=no])
save_LIBS=$LIBS
AC_SEARCH_LIBS(BZ2_bzopen, bz2, [HAVE_BZIP2=yes], [HAVE_BZIP2=no])
LIBS=$save_LIBS
save_CC=$CC
save_CPP=$CPP
CC=$CXX
CPP=$CXXCPP
AC_CHECK_HEADER(astyle.h, [HAVE_ASTYLE=yes], [HAVE_ASTYLE=no])
dnl check if system astyle is at least 3.0, otherwise use bundled astyle-library
dnl ASPeekStream is declared since 3.0
if test "$HAVE_ASTYLE" = "yes" ; then
AC_CHECK_TYPE([astyle::ASPeekStream], , [HAVE_ASTYLE=no], [#include "astyle.h"])
else
HAVE_ASTYLE=no
fi
CC=$save_CC
CPP=$save_CPP
AM_CONDITIONAL([HAVE_ZLIB], [test "$HAVE_ZLIB" = yes])
AM_CONDITIONAL([HAVE_BZIP2], [test "$HAVE_BZIP2" = yes])
AM_CONDITIONAL([HAVE_ASTYLE], [test "$HAVE_ASTYLE" = yes])
AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes, no)
ifdef([PKG_CHECK_MODULES],[],[
define([PKG_CHECK_MODULES],
[ echo "You don't have pkg.m4 properly installed" >&2
exit 1
])
])
PKG_PROG_PKG_CONFIG
PKG_CHECK_MODULES([TINYXML], [tinyxml], [HAVE_TINYXML=yes], [HAVE_TINYXML=no])
AM_CONDITIONAL([HAVE_TINYXML], [test "$HAVE_TINYXML" = yes])
dnl Darwin -> .dylib Linux -> .so
if test "x$DARWIN_TRUE" = "x" ; then
MODULE_SHARED_LDFLAGS="-dynamiclib"
else
MODULE_SHARED_LDFLAGS="-module -shared"
fi
AC_SUBST(MODULE_SHARED_LDFLAGS)
dnl versioning info for libtool
dnl Note this is the ABI version which is not the same as our actual library version
CODEBLOCKS_CURRENT=0
CODEBLOCKS_REVISION=1
CODEBLOCKS_AGE=0
CODEBLOCKS_VERSION_INFO=$CODEBLOCKS_CURRENT:$CODEBLOCKS_REVISION:$CODEBLOCKS_AGE
AC_SUBST(CODEBLOCKS_VERSION_INFO)
AM_MISSING_PROG(AMTAR, tar)
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
[_AM_PROG_TAR([v7])])])
CODEBLOCKS_GET_PLATFORM
CODEBLOCKS_ENABLE_SETTINGS
AM_OPTIONS_WXCONFIG
AM_PATH_WXCONFIG(3.0.0, wxWin=1)
if test "$wxWin" != 1; then
AC_MSG_ERROR([
wxWidgets must be installed on your system.
Please check that wx-config is in path, the directory
where wxWidgets libraries are installed (returned by
'wx-config --libs' or 'wx-config --static --libs' command)
is in LD_LIBRARY_PATH or equivalent variable and
wxWindows version is 3.0.0 or above.
])
fi
dnl CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS"
dnl CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS_ONLY"
dnl CFLAGS="$CFLAGS $WX_CFLAGS_ONLY"
dnl LIBS="$LIBS $WX_LIBS"
AC_SUBST(CPPFLAGS)
AC_SUBST(CXXFLAGS)
AC_SUBST(CFLAGS)
AC_SUBST(LIBS)
WX_GTK_CFLAGS=
WX_GTK_LIBS=
WX_GDK_CFLAGS=
WX_GDK_LIBS=
WX_X11_CFLAGS=
WX_X11_LIBS=
dnl default value is to (silently) do nothing in the makefile
POSTLINK_COMMAND="@true"
MACSETFILE="@true"
AC_MSG_CHECKING(for wxWidgets platform)
WX_BASENAME=`$WX_CONFIG_WITH_ARGS --basename`
case $WX_BASENAME in
*wx_gtk*)
AC_MSG_RESULT(wxGTK)
dnl
dnl pkg-config no longer needed by debugger plugin
dnl but is needed by others
dnl
dnl only do this if it is really needed
dnl AM_CONDITIONAL adds _TRUE and _FALSE to the appropriate variables
dnl if the condition is true, the *_TRUE variable is empty (!)
if test "x$BUILD_FILEMANAGER_TRUE" = "x" -o \
"x$BUILD_SPELLCHECKER_TRUE" = "x" -o \
"x$BUILD_MOUSESAP_TRUE" = "x" -o \
"x$BUILD_EXPORTER_TRUE" = "x" -o \
"x$GTK_NOTEBOOK_TRUE" = "x" -o \
"x$LINUX_TRUE" = "x" ; then
if test "x$LINUX_TRUE" = "x" ; then
if test "x$HAVE_PKG_CONFIG" = "xyes"; then
PKG_CHECK_MODULES([GLIB2], [glib-2.0])
fi
fi
if test "x$BUILD_SPELLCHECKER_TRUE" = "x" ; then
if test "x$HAVE_PKG_CONFIG" = "xyes"; then
PKG_CHECK_MODULES([HUNSPELL], [hunspell])
fi
fi
if test "x$BUILD_MOUSESAP_TRUE" = "x" -o \
"x$GTK_NOTEBOOK_TRUE" = "x" ; then
if test "x$HAVE_PKG_CONFIG" = "xyes"; then
case $WX_BASENAME in
*wx_gtk3*)
AC_MSG_NOTICE([gtk3 used])
PKG_CHECK_MODULES([GTK], [gtk+-3.0 >= 3.0.0])
AC_MSG_NOTICE([gdk3 used])
PKG_CHECK_MODULES([GDK], [gdk-3.0 >= 3.0.0])
;;
*wx_gtk2*)
AC_MSG_NOTICE([gtk2 used])
PKG_CHECK_MODULES([GTK], [gtk+-2.0 >= 2.0.0])
AC_MSG_NOTICE([gdk2 used])
PKG_CHECK_MODULES([GDK], [gdk-2.0 >= 2.0.0])
;;
esac
fi
fi
if test "x$BUILD_EXPORTER_TRUE" = "x" ; then
if test "x$HAVE_PKG_CONFIG" = "xyes"; then
PKG_CHECK_MODULES([FONTCONFIG], [fontconfig])
fi
fi
fi
if test "x$BUILD_NASSISHNEIDERMAN_TRUE" = "x" ; then
dnl Check whether boost is installed
AX_BOOST_BASE
AX_BOOST_SYSTEM
fi
CB_GLIB2_CFLAGS="$GLIB2_CFLAGS"
CB_GLIB2_LIBS="$GLIB2_LIBS"
CB_HUNSPELL_CFLAGS="$HUNSPELL_CFLAGS"
CB_HUNSPELL_LIBS="$HUNSPELL_LIBS"
CB_FONTCONFIG_CFLAGS="$FONTCONFIG_CFLAGS"
CB_FONTCONFIG_LIBS="$FONTCONFIG_LIBS"
WX_GTK_CFLAGS="$GTK_CFLAGS"
WX_GTK_LIBS="$GTK_LIBS"
WX_GDK_CFLAGS="$GDK_CFLAGS"
WX_GDK_LIBS="$GDK_LIBS"
AC_PATH_XTRA
WX_X11_CFLAGS="`echo $X_CFLAGS | sed 's/ -INONE//'`"
WX_X11_LIBS="`echo $X_LIBS | sed 's/ -LNONE//' | sed 's/ -RNONE//'`"
if test "$no_x" != yes; then
WX_X11_LIBS="$WX_X11_LIBS -lX11 $X_EXTRA_LIBS"
fi
;;
*wx_msw*)
AC_MSG_RESULT(wxMSW)
AC_CHECK_TOOL(WINDRES, [windres])
if test "x$BUILD_SPELLCHECKER_TRUE" = "x" ; then
if test "x$HAVE_PKG_CONFIG" = "xyes"; then
PKG_CHECK_MODULES([HUNSPELL], [hunspell])
fi
fi
CB_HUNSPELL_CFLAGS="$HUNSPELL_CFLAGS"
CB_HUNSPELL_LIBS="$HUNSPELL_LIBS"
;;
*wx_mac*)
AC_MSG_RESULT(wxMac)
AC_CHECK_PROG(REZ, Rez, Rez, /Developer/Tools/Rez)
POSTLINK_COMMAND="\$(REZ) -d __DARWIN__ -t APPL Carbon.r -o"
AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
MACSETFILE="\$(SETFILE)"
;;
*wx_osx*)
AC_MSG_RESULT(wxOSX)
if test "x$BUILD_SPELLCHECKER_TRUE" = "x" ; then
AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes, no)
ifdef([PKG_CHECK_MODULES],[],[
define([PKG_CHECK_MODULES],
[ echo "You don't have pkg.m4 properly installed" >&2
exit 1
])
])
PKG_PROG_PKG_CONFIG
if test "x$HAVE_PKG_CONFIG" = "xyes"; then
PKG_CHECK_MODULES([HUNSPELL], [hunspell])
fi
fi
CB_HUNSPELL_CFLAGS="$HUNSPELL_CFLAGS"
CB_HUNSPELL_LIBS="$HUNSPELL_LIBS"
;;
*)
AC_MSG_RESULT(other)
;;
esac
CB_GCC_VERSION
AC_MSG_RESULT(yes (version $WX_VERSION))
AC_MSG_NOTICE([(Re)setting libs for wxWidgets $WX_VERSION])
WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs std,aui,propgrid,richtext`
SCINTILLA_GTK_CFLAGS="$WX_GDK_CFLAGS"
SCINTILLA_GTK_LIBS="$WX_GDK_LIBS"
CB_SQUIRREL_CFLAGS="-I\$(top_srcdir)/src/include/scripting/include"
CB_SQUIRREL_LIBS="\$(top_builddir)/src/sdk/scripting/squirrel/libsquirrel.la \$(top_builddir)/src/sdk/scripting/sqstdlib/libsqstdlib.la"
if test "x$HAVE_TINYXML_TRUE" = "x" ; then
CB_TINYXML_CFLAGS="$TINYXML_CFLAGS"
CB_TINYXML_LIBS="$TINYXML_LIBS"
else
CB_TINYXML_CFLAGS="-I\$(top_srcdir)/src/include/tinyxml -DTIXML_USE_STL=YES"
CB_TINYXML_LIBS="\$(top_builddir)/src/base/tinyxml/libtinyxml.la"
fi
AC_SUBST(CB_SQUIRREL_CFLAGS)
AC_SUBST(CB_SQUIRREL_LIBS)
AC_SUBST(CB_TINYXML_CFLAGS)
AC_SUBST(CB_TINYXML_LIBS)
AC_SUBST(WX_GTK_CFLAGS)
AC_SUBST(WX_GTK_LIBS)
AC_SUBST(SCINTILLA_GTK_CFLAGS)
AC_SUBST(SCINTILLA_GTK_LIBS)
AC_SUBST(CB_GLIB2_CFLAGS)
AC_SUBST(CB_GLIB2_LIBS)
AC_SUBST(CB_HUNSPELL_CFLAGS)
AC_SUBST(CB_HUNSPELL_LIBS)
AC_SUBST(CB_FONTCONFIG_CFLAGS)
AC_SUBST(CB_FONTCONFIG_LIBS)
AC_SUBST(WX_X11_CFLAGS)
AC_SUBST(WX_X11_LIBS)
AC_SUBST(POSTLINK_COMMAND)
AC_SUBST(MACSETFILE)
PIC_FLAGS=
AC_MSG_CHECKING(for PIC flags)
case `uname` in
Solaris)
if test "$GCC" = yes; then
PIC_CFLAGS="-fPIC"
else
PIC_CFLAGS="-KPIC"
fi
;;
*)
PIC_CFLAGS="-fPIC"
;;
esac
AC_MSG_RESULT("$PIC_CFLAGS -DPIC")
CFLAGS="$CFLAGS $PIC_CFLAGS -std=c90"
CPPFLAGS="$CPPFLAGS -DPIC $CB_TINYXML_CFLAGS"
CXXFLAGS="$CXXFLAGS $PIC_CFLAGS -fexceptions"
AC_SUBST(codeblocks_PCH_FLAGS, "$PCH_FLAGS")
dnl AM_PATH_GTK(1.2.7, ,
dnl AC_MSG_ERROR(Cannot find GTK: Is gtk-config in path?),
dnl gthread)
AC_MSG_NOTICE([Configuring Code::Blocks...])
AC_MSG_NOTICE(SVN revision SVN_REVISION (SVN_DATE))
AC_SUBST(REVISION, SVN_REV)
AC_SUBST(DATE, "SVN_DATE")
if test "x${target_vendor}" = "xapple"; then
AC_CONFIG_FILES([bundle.sh], [chmod +x bundle.sh])
AC_CONFIG_FILES(codeblocks.plist)
fi
AC_CONFIG_FILES([Makefile
src/Makefile
src/base/Makefile
src/base/tinyxml/Makefile
src/build_tools/Makefile
src/build_tools/autorevision/Makefile
src/include/autorevision.h
src/include/Makefile
src/include/scripting/Makefile
src/include/scripting/bindings/Makefile
src/include/scripting/include/Makefile
src/include/tinyxml/Makefile
src/sdk/Makefile
src/sdk/scripting/Makefile
src/sdk/scripting/bindings/Makefile
src/sdk/scripting/squirrel/Makefile
src/sdk/scripting/sqstdlib/Makefile
src/sdk/wxscintilla/Makefile
src/sdk/resources/Makefile
src/sdk/resources/lexers/Makefile
src/src/resources/Makefile
src/src/resources/icons/Makefile
src/src/resources/images/Makefile
src/src/resources/images/settings/Makefile
src/src/Makefile
src/plugins/Makefile
src/plugins/astyle/Makefile
src/plugins/astyle/resources/Makefile
src/plugins/autosave/Makefile
src/plugins/classwizard/Makefile
src/plugins/classwizard/resources/Makefile
src/plugins/codecompletion/Makefile
src/plugins/codecompletion/resources/Makefile
src/plugins/compilergcc/Makefile
src/plugins/compilergcc/depslib/Makefile
src/plugins/compilergcc/depslib/src/Makefile
src/plugins/compilergcc/resources/Makefile
src/plugins/debuggergdb/Makefile
src/plugins/debuggergdb/resources/Makefile
src/plugins/defaultmimehandler/Makefile
src/plugins/defaultmimehandler/resources/Makefile
src/plugins/displayevents/Makefile
src/plugins/openfileslist/Makefile
src/plugins/occurrenceshighlighting/Makefile
src/plugins/occurrenceshighlighting/resources/Makefile
src/plugins/projectsimporter/Makefile
src/plugins/projectsimporter/resources/Makefile
src/plugins/scriptedwizard/Makefile
src/plugins/scriptedwizard/resources/Makefile
src/plugins/scriptedwizard/resources/arduino/Makefile
src/plugins/scriptedwizard/resources/arm/Makefile
src/plugins/scriptedwizard/resources/avr/Makefile
src/plugins/scriptedwizard/resources/c_file/Makefile
src/plugins/scriptedwizard/resources/console/Makefile
src/plugins/scriptedwizard/resources/d/Makefile
src/plugins/scriptedwizard/resources/directx/Makefile
src/plugins/scriptedwizard/resources/dll/Makefile
src/plugins/scriptedwizard/resources/d_source/Makefile
src/plugins/scriptedwizard/resources/empty/Makefile
src/plugins/scriptedwizard/resources/empty_file/Makefile
src/plugins/scriptedwizard/resources/fltk/Makefile
src/plugins/scriptedwizard/resources/fortran/Makefile
src/plugins/scriptedwizard/resources/glfw/Makefile
src/plugins/scriptedwizard/resources/glut/Makefile
src/plugins/scriptedwizard/resources/gtk/Makefile
src/plugins/scriptedwizard/resources/h_file/Makefile
src/plugins/scriptedwizard/resources/irrlicht/Makefile
src/plugins/scriptedwizard/resources/java/Makefile
src/plugins/scriptedwizard/resources/lf/Makefile
src/plugins/scriptedwizard/resources/matlab_csf/Makefile
src/plugins/scriptedwizard/resources/mcs51/Makefile
src/plugins/scriptedwizard/resources/msp430/Makefile
src/plugins/scriptedwizard/resources/ogre/Makefile
src/plugins/scriptedwizard/resources/opencv/Makefile
src/plugins/scriptedwizard/resources/opengl/Makefile
src/plugins/scriptedwizard/resources/plugins/Makefile
src/plugins/scriptedwizard/resources/ppc/Makefile
src/plugins/scriptedwizard/resources/qt4/Makefile
src/plugins/scriptedwizard/resources/qt4dll/Makefile
src/plugins/scriptedwizard/resources/qt5/Makefile
src/plugins/scriptedwizard/resources/sdl/Makefile
src/plugins/scriptedwizard/resources/sdl2/Makefile
src/plugins/scriptedwizard/resources/sfml/Makefile
src/plugins/scriptedwizard/resources/sharedlib/Makefile
src/plugins/scriptedwizard/resources/smartwin/Makefile
src/plugins/scriptedwizard/resources/staticlib/Makefile
src/plugins/scriptedwizard/resources/stlport/Makefile
src/plugins/scriptedwizard/resources/sys/Makefile
src/plugins/scriptedwizard/resources/tricore/Makefile
src/plugins/scriptedwizard/resources/win32gui/Makefile
src/plugins/scriptedwizard/resources/wxwidgets/Makefile
src/plugins/todo/Makefile
src/plugins/todo/resources/Makefile
src/plugins/abbreviations/Makefile
src/plugins/abbreviations/resources/Makefile
src/plugins/xpmanifest/Makefile
src/plugins/contrib/Makefile
src/plugins/contrib/appdata/Makefile
src/plugins/contrib/AutoVersioning/Makefile
src/plugins/contrib/BrowseTracker/Makefile
src/plugins/contrib/byogames/Makefile
src/plugins/contrib/Cccc/Makefile
src/plugins/contrib/Cccc/resources/Makefile
src/plugins/contrib/CppCheck/Makefile
src/plugins/contrib/CppCheck/resources/Makefile
src/plugins/contrib/cb_koders/Makefile
src/plugins/contrib/codesnippets/Makefile
src/plugins/contrib/codestat/Makefile
src/plugins/contrib/codestat/resources/Makefile
src/plugins/contrib/copystrings/Makefile
src/plugins/contrib/Cscope/Makefile
src/plugins/contrib/devpak_plugin/Makefile
src/plugins/contrib/devpak_plugin/bzip2/Makefile
src/plugins/contrib/DoxyBlocks/Makefile
src/plugins/contrib/dragscroll/Makefile
src/plugins/contrib/EditorConfig/Makefile
src/plugins/contrib/EditorTweaks/Makefile
src/plugins/contrib/envvars/Makefile
src/plugins/contrib/FileManager/Makefile
src/plugins/contrib/headerfixup/Makefile
src/plugins/contrib/help_plugin/Makefile
src/plugins/contrib/help_plugin/bzip2/Makefile
src/plugins/contrib/help_plugin/zlib/Makefile
src/plugins/contrib/keybinder/Makefile
src/plugins/contrib/NassiShneiderman/Makefile
src/plugins/contrib/profiler/Makefile
src/plugins/contrib/profiler/resources/Makefile
src/plugins/contrib/ProjectOptionsManipulator/Makefile
src/plugins/contrib/source_exporter/Makefile
src/plugins/contrib/source_exporter/wxPdfDocument/Makefile
src/plugins/contrib/SmartIndent/Makefile
src/plugins/contrib/SpellChecker/Makefile
src/plugins/contrib/SpellChecker/wxspellchecker/Makefile
src/plugins/contrib/symtab/Makefile
src/plugins/contrib/symtab/resources/Makefile
src/plugins/contrib/regex_testbed/Makefile
src/plugins/contrib/ReopenEditor/Makefile
src/plugins/contrib/rndgen/Makefile
src/plugins/contrib/clangd_client/Makefile
src/plugins/contrib/clangd_client/src/resources/Makefile
src/plugins/contrib/ThreadSearch/Makefile
src/plugins/contrib/ToolsPlus/Makefile
src/plugins/contrib/ToolsPlus/Resources/Makefile
src/plugins/contrib/Valgrind/Makefile
src/plugins/contrib/Valgrind/resources/Makefile
src/plugins/contrib/wxContribItems/Makefile
src/plugins/contrib/wxContribItems/wxsmith-contrib.pc
src/plugins/contrib/wxContribItems/cb_wxcontrib.pc
src/plugins/contrib/wxContribItems/cb_wxchartctrl.pc
src/plugins/contrib/wxContribItems/cb_wxcustombutton.pc
src/plugins/contrib/wxContribItems/cb_wximagepanel.pc
src/plugins/contrib/wxContribItems/cb_wxflatnotebook.pc
src/plugins/contrib/wxContribItems/cb_wxspeedbutton.pc
src/plugins/contrib/wxContribItems/cb_wxKWIC.pc
src/plugins/contrib/wxContribItems/cb_wxled.pc
src/plugins/contrib/wxContribItems/cb_wxmathplot.pc
src/plugins/contrib/wxContribItems/wxchart/Makefile
src/plugins/contrib/wxContribItems/wxFlatNotebook/Makefile
src/plugins/contrib/wxContribItems/wxImagePanel/Makefile
src/plugins/contrib/wxContribItems/wxthings/Makefile
src/plugins/contrib/wxContribItems/wxSpeedButton/Makefile
src/plugins/contrib/wxContribItems/KWIC/Makefile
src/plugins/contrib/wxContribItems/KWIC/include/wx/KWIC/Makefile
src/plugins/contrib/wxContribItems/KWIC/include/wx/xrc/Makefile
src/plugins/contrib/wxContribItems/wxled/Makefile
src/plugins/contrib/wxContribItems/wxled/gizmosled/include/wx/gizmos/Makefile
src/plugins/contrib/wxContribItems/wxled/lcdWindow/include/wx/Makefile
src/plugins/contrib/wxContribItems/wxled/led/include/wx/Makefile
src/plugins/contrib/wxContribItems/wxled/led/include/xrc/Makefile
src/plugins/contrib/wxContribItems/wxled/ledpanel/include/wx/Makefile
src/plugins/contrib/wxContribItems/wxmathplot/Makefile
src/plugins/contrib/wxSmith/Makefile
src/plugins/contrib/wxSmith/wxsmith.pc
src/plugins/contrib/wxSmith/plugin/Makefile
src/plugins/contrib/wxSmith/properties/Makefile
src/plugins/contrib/wxSmith/wxwidgets/Makefile
src/plugins/contrib/wxSmith/wxwidgets/properties/Makefile
src/plugins/contrib/wxSmith/wxwidgets/defitems/Makefile
src/plugins/contrib/wxSmith/wxwidgets/icons/Makefile
src/plugins/contrib/wxSmithContribItems/Makefile
src/plugins/contrib/wxSmithAui/Makefile
src/plugins/contrib/wxSmithAui/wxsmithaui.pc
src/plugins/contrib/wxSmithDemo/Makefile
src/plugins/contrib/wxSmithIExplore/Makefile
src/plugins/contrib/wxSmithSTC/Makefile
src/plugins/contrib/lib_finder/Makefile
src/plugins/contrib/lib_finder/lib_finder/Makefile
src/plugins/contrib/HexEditor/Makefile
src/plugins/contrib/IncrementalSearch/Makefile
src/plugins/contrib/MouseSap/Makefile
src/mime/Makefile
src/scripts/Makefile
src/tools/Makefile
src/tools/cb_share_config/Makefile
src/tools/ConsoleRunner/Makefile
src/tools/CBLauncher/Makefile
src/templates/Makefile
src/templates/common/Makefile
src/templates/unix/Makefile
src/templates/win32/Makefile
src/wxsmith/Makefile
codeblocks.pc
codeblocks.spec.fedora
codeblocks.spec
])
AC_OUTPUT
echo
echo
echo "*************************************************"
echo "* Code::Blocks source tree has been configured. *"
echo "*************************************************"
echo
echo "You can now build Code::Blocks by issuing 'make'".
echo "When the build is complete, become root and install"
echo "it by issuing 'make install'".
echo
echo " CFLAGS: ${CFLAGS}"
echo " CXXFLAGS: ${CXXFLAGS}"
echo " CPPFLAGS: ${CPPFLAGS}"
echo " LDFLAGS: ${LDFLAGS}"
echo " CXX: ${CXX}"
echo " CC: ${CC}"
echo
|