Changes in / [1c6c3e1d:133461c] in mainline
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
r1c6c3e1d r133461c 31 31 BINUTILS_GDB_GIT="https://github.com/HelenOS/binutils-gdb.git" 32 32 33 BINUTILS_BRANCH="binutils-2_ 40-helenos"34 BINUTILS_VERSION="2. 40"33 BINUTILS_BRANCH="binutils-2_31_1-helenos" 34 BINUTILS_VERSION="2.31.1" 35 35 36 36 GDB_BRANCH="gdb-8_2-helenos" … … 38 38 39 39 GCC_GIT="https://github.com/HelenOS/gcc.git" 40 GCC_BRANCH=" 13_1_1-helenos"41 GCC_VERSION=" 13.1.1"40 GCC_BRANCH="8_2_0-helenos" 41 GCC_VERSION="8.2.0" 42 42 43 43 BASEDIR="$PWD" … … 414 414 check_error $? "Change directory failed." 415 415 416 if $USE_HELENOS_TARGET ; then 417 SYSROOT=--with-sysroot --with-build-sysroot="${WORKDIR}/sysroot" 418 else 419 SYSROOT=--without-headers 420 fi 421 416 422 change_title "GCC: configure (${PLATFORM})" 417 423 PATH="$PATH:${INSTALL_DIR}/${PREFIX}/bin" "${BASEDIR}/downloads/gcc-${GCC_VERSION}/configure" \ … … 426 432 --disable-shared \ 427 433 --disable-werror \ 428 --without-headers434 $SYSROOT 429 435 check_error $? "Error configuring GCC." 430 436 -
uspace/lib/gfxfont/test/tpf.c
r1c6c3e1d r133461c 118 118 gfx_font_props_init(&props); 119 119 props.size = test_font_size; 120 props.flags = (gfx_font_flags_t)test_font_flags;120 props.flags = test_font_flags; 121 121 122 122 gfx_font_metrics_init(&metrics); -
uspace/lib/ui/src/window.c
r1c6c3e1d r133461c 1196 1196 1197 1197 if (window->dwindow != NULL) { 1198 (void) display_window_resize_req(window->dwindow, 1199 (display_wnd_rsztype_t) rsztype, // Same constants in the enums 1198 (void) display_window_resize_req(window->dwindow, rsztype, 1200 1199 pos, pos_id); 1201 1200 }
Note:
See TracChangeset
for help on using the changeset viewer.