CVS compilation tool
Randy Chung
aoshi at OCF.Berkeley.EDU
Tue Aug 3 08:01:31 CEST 2004
You're welcome. One more thing, your configure line needs to reflect
the PKG_CONFIG_PATH change. Right now you have:
(stuff)
echo "Building Module: ${module}"
cd ${cvs_dir}/${module}
./configure --enable-debug
make
make install
(more stuff)
But it should be
(stuff)
echo "Building Module: ${module}"
cd ${cvs_dir}/${module}
PKG_CONFIG_PATH=$PKG_CONFIG_PATH ./configure --enable-debug
make
make install
(more stuff)
Also, you don't need to explicitly make an interim NEW_CONFIG_PATH,
though the memory hit you take doing that is pretty negligible :)
PKG_CONFIG_PATH=(some cvs dir):$PKG_CONFIG_PATH works fine all the way down.
As a side note, are you double mailing the list intentionally, or is
that your MUA going nuts?
--
Randy
Marc Schwartz wrote:
>
>
> Ok. I think I have it now. Here is the new sequence:
>
> # SET REQUIRED PKG_CONFIG DIRECTORIES
> NEW_CONFIG_PATH=${cvs_dir}/xfce4-panel/panel
> NEW_CONFIG_PATH=$NEW_CONFIG_PATH:${cvs_dir}/libxfcegui4/libxfcegui4
> NEW_CONFIG_PATH=$NEW_CONFIG_PATH:${cvs_dir}/libxfce4util/libxfce4util
> NEW_CONFIG_PATH=$NEW_CONFIG_PATH:${cvs_dir}/libxfce4mcs/libxfce4mcs
> NEW_CONFIG_PATH=$NEW_CONFIG_PATH:${cvs_dir}/xfce-mcs-manager/xfce-mcs-manager
> NEW_CONFIG_PATH=$NEW_CONFIG_PATH:${cvs_dir}/xffm/src
> NEW_CONFIG_PATH=$NEW_CONFIG_PATH:${cvs_dir}/xfce4-session/xfce4-session
> NEW_CONFIG_PATH=$NEW_CONFIG_PATH:/usr/local/lib/pkgconfig
> PKG_CONFIG_PATH=$NEW_CONFIG_PATH:$PKG_CONFIG_PATH
>
>
> I use NEW_CONFIG_PATH to set up the cvs paths, then append /usr/local...
> then the default $PKG_CONFIG_PATH. I also removed the export.
>
> Thanks Randy.
>
> Marc
>
>
>
> _______________________________________________
> Xfce4-dev mailing list
> Xfce4-dev at xfce.org
> http://lunar-linux.org/mailman/listinfo/xfce4-dev
More information about the Xfce4-dev
mailing list