Re: [Autogen-users] disable local linking of libopts . . .
Brought to you by:
bkorb
From: Harlan S. <st...@nt...> - 2010-11-22 21:39:19
|
Hi Geof, It's pretty easy, we do this: AC_DISABLE_SHARED case "${enable_local_libopts+set}" in set) ;; *) enable_local_libopts=yes ;; esac case "${enable_libopts_install+set}" in set) ;; *) enable_libopts_install=no ;; esac LIBOPTS_CHECK([libopts]) (because we do not want to install our local copy, so we need a shared copy to link against.) |