http://bugs.winehq.org/show_bug.cgi?id=17896
Matias Colli matiasbsd@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |matiasbsd@gmail.com
--- Comment #4 from Matias Colli matiasbsd@gmail.com 2012-05-02 19:02:36 CDT --- Yes, i finally found the solution. We should add the correct parameter for show the printer compiled librarys: --libs.
In this case the changes are in configure.ac and configure file as show bellow: - ac_cups_libs=`cups-config --ldflags 2>/dev/null` + ac_cups_libs=`cups-config --ldflags --libs 2>/dev/null`
This mini-patch is necesary because the cups-config program for OpenBSD is not the same that cups-config program for Linux. My name is Matias Colli, I'm a OpenBSD and UNIX fanatic and I'm trying to hack the wine code to make running it on my OpenBSD 5.0 Desktop (http://lovingunix.blogspot.com). I'm very happy because since few day ago that I'm trying to compile wine 1.1.19 and finally I did it.
For the phtread problem, probe to add this variable environment: export CFLAGS="-I/usr/local/include -I/usr/local/include/libpng -pthread" and compile with flag: ./configure --with-pthread. So, replace all -lpthread occurrences to -pthread.