View | Details | Raw Unified | Return to bug 177369 | Differences between
and this patch

Collapse All | Expand All

(-)ftp/curl/Makefile (-68 / +61 lines)
Lines 1-13 Link Here
1
# New ports collection makefile for:	curl
1
# Created by: Neil Blakey-Milner <nbm@rucus.ru.ac.za>
2
# Date created:		12 December 1998
3
# Whom:			Neil Blakey-Milner <nbm@rucus.ru.ac.za>
4
#
5
# $FreeBSD$
2
# $FreeBSD$
6
#
7
3
8
PORTNAME=	curl
4
PORTNAME=	curl
9
PORTVERSION=	7.24.0
5
PORTVERSION=	7.29.0
10
PORTREVISION=	2
11
CATEGORIES=	ftp ipv6 www
6
CATEGORIES=	ftp ipv6 www
12
MASTER_SITES=	http://curl.haxx.se/download/ \
7
MASTER_SITES=	http://curl.haxx.se/download/ \
13
		LOCAL/sunpoet
8
		LOCAL/sunpoet
Lines 18-38 Link Here
18
13
19
LICENSE=	MIT
14
LICENSE=	MIT
20
15
21
OPTIONS=	CARES "Asynchronous DNS resolution via c-ares" off \
16
OPTIONS_DEFINE=	CA_BUNDLE CARES CURL_DEBUG DOCS EXAMPLES GSSAPI IDN IPV6 \
22
		CURL_DEBUG "Enable curl diagnostic output" off \
17
		KERBEROS4 LDAP LDAPS LIBSSH2 NTLM PROXY RTMP TRACKMEMORY
23
		GNUTLS "Use GNU TLS if OPENSSL is OFF" off \
18
OPTIONS_DEFAULT=	CA_BUNDLE IPV6 OPENSSL PROXY
24
		IPV6 "IPv6 support" on \
19
OPTIONS_SINGLE=		SSL
25
		KERBEROS4 "Kerberos 4 authentication" off \
20
OPTIONS_SINGLE_SSL=	GNUTLS OPENSSL
26
		LDAP "LDAP support" off \
21
CA_BUNDLE_DESC=		Install CA bundle for OpenSSL
27
		LDAPS "LDAPS support (requires LDAP and SSL)" off \
22
CURL_DEBUG_DESC=	cURL diagnostic output
28
		LIBIDN "Internationalized Domain Names via libidn" off \
23
LIBSSH2_DESC=		SCP/SFTP support via libssh2
29
		LIBSSH2 "SCP/SFTP support via libssh2" off \
24
TRACKMEMORY_DESC=	cURL memory diagnostic output
30
		NTLM "NTLM authentication" off \
31
		OPENSSL "OpenSSL support" on \
32
		CA_BUNDLE "Install CA bundle for OpenSSL" on \
33
		PROXY "Proxy support" on \
34
		RTMP "RTMP streams support" off \
35
		TRACKMEMORY "Enable curl memory diagnostic output" off
36
25
37
CONFIGURE_ARGS+=--disable-threaded-resolver --disable-werror \
26
CONFIGURE_ARGS+=--disable-threaded-resolver --disable-werror \
38
		--enable-imap --enable-pop3 --enable-rtsp --enable-smtp
27
		--enable-imap --enable-pop3 --enable-rtsp --enable-smtp
Lines 52-58 Link Here
52
		MANUAL README.netware README.win32 RESOURCES SSLCERTS THANKS \
41
		MANUAL README.netware README.win32 RESOURCES SSLCERTS THANKS \
53
		TODO TheArtOfHttpScripting VERSIONS curl-config.html \
42
		TODO TheArtOfHttpScripting VERSIONS curl-config.html \
54
		curl-config.pdf curl.html curl.pdf index.html
43
		curl-config.pdf curl.html curl.pdf index.html
55
MAN1=		curl.1 curl-config.1
44
MAN1=		curl.1 curl-config.1 mk-ca-bundle.1
56
MAN3=		curl_easy_cleanup.3 curl_easy_duphandle.3 curl_easy_escape.3 \
45
MAN3=		curl_easy_cleanup.3 curl_easy_duphandle.3 curl_easy_escape.3 \
57
		curl_easy_getinfo.3 curl_easy_init.3 curl_easy_pause.3 \
46
		curl_easy_getinfo.3 curl_easy_init.3 curl_easy_pause.3 \
58
		curl_easy_perform.3 curl_easy_recv.3 curl_easy_reset.3 \
47
		curl_easy_perform.3 curl_easy_recv.3 curl_easy_reset.3 \
Lines 65-110 Link Here
65
		curl_multi_info_read.3 curl_multi_init.3 curl_multi_perform.3 \
54
		curl_multi_info_read.3 curl_multi_init.3 curl_multi_perform.3 \
66
		curl_multi_remove_handle.3 curl_multi_setopt.3 \
