diff options
author | Andy Wingo <wingo@pobox.com> | 2001-12-26 23:14:44 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2001-12-26 23:14:44 +0000 |
commit | ca2ecf4c591932ac489ef66bb303246d648e350d (patch) | |
tree | 1498872ee2f0d57657a8527d106d881372a7795c | |
parent | ac4bf2a6e502e3ef215665989b38ea52c36479c3 (diff) | |
download | gst-plugins-bad-ca2ecf4c591932ac489ef66bb303246d648e350d.tar.gz gst-plugins-bad-ca2ecf4c591932ac489ef66bb303246d648e350d.tar.bz2 gst-plugins-bad-ca2ecf4c591932ac489ef66bb303246d648e350d.zip |
added --with-pkg-config-path option try not to run autoheader too much
Original commit message from CVS:
* added --with-pkg-config-path option
* try not to run autoheader too much
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | configure.ac | 5 |
2 files changed, 7 insertions, 0 deletions
@@ -158,6 +158,8 @@ autoheader || { echo "autoheader failed" exit 1 } +# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo +echo timestamp > stamp-h.in 2> /dev/null echo "+ running autoconf ... " autoconf || { echo diff --git a/configure.ac b/configure.ac index 57dfc4ce..8d813aa5 100644 --- a/configure.ac +++ b/configure.ac @@ -104,6 +104,11 @@ dnl ############################## dnl Check for tools: dnl ================ +dnl modify pkg-config path +AC_ARG_WITH(pkg-config-path, + AC_HELP_STRING([--with-pkg-config-path],[colon-separated list of pkg-config(1) dirs]), + [export PKG_CONFIG_PATH=${withval}]) + dnl Check for nasm AC_PATH_PROG(NASM_PATH, nasm, no) AC_SUBST(NASM_PATH) |