X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=yaz-config.in;h=9931978c9857e525d19bbe96666ae9f334c48d77;hp=d7b361cd7cd756152a3849bbaf6f3c462edf8eab;hb=d940392c53c32ccf76fb287cc5b997b9e921a431;hpb=10a1b30cd1e5537ef3c60b27f96b36a428ebb390 diff --git a/yaz-config.in b/yaz-config.in index d7b361c..9931978 100644 --- a/yaz-config.in +++ b/yaz-config.in @@ -1,20 +1,27 @@ #!/bin/sh -# $Id: yaz-config.in,v 1.3 2000-10-11 12:24:58 adam Exp $ +# This file is part of the YAZ toolkit. +# Copyright (C) 1995-2008 Index Data + yazprefix=@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 +yaz_echo_comp=no yaz_src_root=@YAZ_SRC_ROOT@ +yaz_build_root=@YAZ_BUILD_ROOT@ +PTHREAD_LIBS="@PTHREAD_LIBS@" +PTHREAD_CFLAGS="@PTHREAD_CFLAGS@" +ICU_LIBS="@ICU_LIBS@" +ICU_CPPFLAGS="@ICU_CPPFLAGS@" -yazlibs="@LIBS@" +yazextralibs="@LIBS@" YAZVERSION=@VERSION@ usage() { - cat <&2 + usage 1 1>&2 fi if test "$yaz_echo_cflags" = "yes"; then - echo $YAZINC + echo $YAZINC fi if test "$yaz_echo_libs" = "yes"; then - echo $YAZLIB -fi -if test "$yaz_echo_tabs" = "yes"; then - echo $YAZTAB + echo $YAZLIB fi if test "$yaz_echo_lalibs" = "yes"; then - echo $YAZLALIB + echo $YAZLALIB +fi +if test "$yaz_echo_comp" = "yes"; then + echo $YAZCOMP fi +# Local Variables: +# mode:shell-script +# sh-indentation: 2 +# sh-basic-offset: 4 +# End: