X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=blobdiff_plain;f=yazpp-config.in;h=0b37a829a315c14ef0f228c8ee2dfa5810690c05;hp=fd52071742d234e200797e53b958d4810eea18e1;hb=9b9ffe1bf48e645ec7a62acd8022a90f6e3a60af;hpb=a5da4db2656f68ab009555adb8bd3b410f4ac3c0 diff --git a/yazpp-config.in b/yazpp-config.in index fd52071..0b37a82 100644 --- a/yazpp-config.in +++ b/yazpp-config.in @@ -1,23 +1,24 @@ #!/bin/sh -# $Id: yazpp-config.in,v 1.2 2006-12-12 14:39:02 marc Exp $ -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 +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: