<div dir="ltr"><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2">Hello,<br><br></font></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2">can you post the output<span style="font-family:monospace,monospace"> of :<br><br>8<------------------------------------------------------<br></span></font></div><div class="gmail_default"><span style="font-family:monospace,monospace"><font size="2">$ find /usr/include -iname "freetype.h"<br></font><font size="2"><br>$ find /usr/local/include -iname "freetype.h"<br><br></font></span></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2"><span style="font-family:monospace,monospace">$ freetype-config --cflags<br>8<-----------------------------------------------------------</span><br><br></font></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2">Here is what I get on my side :<br><span style="font-family:monospace,monospace">8<--------------------------------------------------------<br></span></font><span style="font-family:monospace,monospace"><font size="2"><font size="2">$ find /usr/include -iname "freetype.h"<br></font><font size="2">/usr/include/freetype2/freetype.h<br></font></font><br><font size="2"><font size="2"><font size="2">$ find /usr/local/include -iname "freetype.h"</font><br></font></font></span></div><div class="gmail_default"><span style="font-family:monospace,monospace"><font size="2"><font size="2"><nothing><br></font></font><br><font size="2"><font size="2"><font size="2">$ freetype-config --cflags</font><br></font></font></span></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2"><span style="font-family:monospace,monospace"><font size="2">-I/usr/include/freetype2<br></font>8<--------------------------------------------------------</span><br><br></font></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2">Now, run the command below :<br><br><span style="font-family:monospace,monospace">8<----------------------------------------------<br></span></font></div><div class="gmail_default"><span style="font-family:monospace,monospace"><font size="2">$ find $(freetype-config --cflags | cut -f2- -d"I") -iname "freetype.h"<br></font></span></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2"><span style="font-family:monospace,monospace">8<----------------------------------------------</span><br><br></font></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2">On my side, I get this :<br></font><br><span style="font-family:monospace,monospace"><font size="2">8<----------------------------------------------<br></font><font size="2">find $(freetype-config --cflags | cut -f2- -d"I") -iname "freetype.h"</font></span><font size="2"><span style="font-family:monospace,monospace"><br>/usr/include/freetype2/freetype.h<br>8<----------------------------------------------</span><br></font></div><br><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2">In /tmp, create a directory cmake-test, then, in that directory create the file CMakeLists.txt with the content below :<br><br></font></div><div class="gmail_default"><span style="font-family:monospace,monospace"><font size="2">8<------------/tmp/cmake-test/CMakeLists.txt ------------<br></font></span></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2"><span style="font-family:monospace,monospace"><font size="2"><font size="2">cmake_minimum_required(VERSION 2.8)<br>find_package(Freetype)<br>if (FREETYPE_FOUND)<br>  include_directories(${FREETYPE_INCLUDE_DIRS})<br>endif (FREETYPE_FOUND)<br><br>MESSAGE("freetype_include_dirs: ${FREETYPE_INCLUDE_DIRS}")<br></font></font>8<----------------------------------------------------------<br></span><br></font></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2">In /tmp/cmake-test, run the command below :<br></font></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2"><font size="2"><span style="font-family:monospace,monospace">8<---------------------------------------------------------<br></span></font><span style="font-family:monospace,monospace">$ cmake .</span><br></font><font size="2"><span style="font-family:monospace,monospace">8<---------------------------------------------------------<br></span></font><span style="font-family:monospace,monospace"></span></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2"><br>Here is what you should get :<br><span style="font-family:monospace,monospace">8<---------------------------------------------------------<br></span></font><span style="font-family:monospace,monospace">-- The C compiler identification is GNU 4.8.2<br>-- The CXX compiler identification is GNU 4.8.2<br>-- Check for working C compiler: /usr/bin/cc<br>-- Check for working C compiler: /usr/bin/cc -- works<br>-- Detecting C compiler ABI info<br>-- Detecting C compiler ABI info - done<br>-- Check for working CXX compiler: /usr/bin/c++<br>-- Check for working CXX compiler: /usr/bin/c++ -- works<br>-- Detecting CXX compiler ABI info<br>-- Detecting CXX compiler ABI info - done<br>-- Found Freetype: /usr/lib/libfreetype.so (found version "2.5.5") <br>freetype_include_dirs: /usr/include/freetype2;/usr/include<br>-- Configuring done<br>-- Generating done<br>-- Build files have been written to: /tmp/cmake-test<br></span><font size="2"><span style="font-family:monospace,monospace">8<---------------------------------------------------------</span><br></font></div>​<br><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><font size="2">-- <br></font></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:large"><font size="2">SeB</font><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">2017-08-05 22:49 GMT+02:00 Rich Shepard <span dir="ltr"><<a href="mailto:rshepard@appl-ecosys.com" target="_blank">rshepard@appl-ecosys.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Sat, 5 Aug 2017, Sebastien BALLET wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
The differences between the line I sent in my previous post and the<br>
corresponding line from your last build is as below :<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
--I/usr/include/freetype2<br>
+-I/usr/local/include<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm wondering why /usr/include/freetype2 is not found on your side. It<br>
seems (but I can be wrong) that /usr/local/include is used instead of<br>
/usr/include/freetype2. Maybe you have something in /usr/local/include<br>
which cause your issue.<br>
</blockquote>
<br>
Sebastien,<br>
<br>
  Two years ago, for reasons long forgotten, I made a soft link in<br>