55
		curl_multi_remove_handle.3 curl_multi_setopt.3 \
67
		curl_multi_socket.3 curl_multi_socket_action.3 \
56
		curl_multi_socket.3 curl_multi_socket_action.3 \
68
	       	curl_multi_strerror.3 curl_multi_timeout.3 \
57
		curl_multi_strerror.3 curl_multi_timeout.3 curl_multi_wait.3 \
69
		curl_share_cleanup.3 curl_share_init.3 curl_share_setopt.3 \
58
		curl_share_cleanup.3 curl_share_init.3 curl_share_setopt.3 \
70
		curl_share_strerror.3 curl_slist_append.3 \
59
		curl_share_strerror.3 curl_slist_append.3 \
71
		curl_slist_free_all.3 curl_strequal.3 curl_unescape.3 \
60
		curl_slist_free_all.3 curl_strequal.3 curl_unescape.3 \
72
		curl_version.3 curl_version_info.3 libcurl.3 libcurl-easy.3 \
61
		curl_version.3 curl_version_info.3 libcurl.3 libcurl-easy.3 \
73
		libcurl-errors.3 libcurl-multi.3 libcurl-share.3 \
62
		libcurl-errors.3 libcurl-multi.3 libcurl-share.3 \
74
		libcurl-tutorial.3
63
		libcurl-tutorial.3
