git-svn-id: https://svn.salfter.gotdns.org/svn/h264dvr/trunk@390 1b90f75b-8b96-4784-87c0-14078182fce6
15 lines
599 B
Plaintext
15 lines
599 B
Plaintext
== setting up the environment ==
|
|
|
|
emerge crossdev && crossdev i686-pc-mingw32 && emerge nsis
|
|
tar xjf /usr/portage/distfiles/wxPython-src-2.8.11.0.tar.bz2
|
|
cd wxPython-src-2.8.11.0
|
|
./configure --prefix=/usr/i686-pc-mingw32 --host=i686-pc-mingw32 --target=i686-pc-mingw32 --with-msw --enable-unicode && make && make install
|
|
|
|
== finding DLLs that may need to be included with EXEs ==
|
|
|
|
find /usr/i686-pc-mingw32/ /usr/*-pc-linux-gnu/i686-pc-mingw32/gcc-bin/ -name \*.dll -exec du \{} \;
|
|
|
|
== building this package ==
|
|
|
|
./configure --host=i686-pc-mingw32 --with-wx-config=/usr/i686-pc-mingw32/bin/wx-config
|