Le 18/08/2014 23:08, Timothy Pearson a écrit :
OK, it looks like I have some repairing to do. Can you post a simple set of instructions for the tqt3 build process (assuming there is more to it than just ./configure, make)? A link to the installer of the version of OpenBSD you were using would also be helpful.
Thanks!
Tim
It's openbsd 5.5 (the latest one) for amd64. http://ftp3.usa.openbsd.org/pub/OpenBSD/5.5/amd64/install55.iso Installing and using it reminds me of what a Linux distribution looked like 10 years ago ...
The TQT3 build process I use is actually simply "./configure ... && make", based on the ubuntu "rules" packaging file. ATM I use the following configure parameters: (notice the programs go under "/usr/local" not "/usr" under BSD)
./configure \ -I/usr/X11R6/include/freetype2 \ -I/usr/local/include \ -L/usr/local/lib \ \ -prefix /usr/local \ -libdir /usr/local/lib \ -sysconfdir /etc/tqt3 \ -datadir "/usr/local/share/tqt3" \ -headerdir "/usr/local/include/tqt3" \ -docdir "/usr/local/share/tqt3/doc" \ -plugindir "/usr/local/lib/tqt3/plugins" \ -translationdir "/usr/local/share/tqt3/translations" \ \ -thread \ -shared \ -fast \ -no-exceptions \ -platform openbsd-g++ \ \ -no-pch \ -cups \ -stl \ -ipv6 \ \ -sm \ -xshape \ -xinerama \ -xcursor \ -xrandr \ -xrender \ -xft \ -tablet \ -xkb \ \ -system-zlib \ -system-libpng \ -system-libmng \ -system-libjpeg \ -no-nas-sound \ \ -enable-opengl \ -dlopen-opengl \ \ -qt-gif \ -qt-imgfmt-mng \ -qt-imgfmt-png \ -qt-imgfmt-jpeg \ -plugin-imgfmt-mng \ \ -no-sql-odbc \ -plugin-sql-psql \ -plugin-sql-mysql \ -no-sql-ibase \ -plugin-sql-sqlite \ -plugin-sql-sqlite3 \ \ -lfontconfig \ -inputmethod \ -glibmainloop \ -v
Francois