New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix CMake Error not found QT_QT_INCLUDE_DIR when specify both --with-qt4 and --with-qt5. #62
Conversation
…qt4 and --with-qt5.
|
Thanks for your report bug I couldn't reproduce the problem on my Debian GNU/Linux sid. Here are command lines I used: (Required packages are installed by |
|
hmmm, i could not reproduced your process. |
|
here is configure's error log, but configure itself exits with status code 0. here is make's error log after above configured. it exits with status code 1. cmake with qt4/toolbar/CMakeLists.txt spits above configure's error log. |
|
i made reproducible Dockefile. Dockerfile: FROM debian:sid
ENV LANG=ja_JP.UTF-8 LC_ALL=ja_JP.UTF-8
ADD sources.list /etc/apt/sources.list
ADD locale.gen /etc/locale.gen
RUN apt-get update
RUN apt-get build-dep -y uim
RUN apt-get install -y \
git \
build-essential \
devscripts \
fakeroot \
automake1.11 \
qtbase5-dev \
qtbase5-private-dev \
qt5-default \
dh-autoreconf \
locales \
ruby
RUN git clone --recursive https://github.com/uim/uim.git
RUN cd uim/sigscheme/libgcroots && ./autogen.sh
RUN cd uim/sigscheme && ./autogen.sh
RUN cd uim && ./autogen.sh
CMD cd uim && ./configure QMAKE5=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake \
--enable-maintainer-mode --with-qt4 --with-qt5 && makesources.list: locale.gen: put above 3 files into some one directory, run below commands (wait a sec) and reproduce this issue. |
|
Thanks.
|
|
It seems that both I think that |
|
thank you for your investigation. for testing, i removed |
Yes please. |
|
i reported this issue Debian BTS ( https://bugs.debian.org/793603 ), thank you! |
|
Thanks! |
|
Qt4 removal upcoming, so closing it. |
if specify both --with-qt4 and --with-qt5 at configure,
it causes CMake Error not found QT_QT_INCLUDE_DIR.
there is no side effect outside of Qt5 branch.