diff --git a/.gitignore b/.gitignore index 583b96d24e7700d71389dd6fa5ddfa759504e0b5..ddbe6066a1ef452f14dc3a431f990706c8db38a6 100644 --- a/.gitignore +++ b/.gitignore @@ -197,3 +197,4 @@ hello-*.tar.gz ####################### # should remain empty # ####################### +/src/plugins/gui/GSourceView2.mli diff --git a/Makefile b/Makefile index 88062fe83bda6de971e1117a3e10f595badde2f9..24819a4a472d40a77cddbb9bcc5157f9de824643 100644 --- a/Makefile +++ b/Makefile @@ -680,8 +680,19 @@ STARTUP_CMX=$(STARTUP_CMO:.cmo=.cmx) WTOOLKIT= \ wutil widget wbox wfile wpane wpalette wtext wtable +SOURCEVIEWCOMPAT:= +ifeq ($(strip $(GTKSOURCEVIEW)),lablgtk2.sourceview3) +SOURCEVIEWCOMPAT:=GSourceView2 + +src/plugins/gui/GSourceView2.ml%: src/plugins/gui/GSourceView2.ml%.in + $(CP) $< $@ + $(CHMOD_RO) $@ + +endif + SINGLE_GUI_CMO:= \ $(WTOOLKIT) \ + $(SOURCEVIEWCOMPAT) \ gui_parameters \ gtk_helper gtk_form \ source_viewer pretty_source source_manager book_manager \ diff --git a/src/plugins/gui/GSourceView2.ml.in b/src/plugins/gui/GSourceView2.ml.in new file mode 100644 index 0000000000000000000000000000000000000000..0229c6b8a98887504d4e9bfbff5d3dc8953d3e0c --- /dev/null +++ b/src/plugins/gui/GSourceView2.ml.in @@ -0,0 +1,2 @@ +(** compatibility layer between gtksourceview 2 and 3. *) +include GSourceView3 diff --git a/src/plugins/gui/GSourceView2.mli.in b/src/plugins/gui/GSourceView2.mli.in new file mode 100644 index 0000000000000000000000000000000000000000..5bc79402e96aad2383e1497efb939e9bd9a9e399 --- /dev/null +++ b/src/plugins/gui/GSourceView2.mli.in @@ -0,0 +1,2 @@ +(* compatibility between gtksourceview 2 and 3. *) +include module type of GSourceView3