193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
AC_MSG_CHECKING(if GTK3 and supporting GtkSourceView4 and Webkit4 libraries are installed)
GTK3=`pkg-config --silence-errors --libs gtk+-3.0`
SRC3=`pkg-config --silence-errors --libs gtksourceview-4`
WEB3=`pkg-config --silence-errors --libs webkit2gtk-4.0`
if test -z "$GTK3" -o -z "$SRC3" -o -z "$WEB3"; then
AC_MSG_RESULT(found.)
GTK3="false"
AC_MSG_CHECKING(Check if GTK2 and supporting GtkSourceView3 and Webkit2 libraries are installed)
GTK2=`pkg-config --silence-errors --libs gtk+-2.0`
SRC2=`pkg-config --silence-errors --libs gtksourceview-2.0`
WEB2=`pkg-config --silence-errors --libs webkit2gtk-3.0`
if test -z "$GTK2" -o -z "$SRC2" -o -z "$WEB2"; then
AC_MSG_RESULT(not found.)
GTK2="false"
USEGTK="false"
|
|
|
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
AC_MSG_CHECKING(if GTK3 and supporting GtkSourceView4 and Webkit4 libraries are installed)
GTK3=`pkg-config --silence-errors --libs gtk+-3.0`
SRC3=`pkg-config --silence-errors --libs gtksourceview-4`
WEB3=`pkg-config --silence-errors --libs webkit2gtk-4.0`
if test -z "$GTK3" -o -z "$SRC3" -o -z "$WEB3"; then
AC_MSG_RESULT(found.)
GTK3="false"
AC_MSG_CHECKING(if GTK2 and supporting GtkSourceView3 and Webkit2 libraries are installed)
GTK2=`pkg-config --silence-errors --libs gtk+-2.0`
SRC2=`pkg-config --silence-errors --libs gtksourceview-2.0`
WEB2=`pkg-config --silence-errors --libs webkit2gtk-3.0`
if test -z "$GTK2" -o -z "$SRC2" -o -z "$WEB2"; then
AC_MSG_RESULT(not found.)
GTK2="false"
USEGTK="false"
|