Skip to content

Instantly share code, notes, and snippets.

@divol
Created November 4, 2011 10:02
Show Gist options
  • Select an option

  • Save divol/1339031 to your computer and use it in GitHub Desktop.

Select an option

Save divol/1339031 to your computer and use it in GitHub Desktop.
how to compile freebox sdk
####################################
Modules must be compile in that order :
libela, librudp and foils_hid
for each project, on snow leopard (and my developper moded system) do the following commands:
glibtoolize
autoreconf
automake --add-missing #if needed
autoreconf # bis repetitas
./configure #--prefix=/Users/xxx/Documents/Sources/freebox_revolution/libs
if (you have this error in librudp)
./configure: line 11419: syntax error near unexpected token `ELA,'
./configure: line 11419: `PKG_CHECK_MODULES(ELA, ela)'
{
you'll get headhash if you change --prefix
comment the PKG_CHECK_MODULES line into the configure file
edit test/Makefile and add
ELA_LIBS = -L/usr/local/lib -lela
}
if (you have this error in foils_hid)
./configure: line 11419: syntax error near unexpected token `RUDP,'
./configure: line 11419: `PKG_CHECK_MODULES(RUDP, rudp ela)'
{
you'll get headhash if you change --prefix
comment the PKG_CHECK_MODULES line into the configure file
edit test/Makefile and add to LIBS
LIBS = -L/usr/local/lib -lela -lrudp
}
make
sudo su
make install
@divol
Copy link
Copy Markdown
Author

divol commented Mar 9, 2012

do not know

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment