Browse Source

Merge pull request #391 from fancycode/freebsd_fixes

Notes and fixes for building on FreeBSD.
pull/392/head
Joachim Bauch 9 years ago committed by GitHub
parent
commit
9b3eb02706
  1. 5
      Makefile.am
  2. 4
      README.md

5
Makefile.am

@ -163,6 +163,7 @@ install-assets: @@ -163,6 +163,7 @@ install-assets:
$(INSTALL) -d $(DESTDIR)$(SHARE)/www/static/translation
$(INSTALL) -d $(DESTDIR)$(SHARE)/www/static/css
$(INSTALL) -d $(DESTDIR)$(SHARE)/www/static/js/libs/pdf
$(INSTALL) -d $(DESTDIR)$(SHARE)/www/static/js/libs/require
$(INSTALL) -d $(DESTDIR)$(SHARE)/www/static/js/sandboxes
$(INSTALL) html/*.html $(DESTDIR)$(SHARE)/www/html
$(INSTALL) html/sandboxes/*.html $(DESTDIR)$(SHARE)/www/html/sandboxes
@ -171,10 +172,10 @@ install-assets: @@ -171,10 +172,10 @@ install-assets:
$(INSTALL) static/fonts/* $(DESTDIR)$(SHARE)/www/static/fonts
$(INSTALL) static/translation/* $(DESTDIR)$(SHARE)/www/static/translation
$(INSTALL) static/css/* $(DESTDIR)$(SHARE)/www/static/css
$(INSTALL) -D static/js/libs/require/require.js $(DESTDIR)$(SHARE)/www/static/js/libs/require/require.js
$(INSTALL) static/js/libs/require/require.js $(DESTDIR)$(SHARE)/www/static/js/libs/require
$(INSTALL) $(OUTPUT_JS)/*.js $(DESTDIR)$(SHARE)/www/static/js
$(INSTALL) $(OUTPUT_JS)/libs/pdf/*.js $(DESTDIR)$(SHARE)/www/static/js/libs/pdf
$(INSTALL) -D static/js/libs/webodf.js $(DESTDIR)$(SHARE)/www/static/js/libs/webodf.js
$(INSTALL) static/js/libs/webodf.js $(DESTDIR)$(SHARE)/www/static/js/libs
$(INSTALL) $(OUTPUT_JS)/sandboxes/*.js $(DESTDIR)$(SHARE)/www/static/js/sandboxes
install: install-binary install-assets

4
README.md

@ -13,6 +13,7 @@ The latest source of Spreed WebRTC can be found on [GitHub](https://github.com/s @@ -13,6 +13,7 @@ The latest source of Spreed WebRTC can be found on [GitHub](https://github.com/s
- [NodeJS](http://nodejs.org/) >= 0.6.0
- [autoconf](http://www.gnu.org/software/autoconf/)
- [automake](http://www.gnu.org/software/automake/)
- [git](https://git-scm.com/)
## Runtime dependencies
@ -39,6 +40,9 @@ $ ./configure @@ -39,6 +40,9 @@ $ ./configure
$ make
```
On FreeBSD, the default `make` has a different syntax, so `gmake` must be used
there.
## Build separately

Loading…
Cancel
Save