75
PLIST_SUB=	SHLIB_VER="${SHLIB_VER}"
64
PLIST_SUB+=	SHLIB_VER="${SHLIB_VER}"
65
PORTDOCS=	*
66
PORTEXAMPLES=	*
76
67
77
SHLIB_VER=	6
68
SHLIB_VER=	7
78
.endif
69
.endif
79
70
80
.include <bsd.port.options.mk>
71
.include <bsd.port.options.mk>
81
72
82
.if defined(WITH_GNUTLS) && defined(WITH_OPENSSL)
73
.if ${PORT_OPTIONS:MCA_BUNDLE} && empty(PORT_OPTIONS:MOPENSSL)
83
IGNORE=		may only use GNU TLS if OpenSSL support is disabled
74
IGNORE=		only supports CA bundle with OpenSSL
84
.endif
75
.endif
85
76
86
.if defined(WITH_LIBSSH2) && !defined(WITH_OPENSSL)
77
.if ${PORT_OPTIONS:MLIBSSH2} && empty(PORT_OPTIONS:MOPENSSL)
87
IGNORE=		only supports LIBSSH2 with OpenSSL
78
IGNORE=		only supports LIBSSH2 with OpenSSL
88
.endif
79
.endif
89
80
90
.if defined(WITH_NTLM) && !defined(WITH_OPENSSL)
81
.if ${PORT_OPTIONS:MNTLM} && empty(PORT_OPTIONS:MOPENSSL)
91
IGNORE=		only supports NTLM with OpenSSL
82
IGNORE=		only supports NTLM with OpenSSL
92
.endif
83
.endif
93
84
94
.if defined(WITH_LDAPS)
85
.if ${PORT_OPTIONS:MLDAPS}
95
.if !defined(WITH_LDAP)
86
.if empty(PORT_OPTIONS:MLDAP)
96
IGNORE=		only supports LDAPS with LDAP
87
IGNORE=		only supports LDAPS with LDAP
97
.else
88
.elif empty(PORT_OPTIONS:MOPENSSL) && empty(PORT_OPTIONS:MGNUTLS)
98
.if !defined(WITH_OPENSSL) && !defined(WITH_GNUTLS)
89
IGNORE=		only supports LDAPS with SSL (OpenSSL or GnuTLS)
99
IGNORE=		only supports LDAPS with SSL (OpenSSL or GNUTLS)
100
.endif
90
.endif
101
.endif
91
.endif
102
.endif
103
92
104
.if !defined(WITHOUT_OPENSSL)
93
.if ${PORT_OPTIONS:MOPENSSL}
105
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
106
CONFIGURE_ARGS+=	--with-ssl=${OPENSSLBASE}
94
CONFIGURE_ARGS+=	--with-ssl=${OPENSSLBASE}
107
.if !defined(WITHOUT_CA_BUNDLE)
95
USE_OPENSSL=		yes
96
.if ${PORT_OPTIONS:MCA_BUNDLE}
108
RUN_DEPENDS+=	${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss
97
RUN_DEPENDS+=	${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss
109
CONFIGURE_ARGS+=	--with-ca-bundle=${LOCALBASE}/share/certs/ca-root-nss.crt
98
CONFIGURE_ARGS+=	--with-ca-bundle=${LOCALBASE}/share/certs/ca-root-nss.crt
110
.else
99
.else
Lines 112-160 Link Here
112
.endif
101
.endif
113
.else
102
.else
114
CONFIGURE_ARGS+=	--without-ssl
103
CONFIGURE_ARGS+=	--without-ssl
115
.if defined(WITH_CA_BUNDLE)
116
IGNORE=			only supports CA bundle with OpenSSL
117
.endif
104
.endif
118
.endif
119
105
120
.if defined(WITH_CARES)
106
.if ${PORT_OPTIONS:MCARES}
121
LIB_DEPENDS+=	cares.2:${PORTSDIR}/dns/c-ares
107
LIB_DEPENDS+=	cares:${PORTSDIR}/dns/c-ares
122
CONFIGURE_ARGS+=	--enable-ares=${LOCALBASE}
108
CONFIGURE_ARGS+=	--enable-ares=${LOCALBASE}
123
.else
109
.else
124
CONFIGURE_ARGS+=	--disable-ares
110
CONFIGURE_ARGS+=	--disable-ares
125
.endif
111
.endif
126
112
127
.if defined(WITH_GNUTLS)
113
.if ${PORT_OPTIONS:MGNUTLS}
128
LIB_DEPENDS+=	gnutls:${PORTSDIR}/security/gnutls
114
LIB_DEPENDS+=	gnutls:${PORTSDIR}/security/gnutls
129
CONFIGURE_ARGS+=--with-gnutls=${LOCALBASE}
115
CONFIGURE_ARGS+=--with-gnutls=${LOCALBASE}
130
.else
116
.else
131
CONFIGURE_ARGS+=--without-gnutls
117
CONFIGURE_ARGS+=--without-gnutls
132
.endif
118
.endif
133
119
134
.if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
120
.if ${PORT_OPTIONS:MOPENSSL} || ${PORT_OPTIONS:MGNUTLS}
135
PLIST_SUB+=	SSL=""
121
PLIST_SUB+=	SSL=""
136
.else
122
.else
137
PLIST_SUB+=	SSL="@comment "
123
PLIST_SUB+=	SSL="@comment "
138
.endif
124
.endif
139
125
140
.if defined(WITH_IPV6)
126
.if ${PORT_OPTIONS:MGSSAPI}
127
CONFIGURE_ARGS+=	--with-gssapi-includes=/usr/include \
128
			--with-gssapi-libs=/usr/lib
129
.else
130
CONFIGURE_ARGS+=	--without-gssapi
131
.endif
132
133
.if ${PORT_OPTIONS:MIPV6}
141
CONFIGURE_ARGS+=	--enable-ipv6
134
CONFIGURE_ARGS+=	--enable-ipv6
142
.else
135
.else
143
CONFIGURE_ARGS+=	--disable-ipv6
136
CONFIGURE_ARGS+=	--disable-ipv6
144
.endif
137
.endif
145
138
146
.if exists(/usr/lib/libkrb.a) && defined(WITH_KERBEROS4)
139
.if ${PORT_OPTIONS:MKERBEROS4} && exists(/usr/lib/libkrb.a)
147
CONFIGURE_ARGS += --with-krb4=/usr
140
CONFIGURE_ARGS += --with-krb4=/usr
148
.else
141
.else
149
CONFIGURE_ARGS += --without-krb4
142
CONFIGURE_ARGS += --without-krb4
150
.endif
143
.endif
151
144
152
.if defined(WITH_LDAP)
145
.if ${PORT_OPTIONS:MLDAP}
153
CONFIGURE_ARGS+=	--enable-ldap
146
CONFIGURE_ARGS+=	--enable-ldap
154
USE_OPENLDAP=	yes
147
USE_OPENLDAP=	yes
155
CFLAGS+=	-I${LOCALBASE}/include
148
CPPFLAGS+=	-I${LOCALBASE}/include
156
LDFLAGS+=	-L${LOCALBASE}/lib
149
LDFLAGS+=	-L${LOCALBASE}/lib
157
.if defined(WITH_LDAPS)
150
.if ${PORT_OPTIONS:MLDAPS}
158
CONFIGURE_ARGS+=	--enable-ldaps
151
CONFIGURE_ARGS+=	--enable-ldaps
159
.else
152
.else
160
CONFIGURE_ARGS+=	--disable-ldaps
153
CONFIGURE_ARGS+=	--disable-ldaps
Lines 163-206 Link Here
163
CONFIGURE_ARGS+=	--disable-ldap --disable-ldaps
156
CONFIGURE_ARGS+=	--disable-ldap --disable-ldaps
164
.endif
157
.endif
165
158
166
.if defined(WITH_LIBIDN)
159
.if ${PORT_OPTIONS:MIDN}
167
LIB_DEPENDS+=	idn.17:${PORTSDIR}/dns/libidn
160
LIB_DEPENDS+=	idn:${PORTSDIR}/dns/libidn
168
CONFIGURE_ARGS+=	--with-libidn=${LOCALBASE}
161
CONFIGURE_ARGS+=	--with-libidn=${LOCALBASE}
169
.else
162
.else
170
CONFIGURE_ARGS+=	--without-libidn
163
CONFIGURE_ARGS+=	--without-libidn
171
.endif
164
.endif
172
165
173
.if defined(WITH_LIBSSH2)
166
.if ${PORT_OPTIONS:MLIBSSH2}
174
LIB_DEPENDS+=	ssh2.1:${PORTSDIR}/security/libssh2
167
LIB_DEPENDS+=	ssh2:${PORTSDIR}/security/libssh2
175
CONFIGURE_ARGS+=	--with-libssh2=${LOCALBASE}
168
CONFIGURE_ARGS+=	--with-libssh2=${LOCALBASE}
176
.else
169
.else
177
CONFIGURE_ARGS+=	--without-libssh2
170
CONFIGURE_ARGS+=	--without-libssh2
178
.endif
171
.endif
179
172
180
.if defined(WITH_CURL_DEBUG)
173
.if ${PORT_OPTIONS:MCURL_DEBUG}
181
CONFIGURE_ARGS+=	--enable-debug
174
CONFIGURE_ARGS+=	--enable-debug
182
.endif
175
.endif
183
176
184
.if defined(WITH_RTMP)
177
.if ${PORT_OPTIONS:MRTMP}
185
LIB_DEPENDS+=	rtmp.0:${PORTSDIR}/multimedia/rtmpdump
178
LIB_DEPENDS+=	rtmp:${PORTSDIR}/multimedia/rtmpdump
186
CONFIGURE_ARGS+=	--with-librtmp=${LOCALBASE}
179
CONFIGURE_ARGS+=	--with-librtmp=${LOCALBASE}
187
.else
180
.else
188
CONFIGURE_ARGS+=	--without-librtmp
181
CONFIGURE_ARGS+=	--without-librtmp
189
.endif
182
.endif
190
183
191
.if defined(WITH_TRACKMEMORY)
184
.if ${PORT_OPTIONS:MTRACKMEMORY}
192
CONFIGURE_ARGS+=	--enable-curldebug
185
CONFIGURE_ARGS+=	--enable-curldebug
193
.else
186
.else
194
CONFIGURE_ARGS+=	--disable-curldebug
187
CONFIGURE_ARGS+=	--disable-curldebug
195
.endif
188
.endif
196
189
197
.if defined(WITH_NTLM)
190
.if ${PORT_OPTIONS:MNTLM}
198
CONFIGURE_ARGS+=	--enable-ntlm
191
CONFIGURE_ARGS+=	--enable-ntlm
199
.else
192
.else
200
CONFIGURE_ARGS+=	--disable-ntlm
193
CONFIGURE_ARGS+=	--disable-ntlm
201
.endif
194
.endif
202
195
203
.if !defined(WITHOUT_PROXY)
196
.if ${PORT_OPTIONS:MPROXY}
204
CONFIGURE_ARGS+=	--enable-proxy
197
CONFIGURE_ARGS+=	--enable-proxy
205
.else
198
.else
206
CONFIGURE_ARGS+=	--disable-proxy
199
CONFIGURE_ARGS+=	--disable-proxy
Lines 212-239 Link Here
212
205
213
post-install:
206
post-install:
214
.if !defined(BUILDING_HIPHOP)
207
.if !defined(BUILDING_HIPHOP)
215
	${INSTALL_DATA} ${WRKSRC}/docs/libcurl/libcurl.m4 ${PREFIX}/share/aclocal
208
	${INSTALL_DATA} ${WRKSRC}/docs/libcurl/libcurl.m4 ${PREFIX}/share/aclocal/
216
.if !defined(NOPORTDOCS)
209
.if ${PORT_OPTIONS:MDOCS}
217
	${MKDIR} ${DOCSDIR}/ ${DOCSDIR}/libcurl/
210
	${MKDIR} ${DOCSDIR}/ ${DOCSDIR}/libcurl/
218
	cd ${WRKSRC}/docs/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/
211
	cd ${WRKSRC}/docs/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/
219
	cd ${WRKSRC}/docs/libcurl/ && ${INSTALL_DATA} ABI *.html *.pdf *.m4 ${DOCSDIR}/libcurl/
212
	cd ${WRKSRC}/docs/libcurl/ && ${INSTALL_DATA} ABI *.html *.pdf *.m4 ${DOCSDIR}/libcurl/
220
.endif
213
.endif
221
.if !defined(NOPORTEXAMPLES)
214
.if ${PORT_OPTIONS:MEXAMPLES}
222
	${MKDIR} ${EXAMPLESDIR}/
215
	${MKDIR} ${EXAMPLESDIR}/
223
	cd ${WRKSRC}/docs/examples/ && ${INSTALL_DATA} README Makefile.example makefile* *.c *.cc ${EXAMPLESDIR}/
216
	cd ${WRKSRC}/docs/examples/ && ${INSTALL_DATA} README Makefile.example makefile* *.c *.cpp ${EXAMPLESDIR}/
224
.endif
217
.endif
225
.endif
218
.endif
226
219
227
# Setting LC_ALL=C is a kludge; maybe curl/libcurl shouldn't actually use
220
# Setting LC_ALL=C is a kludge; maybe curl/libcurl shouldn't actually use
228
# the user's locale when dates are sent to the server.
221
# the user's locale when dates are sent to the server.
229
test:	build
222
regression-test: build
230
.if defined(WITHOUT_PROXY)
223
.if empty(PORT_OPTIONS:MPROXY)
231
	@${ECHO_MSG} "******************************************"
224
	@${ECHO_MSG} "******************************************"
232
	@${ECHO_MSG} "* You have disabled curl proxy support.  *"
225
	@${ECHO_MSG} "* You have disabled curl proxy support.  *"
233
	@${ECHO_MSG} "* Some tests SHALL FAIL!                 *"
226
	@${ECHO_MSG} "* Some tests SHALL FAIL!                 *"
234
	@${ECHO_MSG} "* This is being addressed.               *"
227
	@${ECHO_MSG} "* This is being addressed.               *"
235
	@${ECHO_MSG} "******************************************"
228
	@${ECHO_MSG} "******************************************"
236
.endif
229
.endif
237
	@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} LC_ALL=C ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test
230
	cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} LC_ALL=C ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test
