fix #7440 - GTK4 version is now master
[roobuilder] / configure.ac
1
2 dnl Process this file with autoconf to produce a configure script.
3 AC_PREREQ([2.68])
4
5 AC_INIT([roobuilder], [4.2.0])
6
7 AC_CONFIG_HEADERS([config.h])
8
9 AM_INIT_AUTOMAKE([1.11 subdir-objects])
10 AM_MAINTAINER_MODE([enable])
11
12 AM_SILENT_RULES([yes])
13
14 AC_PROG_CC
15
16 AM_PROG_VALAC([0.36.0])
17
18
19 AC_CHECK_LIB([m],[cos])
20
21 dnl we need to check these exist, then it will generate a compile string for them.
22
23 dnl  we add zlib in to pad the listof libraries (as for some reason -L is injected on the final stage without argument
24 dnl and it breaks the build...
25
26 PKG_CHECK_MODULES(ROOBUILDER, [ zlib
27                  glib-2.0 >= 2.24.1
28                  gobject-2.0 >= 2.24.1
29                  gtk4  >= 3.11.3
30                  gtksourceview-5
31                  json-glib-1.0
32                  gee-0.8
33                  libxml-2.0
34                  libsoup-3.0 
35                  roojspacker-1.4
36 ]) 
37
38 dnl --- libvala -- needs to find matching really..
39
40 dnl -   supported version is 0.36  and  0.56
41
42 PKG_CHECK_MODULES(LIBVALA, [libvala-0.56],
43                 [vala_5_6_enabled=yes],
44                 [vala_5_6_enabled=no]) 
45 if test $vala_5_6_enabled = yes; then
46         AC_DEFINE(HAVE_LIBVALA56,1,[libvala 0.56 support])
47 else
48
49          PKG_CHECK_MODULES(LIBVALA, [libvala-0.36],
50                                  [vala_3_6_enabled=yes],
51                                  [vala_3_6_enabled=no]) 
52          if test $vala_3_6_enabled = yes; then
53                  AC_DEFINE(HAVE_LIBVALA36,1,[libvala 0.36 support])
54          fi
55          
56  fi
57
58 AM_CONDITIONAL(HAVE_LIBVALA56, test "$vala_5_6_enabled" = "yes")
59 AM_CONDITIONAL(HAVE_LIBVALA36, test "$vala_3_6_enabled" = "yes")
60
61
62   
63
64 dnl --- gda
65
66
67
68 PKG_CHECK_MODULES(GDA, [libgda-5.0],
69                                 [gda_5_0_enabled=yes],
70                                 [gda_5_0_enabled=no])
71
72 if test $gda_5_0_enabled = yes; then
73                 AC_DEFINE(HAVE_GDA5,1,[libgda 5.0 support])
74 else
75                 PKG_CHECK_MODULES(GDA, [libgda-4.0],
76                                 [gda_4_0_enabled=yes] )
77                 AC_DEFINE(HAVE_GDA4,1,[libgda 4.0 support])
78 fi
79 AM_CONDITIONAL(HAVE_GDA4, test "$gda_4_0_enabled" = "yes")
80 AM_CONDITIONAL(HAVE_GDA5, test "$gda_5_0_enabled" = "yes")
81
82
83 dnl  -- webkit-4.0 
84
85
86 PKG_CHECK_MODULES(WEBKIT, [webkitgtk-6.0],
87                                 [webkit_6_0_enabled=yes],
88                                 [webkit_6_0_enabled=no])
89
90 if test $webkit_6_0_enabled = yes; then
91                 AC_DEFINE(HAVE_WEBKIT6,1,[webkit 6.0 support])
92            
93
94 fi
95
96 AM_CONDITIONAL(HAVE_WEBKIT6, test "$webkit_6_0_enabled" = "yes")
97
98
99
100 dnl  -- javascriptcoregtk-6.0  ** not sure if this is needed....
101
102
103 PKG_CHECK_MODULES(JAVASCRIPTCOREGTK, [javascriptcoregtk-6.0],
104                                 [javascriptcoregtk_6_0_enabled=yes],
105                                 [javascriptcoregtk_6_0_enabled=no])
106
107 if test $javascriptcoregtk_6_0_enabled = yes; then
108                 AC_DEFINE(HAVE_JAVASCRIPTCOREGTK6,1,[javascriptcoregtk 6.0 support])
109
110 fi
111
112 AM_CONDITIONAL(HAVE_JAVASCRIPTCOREGTK6, test "$javascriptcoregtk_6_0_enabled" = "yes")
113
114
115
116 dnl --- vte -- fixme - its not used yet.. not sure if we will use it....
117  
118
119 PKG_CHECK_MODULES(VTE, [vte-2.91],
120                                 [vte_2_91_enabled=yes],
121                                 [vte_2_91_enabled=no])
122                                 
123 if test $vte_2_91_enabled = yes; then
124                 AC_DEFINE(HAVE_VTE_2_91,1,[libvte 2.91 support])
125 else
126                 PKG_CHECK_MODULES(VTE, [vte-2.90],
127                                 [vte_2_90_enabled=yes]
128                 )
129                 AC_DEFINE(HAVE_VTE_2_90,1,[libvte 2.90 support])
130 fi
131
132 AM_CONDITIONAL(HAVE_VTE_2_90, test "$vte_2_90_enabled" = "yes")
133 AM_CONDITIONAL(HAVE_VTE_2_91, test "$vte_2_91_enabled" = "yes")
134
135 AC_CONFIG_FILES([
136         Makefile
137         src/Makefile
138         pixmaps/Makefile
139 ])
140
141   
142 AC_SUBST(ROOBUILDER_CFLAGS)
143 AC_SUBST(ROOBUILDER_LIBS)
144
145
146 AC_OUTPUT