X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=yaz-config.in;h=78fe61dabf6fa3940009cc4277a977dc74bbd9bf;hp=0fc5208f51456f65219f4c91248ec8777c5f4796;hb=48b7a077523d1a86c16c9f536c56d6439fe90f42;hpb=43a9d38d20c1b1bcd1a03b2445a501d27526bd35 diff --git a/yaz-config.in b/yaz-config.in index 0fc5208..78fe61d 100644 --- a/yaz-config.in +++ b/yaz-config.in @@ -1,6 +1,6 @@ #!/bin/sh # This file is part of the YAZ toolkit. -# Copyright (C) 1995-2011 Index Data +# Copyright (C) 1995-2012 Index Data prefix=@prefix@ exec_prefix=@exec_prefix@ @@ -9,6 +9,7 @@ includedir=@includedir@ echo_cflags=no echo_libs=no echo_help=no +echo_include=no echo_source=yes echo_lalibs=no echo_comp=no @@ -19,6 +20,7 @@ ICU_CPPFLAGS="@ICU_CPPFLAGS@" SSL_LIBS="@SSL_LIBS@" LIBS="@LIBS@" VERSION=@VERSION@ +YAZVERSION=$VERSION VERSION_SHA1=@VERSION_SHA1@ usage() @@ -31,6 +33,7 @@ Options: [--libs] [--lalibs] [--cflags] + [--include] [--comp] [-V] Libraries: @@ -64,6 +67,9 @@ while test $# -gt 0; do --cflags) echo_cflags=yes ;; + --include) + echo_include=yes + ;; --libs) echo_libs=yes ;; @@ -141,7 +147,8 @@ if test "$echo_source" = "yes"; then fi YAZLALIB="$YAZLALIB $LIBS" - YAZINC="-I${src_root}/include $YAZINC" + YAZBINC="-I${src_root}/include" + YAZINC="$YAZBINC $YAZINC" YAZCOMP=${src_root}/util/yaz-asncomp else YAZBIN=${prefix}/bin @@ -153,7 +160,8 @@ else YAZLIB="$YAZLIB $LIBS" YAZLALIB=$YAZLIB if test "$prefix" != "/usr"; then - YAZINC="-I${includedir} $YAZINC" + YAZBINC="-I${includedir}" + YAZINC="$YAZBINC $YAZINC" fi fi @@ -170,6 +178,9 @@ fi if test "$echo_help" = "yes"; then usage 1 1>&2 fi +if test "$echo_include" = "yes"; then + echo $YAZBINC +fi if test "$echo_cflags" = "yes"; then echo $YAZINC fi