238
231
239
.include <bsd.port.mk>
232
.include <bsd.port.mk>
(-)ftp/curl/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (curl-7.24.0.tar.lzma) = cd683ee8be137ed8a8e97d42fd3cc94f88f63d478b83d4abe38e31b6281e2268
1
SHA256 (curl-7.29.0.tar.lzma) = 4ae953ef144bc6cb7c8c0a054ce80f93ea174318cf9b18a2e2cc3cbf062d9b21
2
SIZE (curl-7.24.0.tar.lzma) = 1973811
2
SIZE (curl-7.29.0.tar.lzma) = 2100412
(-)ftp/curl/files/patch-configure (-21 / +8 lines)
Lines 8-27 Link Here
8
8
9
--- configure.orig	2012-02-26 17:52:21.904908587 +0800
9
--- configure.orig	2012-02-26 17:52:21.904908587 +0800
10
+++ configure	2012-02-26 17:52:21.929909948 +0800
10
+++ configure	2012-02-26 17:52:21.929909948 +0800
11
@@ -15049,10 +15049,10 @@
11
@@ -16651,6 +16651,9 @@
12
     flags_dbg_all="$flags_dbg_all -gdwarf-2"
13
     flags_dbg_all="$flags_dbg_all -gvms"
14
     flags_dbg_yes="-g"
