< Previous by Date Date Index Next by Date >
< Previous in Thread Thread Index Next in Thread >

Re: [reSIProcate] Next 090 release candidate


10.4 or 10.3?

Where did fink put libpopt for you? It's looking in /sw already:

popt_libdirs="/usr/lib /opt/lib /usr/pkg/lib /usr/local/lib /sw/lib"
popt_libdir=NONE
for dir in $popt_libdirs; do
  try="ls -1 $dir/libpopt*"
  if test "`eval $try 2> /dev/null`"; then
     popt_libdir=$dir;
     break;
  else
        echo "tried $dir" >&AC_FD_CC ;
  fi
done

if test "$popt_libdir" = "NONE" || test "$popt_incdir" = "NONE"; then
   AC_MSG_RESULT([no])
else
   AC_MSG_RESULT([yes])
   AC_DEFINE([HAVE_POPT_H], [1], [ Has popt.h ])
   LIBS="$LIBS -L$popt_libdir -lpopt"
   CPPFLAGS="$CPPFLAGS -I$popt_incdir"
fi

This should be tweaked to respond correctly to --with-popt=

RjS
On Jun 23, 2005, at 8:33 AM, Alan Hawrylyshen wrote:


On Jun 23, 2005, at 00.07, Alan Hawrylyshen wrote:

Mac OS X 10.4.1 Openssl 0.9.7n : pending -- slow box :-)


Failed w/ libpopt installed under fink.

This means that we aren't good to go without libpopt on vanilla Mac boxes.
(which isn't there by default)


A

a l a n a t j a s o m i d o t c o m