Add check for motifs that have builtin Xpm support (such as solaris 2.6).
git-svn-id: svn://10.0.0.236/trunk@12036 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -426,7 +426,12 @@ motif_check_xpm()
|
||||
then
|
||||
if [ -f $_lib ]
|
||||
then
|
||||
_count=`strings $_lib | grep Xpm | wc -l`
|
||||
# Solaris 2.6's motif has builtin Xpm support.
|
||||
# Its a dumbass hack... Why not ship libXpm to avoid
|
||||
# the confusion ? Anyway, do 'grep -v XmXpm' to catch this
|
||||
# problem. In this case Xpm is not needed, since the symbols
|
||||
# are builtin to the libXm library.
|
||||
_count=`strings $_lib | grep Xpm | grep -v XmXpm wc -l`
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user