<arg choice="opt"><option>--libs</option></arg>
<arg choice="opt"><option>--lalibs</option></arg>
<arg choice="opt"><option>--cflags</option></arg>
+ <arg choice="opt"><option>--include</option></arg>
<arg choice="opt"><option>--comp</option></arg>
<arg choice="opt"><option>-V</option></arg>
<arg choice="opt" rep="repeat">libraries</arg>
</varlistentry>
<varlistentry>
+ <term>--include</term>
+ <listitem><para>
+ Return C compiler includes for YAZ header files (-Ipath).
+ </para></listitem>
+ </varlistentry>
+
+ <varlistentry>
<term>--comp</term>
<listitem><para>
Returns full path to YAZ' ASN.1 compiler: yaz-asncomp.
echo_cflags=no
echo_libs=no
echo_help=no
+echo_include=no
echo_source=yes
echo_lalibs=no
echo_comp=no
[--libs]
[--lalibs]
[--cflags]
+ [--include]
[--comp]
[-V]
Libraries:
--cflags)
echo_cflags=yes
;;
+ --include)
+ echo_include=yes
+ ;;
--libs)
echo_libs=yes
;;
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
YAZLIB="$YAZLIB $LIBS"
YAZLALIB=$YAZLIB
if test "$prefix" != "/usr"; then
- YAZINC="-I${includedir} $YAZINC"
+ YAZBINC="-I${includedir}"
+ YAZINC="$YAZBINC $YAZINC"
fi
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