Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-13CMake: on linux, make boost now always require multithreaded libs, disablingBrecht Van Lommel
this was a hack for the precompiled libs in svn. Also bumped minimum version to 1.48 because that's the first version that contains boost::locale.
2012-12-12OSX: make cmake and scons both compile jack and ndof with newer sdk'sJens Verwiebe
2012-12-12OSX/cmake: fix ndof compileJens Verwiebe
2012-12-10CMake: fix numpy install not getting properly disabled when numpy was not found.Brecht Van Lommel
2012-12-09Further refined the check for GCC 4.2 to not add the flag -Wuninitialized then.Ton Roosendaal
Now it checks for "Not less then 4.3" because it doesnt have >= 4.3.
2012-12-09CMake:Antony Riakiotakis
*Remove WITH_MINGW64 option, automatically test for presence of __MINGW64__ definition instead to determine presence of MinGW32/64. *Placeholder for LLVM libraries (Compiled locally but still crashing on render due to thread issue).
2012-12-05Fix #33411: crash baking smoke with FFT high resolution.Brecht Van Lommel
CMake had FFTW disabled by default, and when FFTW was not enabled it lead to uninitialized memory usage. Now it falls back to wavelet if there is no FFTW, and I've enabled it by default in CMake. If it's not found on Linux it will get disabled automatically.
2012-12-04disable numpy warning with cmake, since we didnt end up bundling this with ↵Campbell Barton
blender yet.
2012-11-29we need 2.8.8 for cmake on mac - patch by Jens VerwiebeDalai Felinto
2012-11-27CMake: hide some unnecessary LLVM/OSL/EXR prints.Brecht Van Lommel
2012-11-27remove unmaintained eltopo, keeping scons/cmake entries, but commenting out ↵Campbell Barton
user visible config to make branch merging less of a hassle.
2012-11-26Remove non existent pthread include directory for MinGW, also slight message ↵Antony Riakiotakis
correction for 64 bit MinGW
2012-11-26Enable python 3.3 for MinGW/CMake.Antony Riakiotakis
MinGW32 python libs will be commited later in the day
2012-11-26switch verious references from py3.2 -> 3.3 or just 3.Campbell Barton
2012-11-26Switch windows to python 3.3Sergey Sharybin
Should affect on msvc2008 only, however scons with msvc2010 could still be broken.
2012-11-22Fix 33149: LLVM caused startup crash on linux systems using Mesa llvmpipe.Brecht Van Lommel
Now we hide the LLVM symbols with an ld version script to avoid conflicts.
2012-11-21More LLVM work (now always search llvm-config into LLVM_DIRECTORY whenBastien Montagne
set!).
2012-11-20Seems extra hints are needed to find llvm-config on linuxSergey Sharybin
2012-11-19Adding a linux-only WITH_STATIC_LIBS option, which will try to link against ↵Bastien Montagne
static libs. This should help building more portable blender. Still experimental and WIP.
2012-11-19OSX/osl: link also boost_wave, cause we use its preprocessor nowJens Verwiebe
2012-11-19Bring back debug boost libs to cmake. Also use debug version of OIIO for ↵Sergey Sharybin
debug builds. SO now blender could be debugged on windows again! There'll likely be compilation error of debug version of blender using msvc2010, not currently sure how to solve that in a good way.
2012-11-19Windows Libs: move OpenEXR headers to same directory structure as other ↵Brecht Van Lommel
platforms.
2012-11-19Localization should not depend on debug locale librarySergey Sharybin
Linking happens fine, but blender crashes on startup -- crash with familiar backtrace happens with i18n disabled (in that case it's something to do with OIIO).
2012-11-19OSX/cmake: py 3.3 migrationJens Verwiebe
2012-11-19Fix when statically linking with distro's boost: in this case, we most ↵Bastien Montagne
likely also need to statically link against icu, as most boost packages are built with it. Without that, you get a bunch of errors at link time (when using boost_locale, or, in freestyle branch, boost_regex). So when you enable Boost_USE_STATIC_LIBS, you should also set Boost_USE_ICU to True. Will add a note about that in build doc too.
2012-11-18CMakeList: Better handling of llvm under linux (now you can try to force ↵Bastien Montagne
usage of a specific version of llvm before using default one). Also cleared LIBDIR var from linux code, as we have no more those svn folders!
2012-11-17Windows / Cmake:Thomas Dinges
* Another place where "psapi" was missing, caused OIIO errors.
2012-11-16* Fix typo in cmake, own fault. Thomas Dinges
2012-11-15Windows / CMake:Thomas Dinges
* Disable Debug Boost detection in cmake. Debug libs for boost will be removed, they are quite huge in svn. Keeping the lines here though, so devs with own debug libs can compile with it.
2012-11-15Another nuch of fixes/improvements to install_deps script, among which:Bastien Montagne
*New $INST variable to easily change the installation root dir of compiled libs. *Better handling of versions for debian (DEB) too (and fix a bug for fedora (RPM) ones). *Enhancements/fixes to compile_FOO funcs: **Most notable, we now can force a recompile when we change something into these funcs, so user will always have latest-instructions compiled libs (else, he would have have to manually remove lib dirs under $INST...) *General naming cleanup inside script (still wip). Also adding boost date_time lib to linux in cmake file (why wasn't it there???).
2012-11-15Cycles OSL: windows build system changes to support static OSL/OIIO.Brecht Van Lommel
2012-11-14Cycles OSL: windows build fixes.Brecht Van Lommel
2012-11-12OSX/cmake: revert a testchange back for kaitoJens Verwiebe
2012-11-12replace BM_edge_face_count with ↵Campbell Barton
BM_edge_is_manifold/BM_edge_is_wire/BM_edge_is_boundary
2012-11-12Fix CMake boost locale lib names for MinGW64.Antony Riakiotakis
2012-11-12OSX: fix linking with new boost_localeJens Verwiebe
2012-11-11revert muddle in changing jack in msvc instead appleJens Verwiebe
2012-11-11Restore my work overwritten by 52106 and some further reordering for cmake ↵Jens Verwiebe
2.8.10, todo: take into account missing symlinks for Library and /usr/local in newest xcode, affects ndof and jack
2012-11-11OSX/cmake-2.8-10: just reorder, now sdk must be set before deployment targetJens Verwiebe
2012-11-11Replacing gettext i18n backend by boost::locale one.Bastien Montagne
This commit adds a small and simplistic C wrapper around boost's locale library as intern/locale, and heavily simplifies/reduces Blender's own i18n code (under blenfont/ dir). And it adds back UI translation on windows' official builds (with msvc)! Note to platform maintainers: iconv and gettext (libintl) can now be removed from precompiled libs (not gettext binaries, under windows, of course ;) ). Note to MinGW32/64 users: boost_locale lib has not yet been uploaded for those build env, please disable WITH_INTERNATIONAL for now (hopefully will be fixed very soon, have contacted psy-fy).
2012-11-11OSX/cmake: actualize message for xcode specificsJens Verwiebe
2012-11-10OSX/cmake: rework the optional frameworks handling more osx-like, make jack ↵Jens Verwiebe
weak-linked
2012-11-09code cleanup: double promotion warnings, also allow cmake to build SDL ↵Campbell Barton
without audaspace.
2012-11-09code cleanup: move shrinkwrap's benchmark macro into PIL_time.h & some minor ↵Campbell Barton
style edits.
2012-11-09CMake: LLVM configuration tweak to check if llvm-config actually exists beforeBrecht Van Lommel
using it (patch by IRIE Shinsuke). Also search for any library instead of just static ones.
2012-11-08OSX/cmake: fix jack compileJens Verwiebe
2012-11-08OSX/cmake: workaround for getting right LC_VERSION_MIN_MACOSX with makefilesJens Verwiebe
2012-11-08CMake: Since Audaspace now requires Boost, auto enable Boost if ↵Mitchell Stokes
WITH_AUDASPACE is enabled.
2012-11-07Fix a typo and more descriptve commetJens Verwiebe
2012-11-07OSX: some more version target cleanups and correctionsJens Verwiebe