Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 221879 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in.old (-18 / +1 lines)
Lines 126-139 Link Here
126
    *) AC_MSG_ERROR(bad value ${enableval} for --enable-stats) ;;
126
    *) AC_MSG_ERROR(bad value ${enableval} for --enable-stats) ;;
127
    esac],[stats=$semh])
127
    esac],[stats=$semh])
128
128
129
AC_ARG_ENABLE( rtldgroup, 
130
[  --enable-rtldgroup      build with RTLD_GROUP passed to dlopen (when supported)  [default=yes]],
131
[ case "${enableval}" in
132
    yes) rtldgroup=true ;;
133
    no) rtldgroup=false ;;
134
    *) AC_MSG_ERROR(bad value ${enableval} for --enable-rltdgroup) ;;
135
    esac],[rtldgroup=true])
136
137
AC_ARG_ENABLE( ltdllib, 
129
AC_ARG_ENABLE( ltdllib, 
138
[  --enable-ltdllib        Use system libltdl.so (if found)  [default=no]],
130
[  --enable-ltdllib        Use system libltdl.so (if found)  [default=no]],
139
[ case "${enableval}" in
131
[ case "${enableval}" in
Lines 148-162 Link Here
148
INCLTDL=""
140
INCLTDL=""
149
LIBLTDL=""
141
LIBLTDL=""
150
142
151
AC_MSG_CHECKING( Have we enabled using RTLD_GROUP )
152
if test "x$rtldgroup" = "xtrue"; then
153
AC_MSG_RESULT( yes )
154
AC_LIBLTDL_CONVENIENCE
155
else
156
AC_MSG_RESULT( no );
157
AC_LIBLTDL_CONVENIENCE_G
158
fi
159
160
dnl Check for dlopen support
143
dnl Check for dlopen support
161
AC_LIBTOOL_DLOPEN
144
AC_LIBTOOL_DLOPEN
162
145
Lines 164-170 Link Here
164
AM_PROG_LIBTOOL
147
AM_PROG_LIBTOOL
165
148
166
dnl Configure libltdl
149
dnl Configure libltdl
167
AC_CONFIG_SUBDIRS(libltdl)
150
AC_WITH_LTDL
168
151
169
use_builtin_libtool="no"
152
use_builtin_libtool="no"
170
153

Return to bug 221879