> Hello, > > I found that the configure for poppler to enable both qt4 and qt5 seems to > be broken even with the sed fix applied as per the instructions. > > Out of shear frustration I deleted the extracted poppler directory and > re-extracted a fresh copy. I created a build directory within it and > typed: > > cmake prefix=/usr .. > > After it created the make files I checked and saw that it had detected > both qt4 and qt5. > > I typed make and it went through the entire build without any errors and > both qt4 and qt5 gets built. > > Would it be possible for one of the developers to check this out and > provide instructions for using cmake instead of the broken configure? > > I have not installed it, just built it because I am not entirely sure how > to specify the sysconfdir and disabling of static when using cmake. > > You get moc errors when using the sed when it comes to building the qt5 > module. > > Regards, > > Christopher. > > -- > http://linuxfromscratch.org/mailman/listinfo/blfs-support > FAQ: http://www.linuxfromscratch.org/blfs/faq.html > Unsubscribe: See the above information page > Hello Again,
Well I have managed to work out how to change the instructions to using cmake: mkdir build && cd build && cmake -DBUILD_SHARED_LIBS=ON \ -DCMAKE_INSTALL_PREFIX=/usr \ -DENABLE_XPDF_HEADERS:BOOL=ON \ -DENABLE_LIBCURL:BOOL=ON \ -Wno-dev .. && make I was not able to get it to do anything with the sysconfdir. I tried: -DSYSCONF_INSTALL_DIR=/etc and after generating the make files it said that, that option was unused in the project. There is no mention of that directory in the CMakeCache.txt file so it may well be that it has not been added. Regards, Christopher -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page