Here I got small example how to run Yaws embedded, but how I need to install Yaws to get it worked?
Asked
Active
Viewed 1,312 times
1
-
I would suggest you to rephrase the title in "How to install Yaws?", given the question is not related to 'embedded'. – Roberto Aloi Oct 21 '11 at 06:44
-
I will try all to be sure and then rename it. And i really have thought i need special installation for embedded case. – Yola Oct 21 '11 at 07:14
-
@Yola - It's fine to leave the name as it is, [embedding yaws](http://yaws.hyber.org/embed.yaws) in another program is, as Roberto states, pretty standard stuff. However, the [tag:embedded] tag refers to embedded systems like toasters and garage door openers, that is, *computer systems running on dedicated hardware for a specific purpose* per the tag wiki, not to embedding one program within another. – Kevin Vermeer Oct 21 '11 at 11:58
1 Answers
3
Pretty standard stuff. You can download the package from:
http://yaws.hyber.org/download/
Uncompress it and follow the instructions on the README file:
https://github.com/klacke/yaws/blob/467a675866f5d6b62e25be0b03e7023acc910fab/README
If you prefer, you can clone the repository from:

Roberto Aloi
- 30,570
- 21
- 75
- 112
-
Sorry, it my first sources compilation in Ububntu, im new to linux. And i did following steps 1 - ./configure --prefix=/usr/local, 2 - make local_install. But second command gave me the error: epam.c:2:22: fatal error: pam_appl.h: No such file or directory – Yola Oct 21 '11 at 07:45
-
2
-
Ok passed througth. But next appears)) - Yaws: Bad conf: "Can't find config file ". Do i need to create it manually? May be any link about it.. – Yola Oct 21 '11 at 08:19
-
Ok, yaws worked as standalone app. Can get access from Firefox, now will try to launch as embedded app. – Yola Oct 21 '11 at 09:08
-
Ok, just copied yaws into my app dir end include yaws.hrl, then add path to lib. All worked out fine. Thanks. – Yola Oct 21 '11 at 09:47