X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=idzebra-config.in;h=ca8f4685863299758d22b663001c14f61768f863;hb=ae8b65eeea5199dae5a59d9a57398b28c5419ec9;hp=5c91ce630e7007f6727da0c35415782ee4d7c8a5;hpb=45188c35bebda2cd4f91ffd7c09fdb9cae973dab;p=idzebra-moved-to-github.git diff --git a/idzebra-config.in b/idzebra-config.in index 5c91ce6..ca8f468 100755 --- a/idzebra-config.in +++ b/idzebra-config.in @@ -1,22 +1,25 @@ #!/bin/sh -# $Id: idzebra-config.in,v 1.1 2004-08-29 12:31:32 adam Exp $ -idzebraprefix=@prefix@ -idzebra_echo_cflags=no -idzebra_echo_libs=no -idzebra_echo_help=no -idzebra_echo_tabs=no -idzebra_echo_source=yes -idzebra_echo_lalibs=no +# $Id: idzebra-config.in,v 1.12 2006-07-03 20:41:38 adam Exp $ +version=@VERSION@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +echo_cflags=no +echo_libs=no +echo_help=no +echo_tab=no +echo_source=yes +echo_lalibs=no idzebra_src_root=@IDZEBRA_SRC_ROOT@ idzebra_build_root=@IDZEBRA_BUILD_ROOT@ +package_suffix=@PACKAGE_SUFFIX@ -yazlibs="@YAZLIB@ @LIBS@" -yazlalibs="@YAZLALIB@ @LIBS@" -IDZEBRAVERSION=@VERSION@ +extralibs="@YAZLIB@ @TCL_LIB@ @EXPAT_LIBS@ @XSLT_LIBS@ @LIBS@ " +extralalibs="@YAZLALIB@ @TCL_LIB@ @EXPAT_LIBS@ @XSLT_LIBS@ @LIBS@" usage() { - cat <&2 +if test "$echo_help" = "yes"; then + usage 1 1>&2 +fi +if test "$echo_cflags" = "yes"; then + echo $IDZEBRAINC +fi +if test "$echo_libs" = "yes"; then + echo $IDZEBRALIB fi -if test "$idzebra_echo_cflags" = "yes"; then - echo $IDZEBRAINC +if test "$echo_lalibs" = "yes"; then + echo $IDZEBRALALIB fi -if test "$idzebra_echo_libs" = "yes"; then - echo $IDZEBRALIB +if test "$echo_tab" = "yes"; then + echo $IDZEBRATAB fi -if test "$idzebra_echo_lalibs" = "yes"; then - echo $IDZEBRALALIB +if test "$echo_modules" = "yes"; then + echo $IDZEBRAMOD fi +# Local Variables: +# mode:shell-script +# sh-indentation: 2 +# sh-basic-offset: 4 +# End: