X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=blobdiff_plain;f=yazpp-config.in;h=d66d4c121659cd89516d07bd8cc5a1693214bb2a;hp=a76b6ec67829c70b80e1b7ea92a285f6a48249dd;hb=64579d7f330f966ed5dbd3af26f50507f0b86530;hpb=4b3585940162cf9ca65ca4a6914c0addcde50eef diff --git a/yazpp-config.in b/yazpp-config.in index a76b6ec..d66d4c1 100644 --- a/yazpp-config.in +++ b/yazpp-config.in @@ -1,22 +1,25 @@ #!/bin/sh -yazppprefix=@prefix@ -yaz_echo_cflags=no -yaz_echo_libs=no -yaz_echo_help=no -yaz_echo_tabs=no -yaz_echo_source=yes -yaz_echo_lalibs=no -yazpp_src_root=@YAZPP_SRC_ROOT@ -yazpp_build_root=@YAZPP_BUILD_ROOT@ - +prefix="@prefix@" +exec_prefix="@exec_prefix@" +libdir="@libdir@" +includedir="@includedir@" +echo_cflags=no +echo_libs=no +echo_help=no +echo_tabs=no +echo_source=yes +echo_lalibs=no +echo_zoom=no +src_root="@abs_top_srcdir@" +build_root="@abs_top_builddir@" yazlibs="@YAZLIB@ @LIBS@" yazlalibs="@YAZLALIB@ @LIBS@" -YAZPPVERSION=@VERSION@ +VERSION=@VERSION@ usage() { cat <&2 +if test "$echo_help" = "yes"; then + usage 1 1>&2 fi -if test "$yaz_echo_cflags" = "yes"; then - echo $YAZPPINC +if test "$echo_cflags" = "yes"; then + echo $YAZPPINC fi -if test "$yaz_echo_libs" = "yes"; then - echo $YAZPPLIB +if test "$echo_libs" = "yes"; then + echo $YAZPPLIB fi -if test "$yaz_echo_lalibs" = "yes"; then - echo $YAZPPLALIB +if test "$echo_lalibs" = "yes"; then + echo $YAZPPLALIB fi +# Local Variables: +# mode:shell-script +# sh-indentation: 2 +# sh-basic-offset: 4 +# End: