mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
4c3f9250dd
linux. Also link with libBrokenLocale.so since locale support in motif 2.1 with GLIBC is currently broken.
107 lines
2.4 KiB
Bash
Executable File
107 lines
2.4 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# The contents of this file are subject to the Netscape Public License
|
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
# http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
# for the specific language governing rights and limitations under the
|
|
# NPL.
|
|
#
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
# Reserved.
|
|
#
|
|
|
|
##############################################################################
|
|
##
|
|
## Name: xmversion.sh - a fast way to get a motif lib's version
|
|
##
|
|
## Description: Print the major and minor version numbers for motif libs on
|
|
## the system that executes the script. Could be tweaked
|
|
## to output more info.
|
|
##
|
|
## More checks need to be added for more platforms.
|
|
## Currently this script is only useful in Linux Universe
|
|
## where there are a many versions of motif.
|
|
##
|
|
## Author: Ramiro Estrugo <ramiro@netscape.com>
|
|
##
|
|
##############################################################################
|
|
|
|
# The string build into the motif libs
|
|
MOTIF_VERSION_STRING="Motif Version"
|
|
|
|
# Make motif 1.x the default
|
|
MOTIF_DEFAULT_VERSION=1
|
|
|
|
# Reasonable defaults for motif lib locations
|
|
MOTIF_LIB_DIR=/usr/lib
|
|
MOTIF_STATIC_LIB=libXm.a
|
|
MOTIF_SHARED_LIB=libXm.so
|
|
|
|
os=`uname`
|
|
|
|
case `uname`
|
|
in
|
|
Linux)
|
|
case `uname -m`
|
|
in
|
|
ppc)
|
|
MOTIF_LIB_DIR=/usr/local/motif-1.2.4/lib
|
|
;;
|
|
|
|
i386|i486|i586|i686)
|
|
MOTIF_LIB_DIR=/usr/X11R6/lib
|
|
;;
|
|
esac
|
|
;;
|
|
|
|
SunOS)
|
|
case `uname -r`
|
|
in
|
|
5.3|5.4|5.5.1|5.6)
|
|
MOTIF_LIB_DIR=/usr/dt/lib
|
|
;;
|
|
esac
|
|
;;
|
|
|
|
HP-UX)
|
|
MOTIF_LIB_DIR=/usr/lib/Motif1.2
|
|
MOTIF_SHARED_LIB=libXm.sl
|
|
;;
|
|
|
|
AIX)
|
|
MOTIF_LIB_DIR=/usr/lib
|
|
MOTIF_SHARED_LIB=libXm.a
|
|
;;
|
|
|
|
esac
|
|
|
|
# Look for the shared one first
|
|
MOTIF_LIB=
|
|
|
|
if [ -f $MOTIF_LIB_DIR/$MOTIF_SHARED_LIB ]
|
|
then
|
|
MOTIF_LIB=$MOTIF_LIB_DIR/$MOTIF_SHARED_LIB
|
|
else
|
|
if [ -f $MOTIF_LIB_DIR/$MOTIF_STATIC_LIB ]
|
|
then
|
|
MOTIF_LIB=$MOTIF_LIB_DIR/$MOTIF_STATIC_LIB
|
|
else
|
|
echo $MOTIF_DEFAULT_VERSION
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
VERSION=`strings $MOTIF_LIB | grep "Motif Version" | awk '{ print $3;}'`
|
|
|
|
MAJOR=`echo $VERSION | awk -F"." '{ print $1; }'`
|
|
MINOR=`echo $VERSION | awk -F"." '{ print $2; }'`
|
|
|
|
echo $MAJOR.$MINOR
|
|
|