annotate src/build-pkg-config.mk @ 3040:706c4daf3372

PKG_CONFIG_PATH fixes Makefile: Don't export PKG_CONFIG_PATH build-pkg-config-1-fixes.patch: New file. build-pkg-config.mk: Pass --with-pc_path to configure, not --with-pc-path freetds.mk: Don't use PKG_CONFIG_PATH=... in configure command.
author John W. Eaton <jwe@octave.org>
date Mon, 10 Jun 2013 13:17:20 -0400
parents d4c8aa885d1b
children cf6f40cededb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-pkg-config
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
2973
b5bdf006eebc update to newer version of pkg-config so it can build without pkg-config or glib already installed
John W. Eaton <jwe@octave.org>
parents: 2972
diff changeset
6 $(PKG)_CHECKSUM := 71853779b12f958777bffcb8ca6d849b4d3bed46
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(PKG)_SUBDIR := pkg-config-$($(PKG)_VERSION)
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_FILE := pkg-config-$($(PKG)_VERSION).tar.gz
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_URL := http://pkgconfig.freedesktop.org/releases/$($(PKG)_FILE)
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_DEPS :=
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 define $(PKG)_UPDATE
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo $($(PKG)_VERSION)
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 endef
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
3019
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
17 # native mingw needs to be told an architechure for the internal glib to build
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
18 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
19 $(PKG)_CONFIG_OPTS := CPPFLAGS='-march=i486' LN=$(LN)
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
20 endif
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
21
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 define $(PKG)_BUILD
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 mkdir '$(1).build'
3040
706c4daf3372 PKG_CONFIG_PATH fixes
John W. Eaton <jwe@octave.org>
parents: 3019
diff changeset
24 cd '$(1)' && autoreconf
706c4daf3372 PKG_CONFIG_PATH fixes
John W. Eaton <jwe@octave.org>
parents: 3019
diff changeset
25 cd '$(1).build' && '$(1)/configure' \
2973
b5bdf006eebc update to newer version of pkg-config so it can build without pkg-config or glib already installed
John W. Eaton <jwe@octave.org>
parents: 2972
diff changeset
26 --with-internal-glib \
3019
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
27 $($(PKG)_CONFIG_OPTS) \
3040
706c4daf3372 PKG_CONFIG_PATH fixes
John W. Eaton <jwe@octave.org>
parents: 3019
diff changeset
28 --with-pc_path='$(HOST_LIBDIR)/pkgconfig' \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
29 --prefix='$(BUILD_TOOLS_PREFIX)'
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 $(MAKE) -C '$(1).build' -j '$(JOBS)'
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
31 rm -f "$(BUILD_TOOLS_PREFIX)/bin/`config.guess`-pkg-config"
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 $(MAKE) -C '$(1).build' -j 1 install
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 endef