/usr/local/include/freetype2 to /usr/include/freetype2. I just removed that<br>
link.<br>
<br>
  But, that does not fix the problem:<br>
<br>
Scanning dependencies of target scribus_desaxe_lib<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxXML.cpp.<wbr>o<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxiohelper<wbr>.cpp.o<br>
In file included from<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/desaxe/saxiohelper.cpp:10:0:<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/scfonts.h:19:23: fatal error: freetype.h: No<br>
/ such file or directory<br>
 #include FT_FREETYPE_H<br>
                       ^<br>
compilation terminated.<br>
make[2]: ***<br>
[scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/saxiohelpe<wbr>r.cpp.o] Error 1<br>
make[1]: *** [scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/all] Error 2<br>
make: *** [all] Error 2<br>
<br>
  This might help:<br>
<br>
Invoking alternate editor...<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Friday, I can meet you somewhere closer to you. Otherwise it'll pretty<br>
</blockquote>
    IW   /tmp/pico.60854 (Modified)(mail)<br>
Row 41   Col 1    1:47  Ctrl-K H for help<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
The differences between the line I sent in my previous post and the<br>
corresponding line from your last build is as below :<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
--I/usr/include/freetype2<br>
+-I/usr/local/include<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm wondering why  /usr/include/freetype2 is not found on your side. It<br>
seems (but I can be wrong) that /usr/local/include is used instead of /usr/include/freetype2. Maybe you have something in /usr/local/include which cause your issue.<br>
</blockquote>
<br>
Sebastien,<br>
<br>
  Two years ago, for reasons long forgotten, I made a soft link in<br>
/usr/local/include/freetype2 to /usr/include/freetype2. I just removed that<br>
link.<br>
<br>
  But, that does not fix the problem:<br>
<br>
Scanning dependencies of target scribus_desaxe_lib<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxXML.cpp.<wbr>o<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxiohelper<wbr>.cpp.o<br>
In file included from<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/desaxe/saxiohelper.cpp:10:0:<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/scfonts.h:19:23: fatal error: freetype.h: No<br>
/ such file or directory<br>
 #include FT_FREETYPE_H<br>
                       ^<br>
compilation terminated. make[2]: ***<br>
[scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/saxiohelpe<wbr>r.cpp.o] Error 1<br>
make[1]: *** [scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/all] Error 2 make: *** [all] Error 2<br>
<br>
  This might help:<br>
<br>
Invoking alternate editor...<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Friday, I can meet you somewhere closer to you. Otherwise it'll pretty<br>
</blockquote>
    IW   /tmp/pico.60854 (Modified)(mail)<br>
Row 41   Col 1    1:47  Ctrl-K H for help<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
The differences between the line I sent in my previous post and the<br>
corresponding line from your last build is as below :<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
--I/usr/include/freetype2<br>
+-I/usr/local/include<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm wondering why  /usr/include/freetype2 is not found on your side. It<br>
seems (but I can be wrong) that /usr/local/include is used instead of /usr/include/freetype2. Maybe you have something in /usr/local/include which cause your issue.<br>
</blockquote>
<br>
Sebastien,<br>
<br>
  Two years ago, for reasons long forgotten, I made a soft link in<br>
/usr/local/include/freetype2 to /usr/include/freetype2. I just removed that<br>
link.<br>
<br>
  But, that does not fix the problem:<br>
<br>
Scanning dependencies of target scribus_desaxe_lib<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxXML.cpp.<wbr>o<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxiohelper<wbr>.cpp.o<br>
In file included from<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/desaxe/saxiohelper.cpp:10:0:<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/scfonts.h:19:23: fatal error: freetype.h: No<br>
/ such file or directory<br>
 #include FT_FREETYPE_H<br>
                       ^<br>
