Skip to content

EresiPortingOS

Rafał Leśniak edited this page Apr 24, 2016 · 1 revision

FreeBSD

  • You may get the OS Release version using sysctl:
    $> sysctl kern.osreldate
    kern.osreldate: 504000

Ubuntu

  • If you see errors like this:
$ make
Building liballocproxy ..
make[1]: Betrete Verzeichnis '/home/tuktuk/Dokumente/trunk/liballocproxy'
cc -D__STD_C -DMALLOC_DEBUG -DUSE_ARENAS -DSHARED -DUSE_TLS -fPIC -g3 -Iinclude -I../libelfsh/include/   -c -o aproxy_malloc.o aproxy_malloc.c
aproxy_malloc.c:240:20: Fehler: unistd.h: No such file or directory
aproxy_malloc.c:241:22: Fehler: sys/mman.h: No such file or directory
aproxy_malloc.c:273:50: Fehler: stdlib.h: No such file or directory

You will need to install build-essential:

$ sudo apt-get install build-essential
  • Missing openssl:
In Datei, eingefügt von ../librevm/include/revm.h:300,
                 von include/libui.h:22,
                 von readln.c:11:
../libmjollnir/include/libmjollnir.h:19:25: Fehler: openssl/md5.h: No such file or directory
make[1]: *** [readln.32.o] Fehler 1

This will solve this problem:

$ sudo apt-get install libssl-dev
  • Do not forget to reload ld:
$ sudo ldconfig
Clone this wiki locally