X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=yaz-config.in;h=20748279eca2fdcda197bd71f2db9059c8514512;hp=1b2560f1ada3a5dd3a879cbf6dd271343be9bed3;hb=7ae6a3d178c4f29bad3af081c1882cdb6dcb3e06;hpb=455798a3154b5c08c872ca0fb90607ddea575038 diff --git a/yaz-config.in b/yaz-config.in index 1b2560f..2074827 100644 --- a/yaz-config.in +++ b/yaz-config.in @@ -1,21 +1,26 @@ #!/bin/sh -# $Id: yaz-config.in,v 1.23 2005-09-09 10:34:09 adam Exp $ -yazprefix=@prefix@ -yaz_echo_cflags=no -yaz_echo_libs=no -yaz_echo_help=no -yaz_echo_source=yes -yaz_echo_lalibs=no -yaz_echo_comp=no -yaz_src_root=@YAZ_SRC_ROOT@ -yaz_build_root=@YAZ_BUILD_ROOT@ +# This file is part of the YAZ toolkit. +# Copyright (C) 1995-2008 Index Data -yazextralibs="@LIBS@" -YAZVERSION=@VERSION@ +prefix=@prefix@ +echo_cflags=no +echo_libs=no +echo_help=no +echo_source=yes +echo_lalibs=no +echo_comp=no +src_root=@abs_top_srcdir@ +build_root=@abs_top_builddir@ +ICU_LIBS="@ICU_LIBS@" +ICU_CPPFLAGS="@ICU_CPPFLAGS@" +SSL_LIBS="@SSL_LIBS@" +LIBS="@LIBS@" +VERSION=@VERSION@ +VERSION_SHA1=@VERSION_SHA1@ usage() { - cat <&2 +if test "$echo_help" = "yes"; then + usage 1 1>&2 fi -if test "$yaz_echo_cflags" = "yes"; then - echo $YAZINC +if test "$echo_cflags" = "yes"; then + echo $YAZINC fi -if test "$yaz_echo_libs" = "yes"; then - echo $YAZLIB +if test "$echo_libs" = "yes"; then + echo $YAZLIB fi -if test "$yaz_echo_lalibs" = "yes"; then - echo $YAZLALIB +if test "$echo_lalibs" = "yes"; then + echo $YAZLALIB fi -if test "$yaz_echo_comp" = "yes"; then - echo $YAZCOMP +if test "$echo_comp" = "yes"; then + echo $YAZCOMP fi +# Local Variables: +# mode:shell-script +# sh-indentation: 2 +# sh-basic-offset: 4 +# End: