Changeset 2960
- Timestamp:
- 03/05/10 10:15:20 (6 months ago)
- Location:
- trunk/OpenDNSSEC
- Files:
-
- 2 modified
- 1 copied
-
Makefile.am (modified) (1 diff)
-
configure.ac (modified) (2 diffs)
-
m4/acx_libcurl.m4 (copied) (copied from trunk/OpenDNSSEC/plugins/eppclient/m4/acx_libcurl.m4) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/OpenDNSSEC/Makefile.am
r2669 r2960 18 18 endif 19 19 20 if ENABLE_EPPCLIENT 21 SUBDIRS += plugins/eppclient 22 endif 23 20 24 EXTRA_DIST = $(srcdir)/KNOWN_ISSUES -
trunk/OpenDNSSEC/configure.ac
r2957 r2960 13 13 OPENDNSSEC_COMMON 14 14 15 AC_CONFIG_SUBDIRS([ libhsm enforcer signer conf plugins/eppclient])15 AC_CONFIG_SUBDIRS([ libhsm enforcer signer conf ]) 16 16 17 17 # xml … … 47 47 48 48 # plugins/eppclient 49 ACX_LIBCURL 49 AC_ARG_ENABLE(eppclient, 50 AC_HELP_STRING([--enable-eppclient], 51 [Enable eppclient build (default disabled)]), 52 [enable_eppclient="${enableval}"], 53 [enable_eppclient="no"]) 54 if test "x${enable_eppclient}" = "xyes"; then 55 ACX_LIBCURL 56 AC_CONFIG_SUBDIRS([ plugins/eppclient ]) 57 fi 58 AM_CONDITIONAL([ENABLE_EPPCLIENT], [test "${enable_eppclient}" = "yes"]) 50 59 51 60 AC_CONFIG_FILES([ -
trunk/OpenDNSSEC/m4/acx_libcurl.m4
