For$
<!-- begin site header -->
<div id=

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - benoqkuke

Pages: [1]
1
Discussion / Re: Mineserver Runs On... (post your specs)
« on: April 02, 2011, 05:56:19 am »
It runs on my Buffalo LS-XHL NAS (Debian Squeeze installed on it)

ARM Feroceon 1.2Ghz
256Mo ddr (I suppose)
Debian Squeeze Kernel 2.6.31.8

2
Plugins / curseui
« on: April 02, 2011, 05:54:07 am »
Hi,

I changed the end function so now the terminal do not crash at the end. Here is my new end function:
Code: [Select]
void CursesScreen::end()
{
  // Kill our windows
  destroyWindow(playerWin);
  destroyWindow(chatWin);
  destroyWindow(logWin);
  destroyWindow(titleWin);
  destroyWindow(commandWin);
 
  // Stop NCurses
  endwin();
}

The terminal is not cleared at the end but does not crash anymore !

I'm trying to clear properly the terminal, I'll post my solution if it proper enough.

3
Development / Re: System Requirements? CPU: ARM?
« on: April 02, 2011, 03:05:48 am »
Hi,

I run mineserver on a 1.2Ghz ARM7 processor with 256M of memory.
i just had to change   set(CMAKE_CXX_FLAGS "-msse -Wunused -Wall") into   set(CMAKE_CXX_FLAGS "-Wunused -Wall") in CMakeList.txt (ARM processor does not have SSE instructions)
 

Pages: [1]