svn commit: r433459 - in head/net-im: . libmesode libmesode/files

Jan Beich jbeich at freebsd.org
Sun Feb 5 21:41:47 UTC 2017


Tilman Keskinoz <arved at FreeBSD.org> writes:

> ++++ configure.ac	2017-02-05 00:01:38.603627000 +0100
> +@@ -18,19 +18,19 @@
> +                    [PLATFORM="nix"])
> + 
> + PKG_CHECK_MODULES([expat], [expat >= 2.0.0],
> +-                  [PC_REQUIRES+=(expat)],
> ++                  [PC_REQUIRES="expat ${PC_REQUIRES}"],
> +                   [AC_CHECK_HEADER([expat.h],
> +                                    [
> +                                     expat_LIBS="-lexpat"
> +-                                    PC_LIBS+=($expat_LIBS)
> ++                                    PC_LIBS+=${expat_LIBS}

PC_LIBS still uses += syntax which isn't supported by /bin/sh.


More information about the svn-ports-head mailing list