]> granicus.if.org Git - apache/blob - build/instdso.sh
rebuild
[apache] / build / instdso.sh
1 #!/bin/sh
2 #
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
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
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.
17 #
18 #
19 # instdso.sh - install Apache DSO modules
20 #
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
26
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"
30     exit 1
31 fi
32
33 SH_LIBTOOL=`echo $1 | sed -e 's/^SH_LIBTOOL=//'`
34 DSOARCHIVE=$2
35 DSOARCHIVE_BASENAME=`basename $2`
36 TARGETDIR=$3
37 DSOBASE=`echo $DSOARCHIVE_BASENAME | sed -e 's/\.la$//'`
38 TARGET_NAME="$DSOBASE.so"
39
40 SYS=`uname -s`
41
42 if test "$SYS" = "AIX"
43 then
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"
48     echo $CMD
49     $CMD || exit $?
50 fi
51
52 case $SYS in
53     SunOS|HP-UX)
54         INSTALL_CMD=cp
55         ;;
56     *)
57         type install >/dev/null 2>&1 && INSTALL_CMD=install || INSTALL_CMD=cp
58         ;;
59 esac
60
61 CMD="$SH_LIBTOOL --mode=install $INSTALL_CMD $DSOARCHIVE $TARGETDIR/"
62 echo $CMD
63 $CMD || exit $?
64
65 if test "$SYS" = "OS/2"
66 then
67     # on OS/2, aplibtool --install doesn't copy the .la files & we can't
68     # rename DLLs to have a .so extension or they won't load so none of the 
69     # steps below make sense.
70     exit 0
71 fi
72
73 if test -s "$TARGETDIR/$DSOARCHIVE_BASENAME"
74 then
75   DLNAME=`sed -n "/^dlname=/{s/.*='\([^']*\)'/\1/;p;}" $TARGETDIR/$DSOARCHIVE_BASENAME`
76   LIBRARY_NAMES=`sed -n "/^library_names/{s/library_names='\([^']*\)'/\1/;p;}" $TARGETDIR/$DSOARCHIVE_BASENAME`
77   LIBRARY_NAMES=`echo $LIBRARY_NAMES | sed -e "s/ *$DLNAME//g"`
78 fi
79
80 if test -z "$DLNAME"
81 then
82   echo "Warning!  dlname not found in $TARGETDIR/$DSOARCHIVE_BASENAME."
83   echo "Assuming installing a .so rather than a libtool archive."
84   exit 0
85 fi
86
87 if test -n "$LIBRARY_NAMES"
88 then
89     for f in $LIBRARY_NAMES
90     do
91         rm -f $TARGETDIR/$f
92     done
93 fi
94
95 if test "$DLNAME" != "$TARGET_NAME"
96 then
97     mv $TARGETDIR/$DLNAME $TARGETDIR/$TARGET_NAME
98 fi
99
100 rm -f $TARGETDIR/$DSOARCHIVE_BASENAME
101 rm -f $TARGETDIR/$DSOBASE.a
102 rm -f $TARGETDIR/lib$DSOBASE.a
103 rm -f $TARGETDIR/lib$TARGET_NAME
104
105 exit 0