// // boost/assert.hpp - BOOST_ASSERT(expr) // // Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd. // // Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears in all copies. // This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // // Note: There are no include guards. This is intentional. // // See http://www.boost.org/libs/utility/assert.html for documentation. // #undef BOOST_ASSERT #if defined(BOOST_DISABLE_ASSERTS) # define BOOST_ASSERT(expr) ((void)0) #elif defined(BOOST_ENABLE_ASSERT_HANDLER) #include namespace boost { void assertion_failed(char const * expr, char const * function, char const * file, long line); // user defined } // namespace boost #define BOOST_ASSERT(expr) ((expr)? ((void)0): ::boost::assertion_failed(#expr, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__)) #else # include # define BOOST_ASSERT(expr) assert(expr) #endif '> aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-06-17gnu: busybox: Don't install to usr....* gnu/packages/busybox.scm (busybox)[arguments]: Add a custom phase to prevent installing to %PREFIX/usr. Efraim Flashner
2019-06-17gnu: toybox: Don't install files to usr....* gnu/packages/busybox.scm (toybox)[arguments]: Add custom phase to remove any files installed in $PREFIX/usr. Efraim Flashner
2019-06-06gnu: toybox: Update to 0.8.1....* gnu/packages/busybox.scm (toybox): Update to 0.8.1. Tobias Geerinckx-Rice
2019-02-17gnu: toybox: Update to 0.8.0....* gnu/packages/busybox.scm (toybox): Update to 0.8.0. Tobias Geerinckx-Rice
2018-12-12gnu: Add toybox....* gnu/packages/busybox.com (toybox): New variable. Efraim Flashner
2018-09-18gnu: busybox: Update to 1.29.3....* gnu/packages/busybox.scm (busybox): Update to 1.29.3. Tobias Geerinckx-Rice
2018-07-19gnu: busybox: Update to 1.29.1....* gnu/packages/busybox.scm (busybox): Update to 1.29.1. [arguments]: Add custom phase to change the default value of TASKSET. Efraim Flashner