15
-    flags_dbg_off="-g0"
16
+    flags_dbg_off=""
17
     flags_opt_all="-O -O0 -O1 -O2 -O3 -Os"
18
     flags_opt_yes="-O2"
19
-    flags_opt_off="-O0"
20
+    flags_opt_off=""
21
   else
22
     { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
23
 $as_echo "no" >&6; }
24
@@ -15892,6 +15892,9 @@
25
     tmp_CFLAGS="$CFLAGS"
12
     tmp_CFLAGS="$CFLAGS"
26
     tmp_CPPFLAGS="$CPPFLAGS"
13
     tmp_CPPFLAGS="$CPPFLAGS"
27
 
14
 
Lines 31-37 Link Here
31
     ac_var_stripped=""
18
     ac_var_stripped=""
32
   for word1 in $tmp_CFLAGS; do
19
   for word1 in $tmp_CFLAGS; do
33
     ac_var_strip_word="no"
20
     ac_var_strip_word="no"
34
@@ -15922,6 +15925,7 @@
21
@@ -16681,6 +16684,7 @@
35
   done
22
   done
36
     tmp_CPPFLAGS="$ac_var_stripped"
23
     tmp_CPPFLAGS="$ac_var_stripped"
37
   squeeze tmp_CPPFLAGS
24
   squeeze tmp_CPPFLAGS
Lines 39-45 Link Here
39
 
26
 
40
     #
27
     #
41
     if test "$want_debug" = "yes"; then
28
     if test "$want_debug" = "yes"; then
42
@@ -16139,6 +16143,9 @@
29
@@ -16898,6 +16902,9 @@
43
     #
30
     #
44
     if test "$honor_optimize_option" = "yes"; then
31
     if test "$honor_optimize_option" = "yes"; then
45
 
32
 
Lines 49-55 Link Here
49
     ac_var_stripped=""
36
     ac_var_stripped=""
50
   for word1 in $tmp_CFLAGS; do
37
   for word1 in $tmp_CFLAGS; do
51
     ac_var_strip_word="no"
38
     ac_var_strip_word="no"
52
@@ -16169,6 +16176,7 @@
39
@@ -16928,6 +16935,7 @@
53
   done
40
   done
