summaryrefslogtreecommitdiff
blob: 13c168c51f50180066ce11ac704197b5e6dbbfb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
--- a/CMakeLists.txt	2019-07-31 00:34:43.000000000 +0200
+++ b/CMakeLists.txt	2019-10-02 00:17:34.968355656 +0200
@@ -954,6 +954,16 @@
 endif()
 #>>HUNSPELL for Speelling support
 
+#<<HYPHEN for Hyphenation support
+find_package(HYPHEN)
+if(HYPHEN_FOUND)
+	message("System Hyphen Found OK")
+	set(HAVE_HYPHEN ON)
+else()
+	message("Hyphen or its developer libraries NOT found - using bundled Hyphen instead")
+endif()
+#>>HYPHEN for Hyphenation support
+
 #<<PoDoFo for AI PDF import
 option(WITH_PODOFO "Enable support for PDF embedded in AI" ON)
 if (WITH_PODOFO)
--- a/scribus/CMakeLists.txt	2019-10-02 00:25:01.194386515 +0200
+++ b/scribus/CMakeLists.txt	2019-10-02 00:26:23.584392213 +0200
@@ -1069,7 +1069,9 @@
 	${SCRIBUS_GMAGICK_SRC}
 )
 
-if(NOT HAVE_HYPHEN)
+if(HAVE_HYPHEN)
+	include_directories(${HYPHEN_INCLUDE_DIR})
+else()
 	include_directories(third_party/hyphen)
 	set(SCRIBUS_SOURCES
 	${SCRIBUS_SOURCES}
@@ -1180,13 +1182,6 @@
 
 endif()
 
-if(HAVE_HYPHEN)
-	target_link_libraries(${EXE_NAME}
-	${HYPHEN_LIBRARY}
-	)
-endif()
-
-
 if(GESTURE_FRAME_PREVIEW)
 	 message(STATUS "Enable gesture frame preview [experimental]")
 	 set(GESTURE_FRAME_PREVIEW_SOURCES	pageitempreview.cpp)
@@ -1234,6 +1229,12 @@
 	)
 endif ()
 
+if(HAVE_HYPHEN)
+	target_link_libraries(${EXE_NAME}
+	${HYPHEN_LIBRARY}
+	)
+endif()
+
 if(WIN32)
 	set_target_properties(${EXE_NAME}
 		PROPERTIES
--- a/scribus/hyphenator.h	2019-07-31 00:35:05.000000000 +0200
+++ b/scribus/hyphenator.h	2019-10-02 00:00:42.497285638 +0200
@@ -13,7 +13,7 @@
 #include <QSet>
 
 #include "scribusapi.h"
-#include "third_party/hyphen/hyphen.h"
+#include <hyphen.h>
 
 class ScribusDoc;
 class ScribusMainWindow;