3 # Licensed to the Apache Software Foundation (ASF) under one or more
4 # contributor license agreements. See the NOTICE file distributed with
5 # this work for additional information regarding copyright ownership.
6 # The ASF licenses this file to You under the Apache License, Version 2.0
7 # (the "License"); you may not use this file except in compliance with
8 # the License. You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
19 # instdso.sh - install Apache DSO modules
21 # we use this instead of libtool --install because:
22 # 1) on a few platforms libtool doesn't install DSOs exactly like we'd
23 # want (weird names, doesn't remove DSO first)
24 # 2) we never want the .la files copied, so we might as well copy
25 # the .so files ourselves
27 if test "$#" != "3"; then
28 echo "wrong number of arguments to instdso.sh"
29 echo "Usage: instdso.sh SH_LIBTOOL-value dso-name path-to-modules"
33 SH_LIBTOOL
=`echo $1 | sed -e 's/^SH_LIBTOOL=//'`
35 DSOARCHIVE_BASENAME
=`basename $2`
37 DSOBASE
=`echo $DSOARCHIVE_BASENAME | sed -e 's/\.la$//'`
38 TARGET_NAME
="$DSOBASE.so"
42 if test "$SYS" = "AIX"
44 # on AIX, shared libraries remain in storage even when
45 # all processes using them have exited; standard practice
46 # prior to installing a shared library is to rm -f first
47 CMD
="rm -f $TARGETDIR/$TARGET_NAME"
52 CMD
="$SH_LIBTOOL --mode=install cp $DSOARCHIVE $TARGETDIR/"
56 if test "$SYS" = "OS/2"
58 # on OS/2, aplibtool --install doesn't copy the .la files & we can't
59 # rename DLLs to have a .so extension or they won't load so none of the
60 # steps below make sense.
64 if test -s "$TARGETDIR/$DSOARCHIVE_BASENAME"
66 DLNAME
=`sed -n "/^dlname=/{s/.*='\([^']*\)'/\1/;p;}" $TARGETDIR/$DSOARCHIVE_BASENAME`
67 LIBRARY_NAMES
=`sed -n "/^library_names/{s/library_names='\([^']*\)'/\1/;p;}" $TARGETDIR/$DSOARCHIVE_BASENAME`
68 LIBRARY_NAMES
=`echo $LIBRARY_NAMES | sed -e "s/ *$DLNAME//g"`
73 echo "Warning! dlname not found in $TARGETDIR/$DSOARCHIVE_BASENAME."
74 echo "Assuming installing a .so rather than a libtool archive."
78 if test -n "$LIBRARY_NAMES"
80 for f
in $LIBRARY_NAMES
86 if test "$DLNAME" != "$TARGET_NAME"
88 mv $TARGETDIR/$DLNAME $TARGETDIR/$TARGET_NAME
91 rm -f $TARGETDIR/$DSOARCHIVE_BASENAME
92 rm -f $TARGETDIR/$DSOBASE.a
93 rm -f $TARGETDIR/lib
$DSOBASE.a
94 rm -f $TARGETDIR/lib
$TARGET_NAME