The Open Lighting Project has moved!
We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
Difference between revisions of "Libartnet on Windows"
From wiki.openlighting.org
(New page: This HOWTO outlines a method for compiling libartnet on Windows using MinGW. you'll need msys, mingw and autotools installed. o autoconf o automake o libto...) |
|||
Line 15: | Line 15: | ||
git clone http://www.nomis52.net/git/libartnet | git clone http://www.nomis52.net/git/libartnet | ||
+ | |||
+ | == Build == | ||
+ | |||
+ | edit libartnet/configure.in | ||
+ | (i did this with Bloc-notes because the way the file is recorded is important.) | ||
+ | |||
+ | add AC_LIBTOOL_WIN32_DLL macro before AC_PROG_LIBTOOL | ||
+ | |||
+ | # Checks for programs. | ||
+ | AC_PROG_CC | ||
+ | AC_PROG_INSTALL | ||
+ | AC_PROG_LN_S | ||
+ | AC_PROG_MAKE_SET | ||
+ | ''AC_LIBTOOL_WIN32_DLL'' | ||
+ | AC_PROG_LIBTOOL |
Revision as of 08:20, 30 June 2009
This HOWTO outlines a method for compiling libartnet on Windows using MinGW.
you'll need msys, mingw and autotools installed.
o autoconf o automake o libtool
This is the biggest part of the job.
Download Libartnet
Sources (via git) - this will download latest libartnet version
git clone http://www.nomis52.net/git/libartnet
Build
edit libartnet/configure.in (i did this with Bloc-notes because the way the file is recorded is important.)
add AC_LIBTOOL_WIN32_DLL macro before AC_PROG_LIBTOOL
- Checks for programs.
AC_PROG_CC AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL