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
|
AC_PREREQ(2.50)
m4_include([revision.m4])
AC_INIT([codeblocks], SVN_REVISION)
AC_CANONICAL_TARGET
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip subdir-objects])
AC_DISABLE_STATIC
LT_INIT
AC_CONFIG_HEADER([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
CODEBLOCKS_CHECK_LINK_FLAG([-Wl,--no-undefined],[LDFLAGS="-Wl,--no-undefined $LDFLAGS"])
CODEBLOCKS_CHECK_DEBUG
CODEBLOCKS_SETUP_FOR_TARGET
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
dnl Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
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
AC_HEADER_TIME
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))
save_LIBS=$LIBS
AC_SEARCH_LIBS(gzopen, z, [HAVE_ZLIB=yes], [HAVE_ZLIB=no])
LIBS=$save_LIBS
AC_SEARCH_LIBS(BZ2_bzopen, bz2, [HAVE_BZIP2=yes], [HAVE_BZIP2=no])
LIBS=$save_LIBS
AM_CONDITIONAL([HAVE_ZLIB], [test "$HAVE_ZLIB" = yes])
AM_CONDITIONAL([HAVE_BZIP2], [test "$HAVE_BZIP2" = yes])
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(2.8.12, 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 2.8.0 or above.
])
else
# check for wx2.8.3 which is known to behave badly for us
if test "$WX_VERSION" = "2.8.3"; then
AC_MSG_ERROR([
wxWidgets version 2.8.3 is known to behave badly with
Code::Blocks. Please upgrade to a newer (or downgrade to an
earlier) wxWidgets version...
])
fi
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_GTK2_CFLAGS=
WX_GTK2_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
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
])
])
dnl acoording to pkg-config's manpage this call is absolutely needed:
dnl
dnl "Note that if there is a possibility the first call to
dnl PKG_CHECK_MODULES might not happen, you should be sure
dnl to include an explicit call to PKG_PROG_PKG_CONFIG"
PKG_PROG_PKG_CONFIG
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
PKG_CHECK_MODULES([GTK2], [gtk+-2.0 >= 2.0.0])
fi
fi
if test "x$BUILD_FILEMANAGER_TRUE" = "x" ; then
if test "x$HAVE_PKG_CONFIG" = "xyes"; then
PKG_CHECK_MODULES([GAMIN], [gamin])
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
dnl
dnl Check whether the necessary boost-headers are installed
dnl a little hacky, but it seems there is no common macro-library
dnl to check for boost
dnl If anybody knows a better way, feel free to change it
if test "x$BUILD_NASSISHNEIDERMAN_TRUE" = "x" ; then
AC_LANG_PUSH([C++])
AC_CHECK_HEADER([boost/spirit/include/classic.hpp],[],[AC_MSG_ERROR([needed boost headers not found or not usable])])
AC_LANG_POP([C++])
fi
CB_GLIB2_CFLAGS="$GLIB2_CFLAGS"
CB_GLIB2_LIBS="$GLIB2_LIBS"
CB_GAMIN_CFLAGS="$GAMIN_CFLAGS"
CB_GAMIN_LIBS="$GAMIN_LIBS"
CB_HUNSPELL_CFLAGS="$HUNSPELL_CFLAGS"
CB_HUNSPELL_LIBS="$HUNSPELL_LIBS"
CB_FONTCONFIG_CFLAGS="$FONTCONFIG_CFLAGS"
CB_FONTCONFIG_LIBS="$FONTCONFIG_LIBS"
WX_GTK2_CFLAGS="$GTK2_CFLAGS"
WX_GTK2_LIBS="$GTK2_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)
;;
*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
AM_CONDITIONAL([HAVE_GCC48], [test $GCC_MAJOR_VERSION -gt 4 -o $GCC_MAJOR_VERSION -eq 4 -a $GCC_MINOR_VERSION -ge 8])
AC_MSG_CHECKING([for wxWidgets >= 2.9.0])
AM_CONDITIONAL([HAVE_WX29], [test $wx_config_major_version -gt 2 -o $wx_config_major_version -eq 2 -a $wx_config_minor_version -ge 9])
if test "x$HAVE_WX29_TRUE" = "x" ; then
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`
WXPROPGRID_DIR=
WXPROPGRID_LIB=
WXPROPGRID_INCLUDE=
else
AC_MSG_RESULT(no)
WXPROPGRID_DIR=wxpropgrid
WXPROPGRID_LIB=wxpropgrid/libwxpropgrid.la
WXPROPGRID_INCLUDE=-I\$\(top_srcdir\)/src/sdk/wxpropgrid/include
if test "x$HAVE_GCC48_TRUE" = "x" ; then
gcc48_flags="-Wno-unused-local-typedefs"
AC_MSG_NOTICE([setting additional flags for gcc $GCC_FULL_VERSION]: $gcc48_flags)
CXXFLAGS="$gcc48_flags $CXXFLAGS"
fi
fi
AC_SUBST(WX_GTK2_CFLAGS)
AC_SUBST(WX_GTK2_LIBS)
AC_SUBST(CB_GLIB2_CFLAGS)
AC_SUBST(CB_GLIB2_LIBS)
AC_SUBST(CB_GAMIN_CFLAGS)
AC_SUBST(CB_GAMIN_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(WXPROPGRID_DIR)
AC_SUBST(WXPROPGRID_LIB)
AC_SUBST(WXPROPGRID_INCLUDE)
AC_SUBST(WXPROPGRID_HEADERS)
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_FLAGS="-fPIC -DPIC"
else
PIC_FLAGS="-KPIC -DPIC"
fi
;;
*)
PIC_FLAGS="-fPIC -DPIC"
;;
esac
AC_MSG_RESULT($PIC_FLAGS)
CPPFLAGS="$CPPFLAGS -ansi -DTIXML_USE_STL"
CXXFLAGS="$CXXFLAGS $PCH_FLAGS $PIC_FLAGS -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")
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/scripting/sqplus/Makefile
src/include/scripting/sqstdlib/Makefile
src/include/scripting/squirrel/Makefile
src/include/tinyxml/Makefile
src/sdk/Makefile
src/sdk/wxpropgrid/Makefile
src/sdk/scripting/Makefile
src/sdk/scripting/bindings/Makefile
src/sdk/scripting/squirrel/Makefile
src/sdk/scripting/sqstdlib/Makefile
src/sdk/scripting/sqplus/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/16x16/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/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/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/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/lf/Makefile
src/plugins/scriptedwizard/resources/matlab_csf/Makefile
src/plugins/scriptedwizard/resources/matlab_csf/files/Makefile
src/plugins/scriptedwizard/resources/matlab_csf/lccstub/Makefile
src/plugins/scriptedwizard/resources/mcs51/Makefile
src/plugins/scriptedwizard/resources/ogre/Makefile
src/plugins/scriptedwizard/resources/ogre/files/Makefile
src/plugins/scriptedwizard/resources/opencv/Makefile
src/plugins/scriptedwizard/resources/opengl/Makefile
src/plugins/scriptedwizard/resources/opengl/files_unix/Makefile
src/plugins/scriptedwizard/resources/opengl/files_win/Makefile
src/plugins/scriptedwizard/resources/plugins/Makefile
src/plugins/scriptedwizard/resources/plugins/templates/Makefile
src/plugins/scriptedwizard/resources/ppc/Makefile
src/plugins/scriptedwizard/resources/qt4/Makefile
src/plugins/scriptedwizard/resources/qt4/files/Makefile
src/plugins/scriptedwizard/resources/sdl/Makefile
src/plugins/scriptedwizard/resources/sdl/files/Makefile
src/plugins/scriptedwizard/resources/sfml/Makefile
src/plugins/scriptedwizard/resources/sharedlib/Makefile
src/plugins/scriptedwizard/resources/sharedlib/c/Makefile
src/plugins/scriptedwizard/resources/sharedlib/cpp/Makefile
src/plugins/scriptedwizard/resources/smartwin/Makefile
src/plugins/scriptedwizard/resources/smartwin/files/Makefile
src/plugins/scriptedwizard/resources/staticlib/Makefile
src/plugins/scriptedwizard/resources/staticlib/files/Makefile
src/plugins/scriptedwizard/resources/stlport/Makefile
src/plugins/scriptedwizard/resources/stlport/files/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/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/codesnippets/resources/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/DoxyBlocks/images/Makefile
src/plugins/contrib/DoxyBlocks/images/16x16/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/ThreadSearch/Makefile
src/plugins/contrib/ThreadSearch/resources/Makefile
src/plugins/contrib/ThreadSearch/resources/images/Makefile
src/plugins/contrib/ThreadSearch/resources/images/16x16/Makefile
src/plugins/contrib/ThreadSearch/resources/images/22x22/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_wxtreelist.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/wxTreeList/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/wxSmithDateTimePicker/Makefile
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
codeblocks.plist
])
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
|