summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2024-02-22release 1.28.0HEADv1.28.0masterraveit651-1/+1
2023-10-22replace deprecated gtk_image_menu_item*raveit651-0/+5
2023-08-14Wayland: Fix position and behavior of dictionary applet popup windowlukefromdc1-8/+35
*Use gtk layer shell to duplicate the x11 behavior of the dictionary applet's popup dialog window
2023-08-12dictionary applet: allow building in-processlukefromdc1-0/+21
*This is needed for wayland support
2022-11-11release 1.27.0v1.27.0mbkma1-1/+1
2022-11-10configure.ac: The macro 'AC_HELP_STRING' is obsoleterbuj1-5/+5
2021-08-05release 1.26.0v1.26.0raveit651-2/+2
2021-06-04release 1.25.1v1.25.1raveit651-1/+1
2021-02-08build: allow users to disable gettext support (--disable-nls)rbuj1-1/+4
2021-02-04build: set GETTEXT_PACKAGE=AC_PACKAGE_NAMErbuj1-1/+1
2020-12-07Add legal notice in configure.acrbuj1-0/+15
2020-11-18configure: remove warning about option 'subdir-objects' is disabledrbuj1-1/+1
2020-07-06release 1.25.0v1.25.0raveit651-1/+1
2020-07-05use libegg submodulesWu Xiaotian1-4/+5
2020-06-16gsearchtool: Remove the warning about ‘GTimeVal’ is deprecatedrbuj1-19/+0
2020-06-06change automake flavour to disable build warningAbu Sakib1-1/+1
2020-04-10build: do not override the default value for MATE_COMPILE_WARNINGSrbuj1-2/+1
2020-02-10release 1.24.0v1.24.0raveit651-2/+2
2020-01-23release 1.23.2v1.23.2raveit651-1/+1
2020-01-20gettext: Fix locale dirrbuj1-5/+0
This allows to load the translations.
2019-12-28migrate from intltools to gettextWu Xiaotian1-3/+3
2019-12-23Use gresources for UI filesrbuj1-0/+14
2019-10-10release 1.23.1v1.23.1raveit651-1/+1
2019-10-02Add MATE Disk Image Mounter utilityrbuj1-0/+29
Based on https://github.com/GNOME/gnome-disk-utility/commit/2794ee121829d656d460da58c0ecaa84271e6fe7
2019-10-01WARN_CFLAGS makes MAINTAINER_CFLAGS obsolete for nowrbuj1-18/+0
2019-10-01Use MATE_DEBUG_CHECK for setting compiler debug flagsrbuj1-23/+5
By default, it disables the debugging.
2019-10-01Print compiler warning flags in summaryrbuj1-0/+1
2019-06-10Change url projet's websiteLaurent Napias1-1/+1
2019-05-06Make inkscape and rsvg-convert optionalrbuj1-6/+2
TEST on Fedora: inkscape, librsvg2-tools package are not installed on system: The user can build, install and distribute the package: $ sudo dnf remove inkscape librsvg2-tools -y $ ./configure --prefix=/usr $ make $ sudo make install $ make distcheck logview/data/icons: Can not run build-png-icons target if inkscape package is not installed on system: $ make -C logview/data/icons clean-png-icons make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons' rm -f hicolor_apps_16x16_mate-system-log.png hicolor_apps_22x22_mate-system-log.png hicolor_apps_32x32_mate-system-log.png hicolor_apps_48x48_mate-system-log.png hicolor_apps_256x256_mate-system-log.png make: Leaving directory '/home/robert/devel/mate-utils/logview/data/icons' $ make -C logview/data/icons build-png-icons make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons' make: *** No rule to make target 'hicolor_apps_16x16_mate-system-log.png', needed by 'build-png-icons'. Stop. make: Leaving directory '/home/robert/devel/mate-utils/logview/data/icons' Can run build-png-icons target if inkscape package is installed on system: $ sudo dnf install inkscape -y $ ./configure --prefix=/usr $ make -C logview/data/icons build-png-icons make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons' Background RRGGBBAA: ffffff00 Area 303:65:319:81 exported to 16 x 16 pixels (96 dpi) Bitmap saved as: hicolor_apps_16x16_mate-system-log.png Background RRGGBBAA: ffffff00 Area 303:101:325:123 exported to 22 x 22 pixels (96 dpi) Bitmap saved as: hicolor_apps_22x22_mate-system-log.png Background RRGGBBAA: ffffff00 Area 304:142:336:174 exported to 32 x 32 pixels (96 dpi) Bitmap saved as: hicolor_apps_32x32_mate-system-log.png Background RRGGBBAA: ffffff00 Area 296:202:344:250 exported to 48 x 48 pixels (96 dpi) Bitmap saved as: hicolor_apps_48x48_mate-system-log.png Background RRGGBBAA: ffffff00 Area 33:11:289:267 exported to 256 x 256 pixels (96 dpi) Bitmap saved as: hicolor_apps_256x256_mate-system-log.png make: Nothing to be done for 'build-png-icons'. make: Leaving directory '/home/robert/devel/mate-utils/logview/data/icons' baobab/pixmaps: Can not run build-png-icons target if librsvg2-tools package is not installed on system: $ make -C baobab/pixmaps clean-png-icons make: Entering directory '/home/robert/devel/mate-utils/baobab/pixmaps' rm -f hicolor_apps_16x16_mate-disk-usage-analyzer.png hicolor_apps_22x22_mate-disk-usage-analyzer.png hicolor_apps_32x32_mate-disk-usage-analyzer.png hicolor_apps_48x48_mate-disk-usage-analyzer.png hicolor_apps_128x128_mate-disk-usage-analyzer.png make: Leaving directory '/home/robert/devel/mate-utils/baobab/pixmaps' $ make -C baobab/pixmaps build-png-icons make: Entering directory '/home/robert/devel/mate-utils/baobab/pixmaps' make: *** No rule to make target 'hicolor_apps_16x16_mate-disk-usage-analyzer.png', needed by 'build-png-icons'. Stop. make: Leaving directory '/home/robert/devel/mate-utils/baobab/pixmaps' Can run build-png-icons target if librsvg2-tools package is installed on system: $ sudo dnf install -y librsvg2-tools $ ./configure --prefix=/usr $ make -C baobab/pixmaps build-png-icons make: Entering directory '/home/robert/devel/mate-utils/baobab/pixmaps' /usr/bin/rsvg-convert -w 16 -h 16 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_16x16_mate-disk-usage-analyzer.png /usr/bin/rsvg-convert -w 22 -h 22 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_22x22_mate-disk-usage-analyzer.png /usr/bin/rsvg-convert -w 32 -h 32 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_32x32_mate-disk-usage-analyzer.png /usr/bin/rsvg-convert -w 48 -h 48 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_48x48_mate-disk-usage-analyzer.png /usr/bin/rsvg-convert -w 128 -h 128 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_128x128_mate-disk-usage-analyzer.png make: Leaving directory '/home/robert/devel/mate-utils/baobab/pixmaps' Closes #223
2019-03-25pre-bump versionraveit651-1/+1
2019-03-25travis: add new build dependenciesraveit651-0/+10
2019-03-25GEN png icons from svg filesrbuj1-2/+0
PNG icons are created if they are not present in icon folder. To remove png icons: make -C baobab/pixmaps clean-png-icons make -C logview/data/icons clean-png-icons To build png icons: make -C baobab/pixmaps build-png-icons make -C logview/data/icons build-png-icons This removes baobab/pixmaps/shot.png file, use applets-screenshooter named icon (used in mate-screenshot).
2019-02-25release 1.22.0v1.22.0raveit651-2/+2
2018-12-25release 1.21.1v1.21.1raveit651-1/+1
2018-06-19pre-bump versionraveit651-1/+1
2018-01-30release 1.20v1.20.0raveit651-2/+2
2018-01-30require GTK+ 3.22 and GLib 2.50monsta1-3/+3
2017-12-24release 1.19.1v1.19.1raveit651-1/+1
2017-05-04Revert "configure: Use AM subdir-objects"raveit651-1/+1
This reverts commit 652ab68b6cd753b57b6f2df943dafafecbdfdc12. fixes https://github.com/mate-desktop/mate-utils/issues/169
2017-05-03configure: Use AM subdir-objectsraveit651-1/+1
2017-03-30pre-bump versionraveit651-1/+1
2017-03-13release 1.18.0v1.18.0raveit651-1/+1
2016-11-22move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build optionmonsta1-33/+9
and require mate-panel >= 1.17
2016-09-20release 1.16.0v1.16.0raveit651-2/+2
2016-08-06pre-bump versionraveit651-1/+1
2016-08-06screenshot: install both UI filesraveit651-2/+0
this fixes distcheck with creating mate-utils.pot
2016-06-20Modify glade file for the new glade format and use it for gtk3Oz N Tiram1-0/+2
* Add glade ui for gtk+3 * Remove usage of things like GTKHBox, GTKHButtonBox and other deprecated widgets
2016-06-09release 1.15.0v1.15.0raveit651-1/+1
2016-05-17mate-dict.pc: depend upon proper gtk versionKir Kolyshkin1-0/+2
If the package is built against gtk-3.0 (as in ./configure --with-gtk=3.0), mate-dict.pc still wants gtk-2.0 since it's hardcoded it there. This can lead to improper builds of packages using libmatedict (although I can't find any now), as well as improper RPM dependencies, like this: $ rpm -e gtk2-devel error: Failed dependencies: ... pkgconfig(gtk+-2.0) is needed by (installed) mate-utils-devel-1.14.0-1gtk3.fc23.x86_64 Fortunately, the file is already generated, so it's trivial to add a proper substitution. [v2: also add min GTK version required] Signed-off-by: Kir Kolyshkin <[email protected]>
2016-04-07release 1.14.0raveit651-1/+1