• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Dec-2021-

api_gen/H20-Dec-2021-11,7019,857

autoconf/H20-Dec-2021-3,7703,263

c_src/H20-Dec-2021-51,81950,324

doc/H20-Dec-2021-1,7671,495

ebin/H20-Dec-2021-

examples/H20-Dec-2021-10,5917,810

include/H20-Dec-2021-8,7328,390

priv/H03-May-2022-

src/H20-Dec-2021-102,72962,437

test/H20-Dec-2021-3,5202,538

AUTHORSH A D20-Dec-2021238 115

MakefileH A D20-Dec-20211.1 KiB4516

READMEH A D20-Dec-20211.5 KiB4935

config.mk.inH A D20-Dec-2021980 3730

configureH A D20-Dec-2021197.8 KiB7,1395,875

configure.inH A D20-Dec-202120.3 KiB759660

infoH A D20-Dec-202188 32

prebuild.skipH A D20-Dec-202125 32

vsn.mkH A D20-Dec-202117 21

wxwin-2.8.m4H A D20-Dec-202112.1 KiB367325

wxwin-2.9.m4H A D20-Dec-202139.6 KiB1,061937

README

1REQUIREMENTS:
2	At least Erlang-R13B with smp enabled. It Requires unicode support.
3
4        Linux, Mac, Solaris-10 or Windows.
5
6	On linux you will need wxWidgets-2.8 compiled with everything
7	enabled, including unicode and opengl support.
8
9	And I have given up on Solaris-8|9, wxWidgets on my old gtk version
10	doesn't run well, 7 of 10 wxWidgets examples seg fault.
11	Some early tests show that Solaris 10 works, though.
12
13BUILDING:
14	You will need wxWidgets-2.8.*
15
16        On mac (snow leopard) I built wxwidgets with:
17
18        mkdir MYBUILD; cd MYBUILD
19	../configure --with-opengl --enable-unicode --enable-graphics_ctx \
20                --enable-gnomeprint \    On unix only
21                --disable-shared
22	make && make install
23        cd contrib/src/stc/
24	make && make install
25
26	Or grab them prebuilt from macports.
27
28	On linux I have used the wxwidgets-libraries that came with
29	the distribution. It requires wxStyledTextControl which was
30	prebuilt on my linux, otherwise you have to build wxWidgets
31	by your self as on the mac above.
32
33	On windows I used MinGW and Msys, I build wxwidgets with:
34
35	mkdir MYBUILD; cd MYBUILD
36	../configure --prefix=/c/local/ --with-opengl  --enable-graphics_ctx \
37                     --enable-unicode --disable-shared --with-msw
38	make && make install
39        cd contrib/src/stc/
40	make && make install
41
42        You should also build wxerlang with msys and mingw since
43	I havn't tested on cygwin at all.
44        You need to use werl on windows, erl (non-gui) hangs wxwidgets startup.
45
46Cheers
47 Dan Gudmundsson
48
49