[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: SimpleAgenda on FreeBSD
From: |
Yavor Doganov |
Subject: |
Re: SimpleAgenda on FreeBSD |
Date: |
Fri, 13 Jul 2018 10:28:40 +0000 (UTC) |
User-agent: |
Pan/0.145 (Duplicitous mercenary valetism; d7e168a git.gnome.org/pan2) |
В Thu, 12 Jul 2018 22:58:59 +0200, Riccardo Mottola написа:
> On 2018-07-12 10:09:04 +0000 Ivan Vučica <ivan@vucica.net> wrote:
>
>> If not, a hacky thing I would do is, I would try:
>> CFLAGS="-isystem /usr/local/include" ./configure
>> instead.
Or better:
./configure CPPFLAGS=-I/usr/local/include
> I just tried myself building SimpleAgenda on FreeBSD.
>
> it states:
> --with-ical-include=DIR include path for ical headers
> --with-ical-library=DIR library path for ical libraries
>
> but they do not work,
Most probably it doesn't work because of this:
> -AC_ARG_WITH(ical-include, [ --with-ical-include=DIR include path for
> ical headers], additional_include_dir+=-I"$withval", )
^^
That's a so called "bashism" and I suspect the default shell on FreeBSD
is not GNU Bash.
What troubles me most is that /usr/local/include is standard and is in
the search path of both GCC and Clang, at least on GNU/Linux. You
shouldn't have to do anything special if libical is installed in /usr/
local.