Overview
Comment: | Updated to latest remote shobj.m4 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1-7 |
Files: | files | file ages | folders |
SHA1: |
ebc8167da3d3bedda0c15235b8a61dcc |
User & Date: | rkeene on 2016-12-07 18:45:09 |
Other Links: | branch diff | manifest | tags |
Context
2016-12-07
| ||
18:45 | Simplified setting of RPATH check-in: 8390ad0b38 user: rkeene tags: tls-1-7 | |
18:45 | Updated to latest remote shobj.m4 check-in: ebc8167da3 user: rkeene tags: tls-1-7 | |
18:19 | Updated autoconf macro to deal with RPATH better check-in: e7e20d5486 user: rkeene tags: tls-1-7 | |
Changes
Modified aclocal/shobj.m4 from [e58d988e5c] to [4440492823].
︙ | |||
77 78 79 80 81 82 83 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | + + + + + + + + + + + + + + + - + + - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - + + + + + + + + - + - + + | SHLIBOBJS="" for obj in $LIB@&t@OBJS; do SHLIBOBJS="$SHLIBOBJS `echo $obj | sed 's/\.o$/_shr.o/g'`" done ]) AC_DEFUN([DC_SYNC_RPATH], [ AC_ARG_ENABLE([rpath], AS_HELP_STRING([--disable-rpath], [disable setting of rpath]), [ if test "$enableval" = 'no'; then set_rpath='no' else set_rpath='yes' fi ], [ if test "$cross_compiling" = 'yes'; then set_rpath='no' else set_rpath='yes' fi ]) if test "$set_rpath" = 'yes'; then |
︙ | |||
140 141 142 143 144 145 146 | 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | - - - | SHOBJEXT="so" ;; *) SHOBJEXT="sl" ;; esac ;; |
︙ |