mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
b57def1c2e
This fixes the long standing unclickable links problem under autoconf. Thanks to Ramiro Estrugo <ramiro@netscape.com> for the pointers that led to this fix.
98 lines
2.1 KiB
Bash
Executable File
98 lines
2.1 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.
|
|
#
|
|
|
|
DEST=$1; shift
|
|
NAME=$1; shift
|
|
CLASS=$1; shift
|
|
VERSIONN=$1; shift
|
|
STRS=$1; shift
|
|
RESOURCES=$1; shift
|
|
RES_TRANS=$1; shift
|
|
MOZ_USER_DIR=$1; shift
|
|
VSUFFIX=$1; shift
|
|
SS=$1; shift
|
|
LOCALE_MAP=$1
|
|
|
|
|
|
if test $# -eq 2
|
|
then
|
|
shift
|
|
MAIL_IM_HACK=$1; shift
|
|
NEWS_IM_HACK=$1; shift
|
|
else
|
|
MAIL_IM_HACK=""
|
|
NEWS_IM_HACK=""
|
|
fi
|
|
|
|
PROGNAME="mozilla"
|
|
|
|
echo "Generating ${DEST} from resources..."
|
|
|
|
VN=`sed -n 's/^#define VERSION_NUMBER *\(.*\)$/\1/p' ${VERSIONN}`
|
|
VERS=`echo ${VN}${VSUFFIX}`
|
|
|
|
SGIP=`echo ${DEST} | sed -n 's/.*IRIX.*/TRUE/p'`
|
|
if [ "x${SGIP}" = "xTRUE" ]; then
|
|
NOTSGI="!"
|
|
ONLYSGI=""
|
|
else
|
|
NOTSGI=""
|
|
ONLYSGI="!"
|
|
fi
|
|
|
|
SUNP=`echo ${DEST} | sed -n 's/.*SunOS.*/TRUE/p'`
|
|
if [ "x${SUNP}" = "xTRUE" ]; then
|
|
NOTSUN="!"
|
|
ONLYSUN=""
|
|
else
|
|
NOTSUN=""
|
|
ONLYSUN="!"
|
|
fi
|
|
|
|
SCOP=`echo ${DEST} | sed -n 's/.*SCO.*/TRUE/p'`
|
|
if [ "x${SCOP}" = "xTRUE" ]; then
|
|
ONLYSCO=""
|
|
else
|
|
ONLYSCO="!"
|
|
fi
|
|
|
|
# Sed sucks! I have to hard code the filename
|
|
rm -f ${DEST}
|
|
cat ${RESOURCES} ${LOCALE_MAP} ${STRS} | sed \
|
|
"s/@NAME@/${NAME}/g;
|
|
s/@CLASS@/${CLASS}/g;
|
|
s/@PROGNAME@/${PROGNAME}/g;
|
|
s/@VERSION@/${VERS}/g;
|
|
s/@NOTSGI@/${NOTSGI}/g;
|
|
s/@NOTSUN@/${NOTSUN}/g;
|
|
s/@ONLYSGI@/${ONLYSGI}/g;
|
|
s/@ONLYSCO@/${ONLYSCO}/g;
|
|
s/@ONLYSUN@/${ONLYSUN}/g;
|
|
s/@LOC@//g;
|
|
s/@LTD@//g;
|
|
s:@LIBDIR@:${LOC_LIB_DIR}:g;
|
|
s/@MAIL_IM_HACK@/${MAIL_IM_HACK}/g;
|
|
s/@NEWS_IM_HACK@/${NEWS_IM_HACK}/g;
|
|
s/@URLVERSION@/${VERS}/g;
|
|
s/@MOZ_USER_DIR@/${MOZ_USER_DIR}/g;
|
|
/@INCLUDE resources-translations@.*/ {
|
|
r ${RES_TRANS}
|
|
d
|
|
}" > ${DEST}
|
|
|