compilation terminated. make[2]: ***<br>
[scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/saxiohelpe<wbr>r.cpp.o] Error 1<br>
make[1]: *** [scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/all] Error 2 make: *** [all] Error 2<br>
<br>
  This might help:<br>
<br>
Invoking alternate editor...<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Friday, I can meet you somewhere closer to you. Otherwise it'll pretty<br>
</blockquote>
    IW   /tmp/pico.60854 (Modified)(mail)<br>
Row 41   Col 1    1:47  Ctrl-K H for help<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
The differences between the line I sent in my previous post and the<br>
corresponding line from your last build is as below :<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
--I/usr/include/freetype2<br>
+-I/usr/local/include<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm wondering why  /usr/include/freetype2 is not found on your side. It<br>
seems (but I can be wrong) that /usr/local/include is used instead of /usr/include/freetype2. Maybe you have something in /usr/local/include which cause your issue.<br>
</blockquote>
<br>
Sebastien,<br>
<br>
  Two years ago, for reasons long forgotten, I made a soft link in<br>
/usr/local/include/freetype2 to /usr/include/freetype2. I just removed that<br>
link.<br>
<br>
  But, that does not fix the problem:<br>
<br>
Scanning dependencies of target scribus_desaxe_lib<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxXML.cpp.<wbr>o<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxiohelper<wbr>.cpp.o<br>
In file included from<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/desaxe/saxiohelper.cpp:10:0:<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/scfonts.h:19:23: fatal error: freetype.h: No<br>
/ such file or directory<br>
 #include FT_FREETYPE_H<br>
                       ^<br>
compilation terminated. make[2]: ***<br>
[scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/saxiohelpe<wbr>r.cpp.o] Error 1<br>
make[1]: *** [scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/all] Error 2 make: *** [all] Error 2<br>
<br>
  This might help:<br>
<br>
Invoking alternate editor...<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Friday, I can meet you somewhere closer to you. Otherwise it'll pretty<br>
</blockquote>
    IW   /tmp/pico.60854 (Modified)(mail)<br>
Row 41   Col 1    1:47  Ctrl-K H for help<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
The differences between the line I sent in my previous post and the<br>
corresponding line from your last build is as below :<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
--I/usr/include/freetype2<br>
+-I/usr/local/include<br>
</blockquote>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm wondering why  /usr/include/freetype2 is not found on your side. It<br>
seems (but I can be wrong) that /usr/local/include is used instead of /usr/include/freetype2. Maybe you have something in /usr/local/include which cause your issue.<br>
</blockquote>
<br>
Sebastien,<br>
<br>
  Two years ago, for reasons long forgotten, I made a soft link in<br>
/usr/local/include/freetype2 to /usr/include/freetype2. I just removed that<br>
link.<br>
<br>
  But, that does not fix the problem:<br>
<br>
Scanning dependencies of target scribus_desaxe_lib<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxXML.cpp.<wbr>o<br>
[  0%] Building CXX object<br>
scribus/desaxe/CMakeFiles/scri<wbr>bus_desaxe_lib.dir/saxiohelper<wbr>.cpp.o<br>
In file included from<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/desaxe/saxiohelper.cpp:10:0:<br>
/tmp/SBo/scribus-1.4.6/scribus<wbr>/scfonts.h:19:23: fatal error: freetype.h: No<br>
/ such file or directory<br>
 #include FT_FREETYPE_H<br>
                       ^<br>
compilation terminated. make[2]: ***<br>
[scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/saxiohelpe<wbr>r.cpp.o] Error 1<br>
make[1]: *** [scribus/desaxe/CMakeFiles/scr<wbr>ibus_desaxe_lib.dir/all] Error 2 make: *** [all] Error 2<br>
<br>
  This might help:<br>
<br>
[root@salmo /opt/slackbuilds/Office/scribu<wbr>s]# find / -name freetype2<br>
/usr/include/freetype2<br>
<br>
  It's there, but not being picked up. Makes no sense to me.<br>
<br>
Thanks,<br>
<br>
Rich<br>
______________________________<wbr>_________________<br>
SlackBuilds-users mailing list<br>
<a href="mailto:SlackBuilds-users@slackbuilds.org" target="_blank">SlackBuilds-users@slackbuilds.<wbr>org</a><br>
<a href="https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/<wbr>mailman/listinfo/slackbuilds-u<wbr>sers</a><br>
Archives - <a href="https://lists.slackbuilds.org/pipermail/slackbuilds-users/" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/<wbr>pipermail/slackbuilds-users/</a><br>
FAQ - <a href="https://slackbuilds.org/faq/" rel="noreferrer" target="_blank">https://slackbuilds.org/faq/</a><br>
<br>
</blockquote></div><br></div>