mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-02-07 04:00:26 +01:00
Author: tfheen
Date: 2005-03-26 14:59:26 GMT
2005-03-18 Tollef Fog Heen <tfheen@err.no>
* main.c (main): Use add_search_dirs for both the compile-time
defined pc_path and the run-time defined PKG_CONFIG_PATH.
* pkg.h: Add prototype for add_search_dirs.
* pkg.c (add_search_dirs): Add new function which takes a
delimiter-separated list as input and add_search_dir's it.
(package_init): Remove knowledge about which dirs should be
initially added. Moved this to main.c(main)
* ChangeLog: Add emacs variables to set the date to this
ChangeLog's standard format
* Makefile.am (INCLUDES): Pass PKG_CONFIG_PCPATH on to main.c
* configure.in: Add --with-pc-path to define the default search
path for .pc files. (Freedesktop #119, #648)
36 lines
631 B
Makefile
36 lines
631 B
Makefile
if USE_INSTALLED_GLIB
|
|
included_glib_includes = @GLIB_CFLAGS@
|
|
pkg_config_LDADD=@GLIB_LIBS@
|
|
else
|
|
SUBDIRS = glib-1.2.8
|
|
included_glib_includes = -I./glib-1.2.8
|
|
pkg_config_LDADD=glib-1.2.8/libglib.la
|
|
endif
|
|
|
|
m4dir = $(datadir)/aclocal
|
|
m4_DATA = pkg.m4
|
|
|
|
man_MANS = pkg-config.1
|
|
EXTRA_DIST = $(m4_DATA) $(man_MANS) README.win32
|
|
|
|
bin_PROGRAMS = pkg-config
|
|
|
|
INCLUDES=-DPKG_CONFIG_PC_PATH="\"$(pc_path)\"" $(included_glib_includes)
|
|
|
|
pkg_config_SOURCES= \
|
|
pkg.h \
|
|
pkg.c \
|
|
partial-glib.h \
|
|
partial-glib.c \
|
|
parse.h \
|
|
parse.c \
|
|
main.c \
|
|
findme.c \
|
|
findme.h \
|
|
popt.c \
|
|
popt.h \
|
|
poptconfig.c \
|
|
popthelp.c \
|
|
poptint.h \
|
|
poptparse.c
|
|
|