[PATCH v2] src/Makefile.am: use pkg-config to include glib
Keng-Yu Lin
keng-yu.lin at canonical.com
Tue Jul 29 07:32:11 UTC 2014
On Tue, Jul 29, 2014 at 1:18 AM, Alberto Milone
<alberto.milone at canonical.com> wrote:
> ---
> src/Makefile.am | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/src/Makefile.am b/src/Makefile.am
> index ce0b31e..d7a031f 100644
> --- a/src/Makefile.am
> +++ b/src/Makefile.am
> @@ -11,8 +11,7 @@ AM_CPPFLAGS = \
> -I$(top_srcdir)/src/acpica/source/include \
> -I$(top_srcdir)/src/acpica/source/compiler \
> -I$(top_srcdir)/efi_runtime \
> - -pthread -I/usr/include/glib-2.0 \
> - -I/usr/lib/x86_64-linux-gnu/glib-2.0/include \
> + -pthread $(shell pkg-config --cflags glib-2.0) \
> -Wall -Werror -Wextra
>
> bin_PROGRAMS = fwts
> @@ -94,10 +93,10 @@ fwts_SOURCES = main.c \
> uefi/uefivarinfo/uefivarinfo.c \
> uefi/uefibootpath/uefibootpath.c
>
> -fwts_LDFLAGS = -lm
> +fwts_LDFLAGS = -lm $(shell pkg-config --libs glib-2.0)
>
> fwts_LDADD = \
> -L$(top_builddir)/src/acpica -lfwtsacpica \
> - -Llib/src -lfwts -lgio-2.0 -lgobject-2.0 -lglib-2.0
> + -Llib/src -lfwts
>
> man_MANS = ../doc/fwts.1 ../doc/fwts-collect.1 ../doc/fwts-frontend-text.1
> --
> 1.9.1
>
>
Acked-by: Keng-Yu Lin <kengyu at canonical.com>
More information about the fwts-devel
mailing list