54
     tmp_CPPFLAGS="$ac_var_stripped"
41
     tmp_CPPFLAGS="$ac_var_stripped"
55
   squeeze tmp_CPPFLAGS
42
   squeeze tmp_CPPFLAGS
Lines 57-63 Link Here
57
 
44
 
58
       if test "$want_optimize" = "yes"; then
45
       if test "$want_optimize" = "yes"; then
59
         { $as_echo "$as_me:${as_lineno-$LINENO}: checking if compiler accepts optimizer enabling options" >&5
46
         { $as_echo "$as_me:${as_lineno-$LINENO}: checking if compiler accepts optimizer enabling options" >&5
60
@@ -20137,7 +20145,8 @@
47
@@ -21379,7 +21387,8 @@
61
         PKGTEST="no"
48
         PKGTEST="no"
62
     PREFIX_OPENSSL=$OPT_SSL
49
     PREFIX_OPENSSL=$OPT_SSL
63
 
50
 
Lines 67-73 Link Here
67
     { $as_echo "$as_me:${as_lineno-$LINENO}: PKG_CONFIG_LIBDIR will be set to \"$OPENSSL_PCDIR\"" >&5
54
     { $as_echo "$as_me:${as_lineno-$LINENO}: PKG_CONFIG_LIBDIR will be set to \"$OPENSSL_PCDIR\"" >&5
68
 $as_echo "$as_me: PKG_CONFIG_LIBDIR will be set to \"$OPENSSL_PCDIR\"" >&6;}
55
 $as_echo "$as_me: PKG_CONFIG_LIBDIR will be set to \"$OPENSSL_PCDIR\"" >&6;}
69
     if test -f "$OPENSSL_PCDIR/openssl.pc"; then
56
     if test -f "$OPENSSL_PCDIR/openssl.pc"; then
70
@@ -23231,29 +23240,30 @@
57
@@ -24725,29 +24734,30 @@
71
     ;;
58
     ;;
72
   off)
59
   off)
73
         LIB_RTMP="-lrtmp"
60
         LIB_RTMP="-lrtmp"
Lines 92-104 Link Here
92
-
79
-
93
   LDFLAGS="$LDFLAGS $LD_RTMP"
80
   LDFLAGS="$LDFLAGS $LD_RTMP"
94
   CPPFLAGS="$CPPFLAGS $CPP_RTMP"
81
   CPPFLAGS="$CPPFLAGS $CPP_RTMP"
95
   LIBS="$LIBS $LIB_RTMP"
82
   LIBS="$LIB_RTMP $LIBS"
96
 
83
 
97
-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RTMP_Init in -lrtmp" >&5
84
-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RTMP_Init in -lrtmp" >&5
98
-$as_echo_n "checking for RTMP_Init in -lrtmp... " >&6; }
85
-$as_echo_n "checking for RTMP_Init in -lrtmp... " >&6; }
99
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RTMP_Init in $LIB_RTMP" >&5
86
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RTMP_Init in $LIB_RTMP" >&5
100
+$as_echo_n "checking for RTMP_Init in $LIB_RTMP... " >&6; }
87
+$as_echo_n "checking for RTMP_Init in $LIB_RTMP... " >&6; }
101
 if test "${ac_cv_lib_rtmp_RTMP_Init+set}" = set; then :
88
 if ${ac_cv_lib_rtmp_RTMP_Init+:} false; then :
102
   $as_echo_n "(cached) " >&6
89
   $as_echo_n "(cached) " >&6
103
 else
90
 else
104
   ac_check_lib_save_LIBS=$LIBS
91
   ac_check_lib_save_LIBS=$LIBS
(-)ftp/curl/files/patch-lib::url.c (-1 / +1 lines)
Lines 5-11 Link Here
5
5
6
--- lib/url.c.orig	2012-01-23 23:31:30.000000000 +0800
6
--- lib/url.c.orig	2012-01-23 23:31:30.000000000 +0800
7
+++ lib/url.c	2012-02-26 17:52:21.937920303 +0800
7
+++ lib/url.c	2012-02-26 17:52:21.937920303 +0800
8
@@ -797,6 +797,10 @@
8
@@ -610,6 +610,10 @@
9
     data->progress.flags |= PGRS_HIDE;
9
     data->progress.flags |= PGRS_HIDE;
10
     data->state.current_speed = -1; /* init to negative == impossible */
10
     data->state.current_speed = -1; /* init to negative == impossible */
11
 
11
 
(-)ftp/curl/files/patch-src-tool_operate.c (-2 / +2 lines)
Lines 1-6 Link Here
1
--- src/tool_operate.c.orig	2012-01-23 23:31:30.000000000 +0800
1
--- src/tool_operate.c.orig	2012-01-23 23:31:30.000000000 +0800
2
+++ src/tool_operate.c	2012-02-26 17:40:00.117907281 +0800
2
+++ src/tool_operate.c	2012-02-26 17:40:00.117907281 +0800
3
@@ -580,22 +580,10 @@
3
@@ -649,22 +649,10 @@
4
             DEBUGASSERT(!outs.filename);
