# Configure paths for GNOME-PRINT # Chris Lahey 99-2-5 # stolen from Manish Singh again # stolen back from Frank Belew # stolen from Manish Singh # Shamelessly stolen from Owen Taylor dnl AM_PATH_GNOME_PRINT([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Test for GNOME-PRINT, and define GNOME_PRINT_CFLAGS and GNOME_PRINT_LIBS dnl AC_DEFUN([AM_PATH_GNOME_PRINT], [ min_version=ifelse([$1],,0.21,$1) gnome_print_ok="" AC_PATH_PROG(GNOME_CONFIG, gnome-config, no) if test "$GNOME_CONFIG" = "no" ; then AC_MSG_RESULT(gnome-config is missing, check your gnome installation) else AC_MSG_CHECKING(for GNOME-PRINT - version >= $min_version) if `$GNOME_CONFIG --libs print > /dev/null 2>&1`; then rqmajor=`echo "$min_version" | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'` rqminor=`echo "$min_version" | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'` major=`$GNOME_CONFIG --modversion print | sed -e 's/gnome-print-//' | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'` minor=`$GNOME_CONFIG --modversion print | sed -e 's/gnome-print-//' | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'` if test "$major" -ge "$rqmajor"; then if test "$major" -gt "$rqmajor"; then AC_MSG_RESULT("found $major.$minor") gnome_print_ok="yes" else if test "$minor" -ge "$rqminor"; then AC_MSG_RESULT("found $major.$minor") gnome_print_ok="yes" else AC_MSG_RESULT("you have $major.$minor") fi fi else AC_MSG_RESULT("you have $major.$minor") fi else AC_MSG_RESULT("did not find any version") fi fi if test "x$gnome_print_ok" != "x" ; then GNOME_PRINT_CFLAGS=`$GNOME_CONFIG --cflags print` GNOME_PRINT_LIBS=`$GNOME_CONFIG --libs print` ifelse([$2], , :, [$2]) else GNOME_PRINT_CFLAGS="" GNOME_PRINT_LIBS="" ifelse([$3], , :, [$3]) fi AC_SUBST(GNOME_PRINT_CFLAGS) AC_SUBST(GNOME_PRINT_LIBS) ]) AC_DEFUN([GNOME_PRINT_CHECK], [ AM_PATH_GNOME_PRINT($1,,[AC_MSG_ERROR(GNOME-PRINT not found or wrong version)]) ]) ron4/files/lodash.merge-4.6.2 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/lang/perl5-devel/Makefile
Commit message (Expand)AuthorAgeFilesLines
* Fix -i -ne usage when the argument has a full path.mat2017-09-121-1/+5
* Update to v5.27.3-84-g7bd9fb1.mat2017-09-111-1/+1
* Update to v5.27.3-35-g97fcda7.mat2017-09-041-1/+1
* Add armv7 to the list of arch without DTRACE.mat2017-08-291-1/+1
* Update to v5.27.3-18-g365cfd8.mat2017-08-281-1/+1
* Update to v5.27.2-151-g0acc85e.mat2017-08-211-1/+1
* Update to v5.27.2-140-g7b0b49a.mat2017-08-141-1/+1
* Update to v5.27.2-105-gd819dc5.mat2017-08-071-1/+1
* Update to v5.27.2-82-g3c76107.mat2017-07-311-1/+1
* Update to v5.27.2-17-g6be75e6.mat2017-07-251-1/+1
* Update to v5.27.1-250-g978b185.mat2017-07-171-1/+1
* Update to v5.27.1-131-g1e629c2.mat2017-07-111-1/+1
* Update to v5.27.1-113-g6efb583.mat2017-07-031-1/+1
* Update to v5.27.1-72-g3a3dd4d.mat2017-06-261-1/+1
* Update to v5.27.0-326-gd730a80.mat2017-06-191-1/+1
* Update to v5.27.0-286-gf717dc4.mat2017-06-121-1/+1
* Update to v5.27.0-130-g5ad96e9mat2017-06-061-1/+1
* Update to v5.26.0-11-gf396248. (It already calls itself 5.27.0.)mat2017-05-311-1/+1
* Update to v5.26.0-RC2-12-g433054b.mat2017-05-291-1/+1
* Update to v5.26.0-RC1-48-g8ab76fe.mat2017-05-221-1/+1
* Update to v5.26.0-RC1-8-g9e71673.mat2017-05-151-1/+1
* Update to v5.25.12-29-gbd1a29f.mat2017-05-091-1/+1
* Revert r439819 since Tools/scripts/rmport is now fixedler2017-05-021-1/+1
* Update to v5.25.12-28-gb497237.mat2017-05-021-1/+1
* Fix the EXPIRATION_DATE so as to not confuse Tools/scripts/rmport -aler2017-04-301-1/+1
* Update to v5.25.12-26-g63e6b12.mat2017-04-241-3/+3
* Update to v5.25.11-59-g7335cb8.mat2017-04-181-1/+1
* Don't set DISTNAME, the reason for it was a bit silly to start with.mat2017-04-111-3/+4
* Update to v5.25.11-50-gb57dd50.mat2017-04-101-4/+2
* Explain perldoc how to handle MANWIDTH=tty in the environment, and stopmat2017-04-041-1/+1
* Update to v5.25.11-28-g5fc3895.mat2017-04-031-1/+1
* Perl calls itself 5.26.0 but thinks it is 5.25 still, so, fix-ish thingsmat2017-03-281-1/+1
* Update to v5.25.11-22-g2e3b2a1.mat2017-03-271-2/+2
* Add a DOT_INC option to allow people to build unsafe versions of Perlmat2017-03-211-2/+4
* Update to v5.25.10-90-gffb91b6.mat2017-03-201-1/+1
* Update to v5.25.10-64-gb498628.mat2017-03-131-1/+1
* Update to v5.25.10-52-g39f2cbe.mat2017-03-061-1/+1
* Update to v5.25.10-41-gaa9ac6c.mat2017-02-271-1/+1
* Update to v5.25.9-179-g2042c7f.mat2017-02-211-1/+1
* Update to v5.25.9-117-gf40abc9.mat2017-02-131-1/+1
* Update to v5.25.9-80-gadd424d.mat2017-02-071-1/+1
* Record correct dates for expiration dates for Perl ports.mat2017-01-311-0/+4
* Update to v5.25.9-65-g00c7fba.mat2017-01-301-1/+1
* Update to v5.25.9-15-g03fedef.mat2017-01-231-1/+1
* The output of tools like awk, date, sort, tr,... depends on the currenttijl2017-01-181-6/+2
* Update to v5.25.8-217-g02c161e.mat2017-01-161-1/+1
* Update to v5.25.8-184-g8f7edc6.mat2017-01-091-2/+2
* Seems we should not be using DTRACE on 10 either.mat2017-01-061-1/+2
* Update to v5.25.8-128-g74ef8fd.mat2017-01-021-7/+9
* Update to v5.25.8-78-gd720149.mat2016-12-261-2/+2
* Try and fix the DTRACE ONLY WORKS on x86 another way.mat2016-12-211-3/+5
* Turns out, DTRACE does not work on non x86 platforms.mat2016-12-211-1/+3
* Get a DTRACE option for lang/perl5.24 and lang/perl5-devel.mat2016-12-211-3/+10
* Update to v5.25.7-145-g54f6f37.mat2016-12-191-1/+1
* Update to v5.25.7-110-gc551bb0.mat2016-12-121-1/+1
* Update to v5.25.7-52-ga14be3e.mat2016-12-051-14/+6
* Update to v5.25.7-26-g7332835.mat2016-11-281-1/+1
* Update to v5.25.7-4-gd5584eb.mat2016-11-211-1/+1
* Update to v5.25.6-241-g89e5a02.mat2016-11-141-1/+1
* Update to v5.25.6-144-g26e9d72.mat2016-11-021-1/+1
* Update to v5.25.6-72-g92c843f.mat2016-10-241-1/+1
* Update to v5.25.5-115-g4eadd82.mat2016-10-171-1/+1
* Update to v5.25.5-76-g91dca83.mat2016-10-101-1/+1
* Update to v5.25.5-64-g1c56654.mat2016-10-031-1/+1
* Update to v5.25.5-24-g98fce2a.mat2016-09-261-1/+1
* Update to v5.25.4-177-g1608ed2.mat2016-09-191-1/+1
* Update to v5.25.4-111-g92b69f6.mat2016-09-131-1/+1
* Update to v5.25.4-74-g03a1fa1mat2016-09-051-1/+1
* Update to v5.25.4-23-g3781748.mat2016-08-291-1/+1
* Update to v5.25.4-5-g92d73bf.mat2016-08-221-1/+1
* Update to v5.25.3-249-g6b57d4b.mat2016-08-151-1/+1
* Update to v5.25.3-164-gf02074d.mat2016-08-081-1/+1
* Update to v5.25.3-99-g25e092d.mat2016-08-031-1/+1
* Update to v5.25.3-14-g9648eab.mat2016-07-251-1/+1
* Update to v5.25.2-193-gef07b9e.mat2016-07-181-1/+1