pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

finding dependencies in the modular x.org tree



I use this script to search for dependencies:

#!/bin/sh

for i in *; do
if [ -d $i ]; then
 cd $i
 echo $i:
 cat configure.ac | grep PKG_CHECK_MODULES | sed -e
's/.*PKG_CHECK_MODULES([A-Z0-9]* \([a-z0-9_\$A-Z]*\).*/\1/g'
 echo
 cd ..;
 fi;
done

I don't see any listed dependencies for the proto modules.

--Blair

--
Support WFMU-FM: free-form radio for the masses!

<http://www.wfmu.org/>
91.1 FM Jersey City, NJ
90.1 FM Mt. Hope, NY

"The Reggae Schoolroom":
<http://www.wfmu.org/playlists/RS/>



Home | Main Index | Thread Index | Old Index