4
             DEBUGASSERT(!outs.filename);
5
           }
5
           }
6
 
6
 
Lines 26-32 Link Here
26
             if(!file) {
26
             if(!file) {
27
               helpf(config->errors, "Can't open '%s'!\n", outfile);
27
               helpf(config->errors, "Can't open '%s'!\n", outfile);
28
               res = CURLE_WRITE_ERROR;
28
               res = CURLE_WRITE_ERROR;
29
@@ -603,6 +591,19 @@
29
@@ -672,6 +660,19 @@
30
             }
30
             }
31
             outs.fopened = TRUE;
31
             outs.fopened = TRUE;
32
             outs.stream = file;
32
             outs.stream = file;
(-)ftp/curl/pkg-plist (-200 / +1 lines)
Lines 10-217 Link Here
10
include/curl/stdcheaders.h
10
include/curl/stdcheaders.h
11
include/curl/typecheck-gcc.h
11
include/curl/typecheck-gcc.h
12
share/aclocal/libcurl.m4
12
share/aclocal/libcurl.m4
13
@dirrm include/curl
14
lib/libcurl.a
13
lib/libcurl.a
15
lib/libcurl.la
14
lib/libcurl.la
16
lib/libcurl.so
15
lib/libcurl.so
17
lib/libcurl.so.%%SHLIB_VER%%
16
lib/libcurl.so.%%SHLIB_VER%%
18
libdata/pkgconfig/libcurl.pc
17
libdata/pkgconfig/libcurl.pc
19
%%PORTDOCS%%%%DOCSDIR%%/BINDINGS
18
@dirrm include/curl
20
%%PORTDOCS%%%%DOCSDIR%%/BUGS
21
%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTE
22
%%PORTDOCS%%%%DOCSDIR%%/DISTRO-DILEMMA
23
%%PORTDOCS%%%%DOCSDIR%%/FAQ
24
%%PORTDOCS%%%%DOCSDIR%%/FEATURES
25
%%PORTDOCS%%%%DOCSDIR%%/HISTORY
26
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
27
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.devcpp
28
%%PORTDOCS%%%%DOCSDIR%%/INTERNALS
29
%%PORTDOCS%%%%DOCSDIR%%/KNOWN_BUGS
30
%%PORTDOCS%%%%DOCSDIR%%/LICENSE-MIXING
31
%%PORTDOCS%%%%DOCSDIR%%/MANUAL
32
%%PORTDOCS%%%%DOCSDIR%%/README.netware
33
%%PORTDOCS%%%%DOCSDIR%%/README.win32
34
%%PORTDOCS%%%%DOCSDIR%%/RESOURCES
35
%%PORTDOCS%%%%DOCSDIR%%/SSLCERTS
36
%%PORTDOCS%%%%DOCSDIR%%/THANKS
37
%%PORTDOCS%%%%DOCSDIR%%/TODO
38
%%PORTDOCS%%%%DOCSDIR%%/TheArtOfHttpScripting
39
%%PORTDOCS%%%%DOCSDIR%%/VERSIONS
40
%%PORTDOCS%%%%DOCSDIR%%/curl-config.html
41
%%PORTDOCS%%%%DOCSDIR%%/curl-config.pdf
42
%%PORTDOCS%%%%DOCSDIR%%/curl.html
43
%%PORTDOCS%%%%DOCSDIR%%/curl.pdf
44
%%PORTDOCS%%%%DOCSDIR%%/index.html
45
%%PORTDOCS%%%%DOCSDIR%%/libcurl/ABI
46
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_cleanup.html
47
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_cleanup.pdf
48
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_duphandle.html
49
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_duphandle.pdf
50
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_escape.html
51
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_escape.pdf
52
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_getinfo.html
53
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_getinfo.pdf
54
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_init.html
55
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_init.pdf
56
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_pause.html
57
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_pause.pdf
58
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_perform.html
59
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_perform.pdf
60
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_recv.html
61
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_recv.pdf
62
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_reset.html
63
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_reset.pdf
64
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_send.html
65
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_send.pdf
66
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_setopt.html
67
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_setopt.pdf
68
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_strerror.html
69
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_strerror.pdf
70
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_unescape.html
71
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_easy_unescape.pdf
72
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_escape.html
73
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_escape.pdf
74
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_formadd.html
75
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_formadd.pdf
76
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_formfree.html
77
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_formfree.pdf
78
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_formget.html
79
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_formget.pdf
80
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_free.html
81
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_free.pdf
82
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_getdate.html
83
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_getdate.pdf
84
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_getenv.html
85
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_getenv.pdf
86
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_global_cleanup.html
87
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_global_cleanup.pdf
88
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_global_init.html
89
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_global_init.pdf
90
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_global_init_mem.html
91
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_global_init_mem.pdf
92
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_mprintf.html
93
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_mprintf.pdf
94
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_add_handle.html
95
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_add_handle.pdf
96
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_assign.html
97
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_assign.pdf
98
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_cleanup.html
99
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_cleanup.pdf
100
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_fdset.html
101
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_fdset.pdf
102
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_info_read.html
103
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_info_read.pdf
104
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_init.html
105
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_init.pdf
106
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_perform.html
107
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_perform.pdf
108
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_remove_handle.html
109
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_remove_handle.pdf
110
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_setopt.html
111
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_setopt.pdf
112
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_socket.html
113
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_socket.pdf
114
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_socket_action.html
115
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_socket_action.pdf
116
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_strerror.html
117
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_strerror.pdf
118
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_timeout.html
119
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_multi_timeout.pdf
120
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_share_cleanup.html
121
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_share_cleanup.pdf
122
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_share_init.html
123
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_share_init.pdf
124
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_share_setopt.html
125
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_share_setopt.pdf
126
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_share_strerror.html
127
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_share_strerror.pdf
128
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_slist_append.html
129
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_slist_append.pdf
130
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_slist_free_all.html
131
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_slist_free_all.pdf
132
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_strequal.html
133
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_strequal.pdf
134
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_unescape.html
135
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_unescape.pdf
136
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_version.html
137
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_version.pdf
138
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_version_info.html
139
%%PORTDOCS%%%%DOCSDIR%%/libcurl/curl_version_info.pdf
140
%%PORTDOCS%%%%DOCSDIR%%/libcurl/index.html
141
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-easy.html
142
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-easy.pdf
143
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-errors.html
144
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-errors.pdf
145
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-multi.html
146
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-multi.pdf
147
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-share.html
148
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-share.pdf
149
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-tutorial.html
150
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl-tutorial.pdf
151
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl.html
152
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl.m4
153
%%PORTDOCS%%%%DOCSDIR%%/libcurl/libcurl.pdf
154
%%PORTDOCS%%@dirrm %%DOCSDIR%%/libcurl
155
%%PORTDOCS%%@dirrm %%DOCSDIR%%
156
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/10-at-a-time.c
157
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.example
158
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README
159
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/anyauthput.c
160
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cacertinmem.c
161
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certinfo.c
162
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkspeed.c
163
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cookie_interface.c
164
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curlgtk.c
165
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/curlx.c
166
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/debug.c
167
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evhiperfifo.c
168
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/externalsocket.c
169
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fileupload.c
170
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fopen.c
171
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftp-wildcard.c
172
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftpget.c
173
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftpgetinfo.c
174
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftpgetresp.c
175
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftpupload.c
176
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftpuploadresume.c
177
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/getinfo.c
178
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/getinmemory.c
179
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ghiper.c
180
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hiperfifo.c
181
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/htmltidy.c
182
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/htmltitle.cc
183
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/http-post.c
184
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/httpcustomheader.c
185
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/httpput.c
186
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/https.c
187
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imap.c
188
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/makefile.dj
189
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/multi-app.c
190
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/multi-debugcallback.c
191
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/multi-double.c
192
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/multi-post.c
193
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/multi-single.c
194
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/multithread.c
195
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/opensslthreadlock.c
196
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/persistant.c
197
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pop3s.c
198
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pop3slist.c
199
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/post-callback.c
200
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/postit2.c
201
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/progressfunc.c
202
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resolve.c
203
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rtsp.c
204
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sampleconv.c
205
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sepheaders.c
206
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sendrecv.c
207
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple.c
208
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simplepost.c
209
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simplesmtp.c
210
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simplessl.c
211
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/smooth-gtk-thread.c
212
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/smtp-multi.c
213
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/smtp-tls.c
214
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/synctime.c
215
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/threaded-ssl.c
216
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/url2file.c
217
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
(-)Mk/bsd.ldap.mk (-1 / +1 lines)
Lines 64-70 Link Here
64
.endif
64
.endif
65
.endif
65
.endif
66
66
67
CFLAGS+=	-DLDAP_DEPRECATED
67
CPPFLAGS+=	-DLDAP_DEPRECATED
68
68
69
_OPENLDAP_CLIENT_PKG!=	${PKG_INFO} -Ex openldap.\*-client 2>/dev/null || ${TRUE}
69
_OPENLDAP_CLIENT_PKG!=	${PKG_INFO} -Ex openldap.\*-client 2>/dev/null || ${TRUE}
70
_OPENLDAP_FLAVOUR=	${_OPENLDAP_CLIENT_PKG:C/openldap//:C/-client-.*//}
70
_OPENLDAP_FLAVOUR=	${_OPENLDAP_CLIENT_PKG:C/openldap//:C/-client-.*//}

Return to bug 177369