Displaying 1 result from an estimated 1 matches for "ogg_libdir".
Did you mean:
  ogg_lib_dir
  
2001 Oct 11
0
ogg.m4: --with-ogg-libdir
...nl Get the cflags and libraries
 dnl
 AC_ARG_WITH(ogg-prefix,[  --with-ogg-prefix=PFX   Prefix where libogg is installed (optional)], ogg_prefix="$withval", ogg_prefix="")
+AC_ARG_WITH(ogg-libdir,[  --with-ogg-libdir=DIR   Directory where libogg library is installed (optional)], ogg_libdir="$withval", ogg_libdir="")
 AC_ARG_ENABLE(oggtest, [  --disable-oggtest       Do not try to compile and run a test Ogg program],, enable_oggtest=yes)
 
-  if test "x$ogg_prefix" != "x"; then
-    ogg_args="$ogg_args --prefix=$ogg_prefix"
-    OGG_CF...