3 --- configure.in.orig 2007-02-16 12:50:50.000000000 -0700
5 @@ -101,7 +101,8 @@ AC_PROG_LN_S
6 # Checks for libraries.
7 if test $WINDOWS -ne 1; then
8 AC_CHECK_LIB(z, uncompress, , AC_MSG_ERROR(could not locate libz compression library))
9 -AC_CHECK_LIB(dl, dlopen, , AC_MSG_ERROR(could not locate dynamic library services library))
10 +# NetBSD: dlopen is not in a library. It is included in every dynamically linked program automatically.
11 +#AC_CHECK_LIB(dl, dlopen, , AC_MSG_ERROR(could not locate dynamic library services library))
14 # add our compiled static libraries
15 @@ -121,12 +122,13 @@ AC_ARG_ENABLE(pk11install,
16 [ --enable-pk11install build an installer for legacy user apps(default=no)])
17 if test "$enable_pk11install" = "yes" -o "$enable_pk11install" = "true"
19 +/* Bugzilla Bug 250738: build patches for coolkey */
20 if test $WINDOWS -ne 1; then
21 PKG_CHECK_MODULES(NSS, nss, true, [ AC_MSG_ERROR(could not find NSS Crypto libraries) ])
23 - enable_pk11install = "yes"
24 + enable_pk11install="yes"
26 - enable_pk11install = "no"
27 + enable_pk11install="no"
28 AC_MSG_WARN([skipping pk11install])