diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2005-10-02 09:52:09 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2005-10-02 09:52:09 +0000 |
commit | 67232e9682e74fc129ad771bfdf98ddc4f50e061 (patch) | |
tree | 0675d2d0268045a61ebcf307a862d15f6cbd2fc3 /xslt-config.in | |
parent | a46f8145d092a582b66fac04108bec04eee248e2 (diff) | |
download | libxslt-67232e9682e74fc129ad771bfdf98ddc4f50e061.tar.gz libxslt-67232e9682e74fc129ad771bfdf98ddc4f50e061.tar.bz2 libxslt-67232e9682e74fc129ad771bfdf98ddc4f50e061.zip |
applied patch from Joel Reed to ease plugin integration Daniel
* configure.in libxslt/Makefile.am libxslt/xsltconfig.h.in
libxslt.spec.in tests/plugins/Makefile.am xslt-config.in: applied
patch from Joel Reed to ease plugin integration
Daniel
Diffstat (limited to 'xslt-config.in')
-rw-r--r-- | xslt-config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xslt-config.in b/xslt-config.in index fb614bae..a1e1fb57 100644 --- a/xslt-config.in +++ b/xslt-config.in @@ -17,6 +17,7 @@ Known values for OPTION are: --exec-prefix=DIR change XSLT executable prefix [default $exec_prefix] --libs print library linking information --cflags print pre-processor and compiler flags + --plugins print plugin directory --help display this help and exit --version output version information EOF @@ -63,6 +64,11 @@ while test $# -gt 0; do exit 0 ;; + --plugins) + echo @LIBXSLT_DEFAULT_PLUGINS_PATH@ + exit 0 + ;; + --help) usage 0 ;; |