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

Collapse All | Expand All

(-)Makefile (-45 / +93 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	curl
4
PORTNAME=	curl
5
PORTVERSION=	7.24.0
5
PORTVERSION=	7.30.0
6
PORTREVISION=	2
7
CATEGORIES=	ftp ipv6 www
6
CATEGORIES=	ftp ipv6 www
8
MASTER_SITES=	http://curl.haxx.se/download/ \
7
MASTER_SITES=	http://curl.haxx.se/download/ \
9
		LOCAL/sunpoet
8
		LOCAL/sunpoet
Lines 14-32 Link Here
14
13
15
LICENSE=	MIT
14
LICENSE=	MIT
16
15
17
OPTIONS_DEFINE=	CARES CURL_DEBUG IPV6 KERBEROS4 LDAP LDAPS LIBIDN LIBSSH2 \
16
OPTIONS_DEFINE=	CURL_DEBUG GSSAPI IPV6 KERBEROS4 LDAP LDAPS IDN LIBSSH2 \
18
		NTLM CA_BUNDLE PROXY RTMP TRACKMEMORY DOCS EXAMPLES
17
		METALINK NTLM CA_BUNDLE PROXY RTMP TLS_SRP TRACKMEMORY \
19
OPTIONS_RADIO=	SSL
18
		DOCS EXAMPLES
20
OPTIONS_RADIO_SSL=	OPENSSL GNUTLS
19
OPTIONS_RADIO=		RESOLV SSL
21
OPTIONS_DEFAULT=	CA_BUNDLE PROXY OPENSSL
20
OPTIONS_RADIO_RESOLV=	CARES THREADED_RESOLVER
21
OPTIONS_RADIO_SSL=	OPENSSL GNUTLS CYASSL NSS POLARSSL
22
OPTIONS_DEFAULT=	CA_BUNDLE IPV6 PROXY TLS_SRP OPENSSL
22
CURL_DEBUG_DESC=	curl diagnostic output
23
CURL_DEBUG_DESC=	curl diagnostic output
23
LIBIDN_DESC=		Internationalized Domain Names via libidn
24
LIBSSH2_DESC=		SCP/SFTP support via libssh2
24
LIBSSH2_DESC=		SCP/SFTP support via libssh2
25
NTLM_DESC=		NTLM authentication
25
METALINK_DESC=		Metalink(RFC6249) download support
26
CA_BUNDLE_DESC=		Install CA bundle for OpenSSL
26
CA_BUNDLE_DESC=		Install CA bundle for OpenSSL
27
TLS_SRP_DESC=		TLS-SRP(Secure Remote Password) support
27
TRACKMEMORY_DESC=	curl memory diagnostic output
28
TRACKMEMORY_DESC=	curl memory diagnostic output
29
RESOLV_DESC=		DNS resolution options
30
THREADED_RESOLVER_DESC=	Threaded DNS resolution
31
CYASSL_DESC=		SSL/TLS support via CyaSSL
32
NSS_DESC=		SSL/TLS support via NSS
33
POLARSSL_DESC=		SSL/TLS support via PolarSSL
28
34
29
CONFIGURE_ARGS+=--disable-threaded-resolver --disable-werror \
35
CONFIGURE_ARGS+=--disable-threaded-resolver --disable-werror --without-axtls \
30
		--enable-imap --enable-pop3 --enable-rtsp --enable-smtp
36
		--enable-imap --enable-pop3 --enable-rtsp --enable-smtp
31
CONFIGURE_ENV=	LOCALBASE="${LOCALBASE}"
37
CONFIGURE_ENV=	LOCALBASE="${LOCALBASE}"
32
GNU_CONFIGURE=	yes
38
GNU_CONFIGURE=	yes
Lines 44-50 Link Here
44
		MANUAL README.netware README.win32 RESOURCES SSLCERTS THANKS \
50
		MANUAL README.netware README.win32 RESOURCES SSLCERTS THANKS \
45
		TODO TheArtOfHttpScripting VERSIONS curl-config.html \
51
		TODO TheArtOfHttpScripting VERSIONS curl-config.html \
46
		curl-config.pdf curl.html curl.pdf index.html
52
		curl-config.pdf curl.html curl.pdf index.html
47
MAN1=		curl.1 curl-config.1
53
MAN1=		curl.1 curl-config.1 mk-ca-bundle.1
48
MAN3=		curl_easy_cleanup.3 curl_easy_duphandle.3 curl_easy_escape.3 \
54
MAN3=		curl_easy_cleanup.3 curl_easy_duphandle.3 curl_easy_escape.3 \
49
		curl_easy_getinfo.3 curl_easy_init.3 curl_easy_pause.3 \
55
		curl_easy_getinfo.3 curl_easy_init.3 curl_easy_pause.3 \
50
		curl_easy_perform.3 curl_easy_recv.3 curl_easy_reset.3 \
56
		curl_easy_perform.3 curl_easy_recv.3 curl_easy_reset.3 \
Lines 57-63 Link Here
57
		curl_multi_info_read.3 curl_multi_init.3 curl_multi_perform.3 \
63
		curl_multi_info_read.3 curl_multi_init.3 curl_multi_perform.3 \
58
		curl_multi_remove_handle.3 curl_multi_setopt.3 \
64
		curl_multi_remove_handle.3 curl_multi_setopt.3 \
59
		curl_multi_socket.3 curl_multi_socket_action.3 \
65
		curl_multi_socket.3 curl_multi_socket_action.3 \
60
	       	curl_multi_strerror.3 curl_multi_timeout.3 \
66
		curl_multi_strerror.3 curl_multi_timeout.3 curl_multi_wait.3 \
61
		curl_share_cleanup.3 curl_share_init.3 curl_share_setopt.3 \
67
		curl_share_cleanup.3 curl_share_init.3 curl_share_setopt.3 \
62
		curl_share_strerror.3 curl_slist_append.3 \
68
		curl_share_strerror.3 curl_slist_append.3 \
63
		curl_slist_free_all.3 curl_strequal.3 curl_unescape.3 \
69
		curl_slist_free_all.3 curl_strequal.3 curl_unescape.3 \
Lines 65-115 Link Here
65
		libcurl-errors.3 libcurl-multi.3 libcurl-share.3 \
71
		libcurl-errors.3 libcurl-multi.3 libcurl-share.3 \
66
		libcurl-tutorial.3
72
		libcurl-tutorial.3
67
PLIST_SUB=	SHLIB_VER="${SHLIB_VER}"
73
PLIST_SUB=	SHLIB_VER="${SHLIB_VER}"
74
PORTDOCS=	*
75
PORTEXAMPLES=	*
68
76
69
SHLIB_VER=	6
77
SHLIB_VER=	7
70
.endif
78
.endif
71
79
72
.include <bsd.port.options.mk>
80
.include <bsd.port.options.mk>
73
81
74
.if ${PORT_OPTIONS:MLIBSSH2} && ! ${PORT_OPTIONS:MOPENSSL}
82
.for S in ${OPTIONS_RADIO_SSL}
75
IGNORE=		only supports LIBSSH2 with OpenSSL
83
.if ${PORT_OPTIONS:M${S}}
84
PORT_OPTIONS+=	SSL
76
.endif
85
.endif
86
.endfor
77
87
78
.if ${PORT_OPTIONS:MNTLM} && ! ${PORT_OPTIONS:MOPENSSL}
88
.if ${PORT_OPTIONS:MNTLM} && ! ${PORT_OPTIONS:MSSL}
79
IGNORE=		only supports NTLM with OpenSSL
89
IGNORE=		only supports NTLM with SSL
80
.endif
90
.endif
81
91
82
.if ${PORT_OPTIONS:MLDAPS}
92
.if ${PORT_OPTIONS:MLDAPS}
83
.if ! ${PORT_OPTIONS:MLDAP}
93
.if ! ${PORT_OPTIONS:MLDAP}
84
IGNORE=		only supports LDAPS with LDAP
94
IGNORE=		only supports LDAPS with LDAP
85
.else
95
.elif ! ${PORT_OPTIONS:MSSL}
86
.if ! ${PORT_OPTIONS:MOPENSSL} && ! ${PORT_OPTIONS:MGNUTLS}
96
IGNORE=		only supports LDAPS with SSL
87
IGNORE=		only supports LDAPS with SSL (OpenSSL or GNUTLS)
88
.endif
97
.endif
89
.endif
98
.endif
99
100
.if ${PORT_OPTIONS:MTLS_SRP} && \
101
	empty(PORT_OPTIONS:MOPENSSL) && empty(PORT_OPTIONS:MGNUTLS)
102
IGNORE=		only supports TLS-SRP with either OpenSSL or GnuTLS
90
.endif
103
.endif
91
104
92
.if ${PORT_OPTIONS:MOPENSSL}
105
.if ${PORT_OPTIONS:MOPENSSL}
93
USE_OPENSSL=	yes
106
USE_OPENSSL=	yes
94
CONFIGURE_ARGS+=	--with-ssl=${OPENSSLBASE}
107
CONFIGURE_ARGS+=	--with-ssl=${OPENSSLBASE}
108
.else
109
CONFIGURE_ARGS+=	--without-ssl
110
.endif
111
95
.if ${PORT_OPTIONS:MCA_BUNDLE}
112
.if ${PORT_OPTIONS:MCA_BUNDLE}
96
RUN_DEPENDS+=	${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss
113
RUN_DEPENDS+=	${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss
97
CONFIGURE_ARGS+=	--with-ca-bundle=${LOCALBASE}/share/certs/ca-root-nss.crt
114
CONFIGURE_ARGS+=	--with-ca-bundle=${LOCALBASE}/share/certs/ca-root-nss.crt
98
.else
115
.else
99
CONFIGURE_ARGS+=	--without-ca-bundle
116
CONFIGURE_ARGS+=	--without-ca-bundle
100
.endif
117
.endif
101
.else
102
CONFIGURE_ARGS+=	--without-ssl
103
.if ${PORT_OPTIONS:MCA_BUNDLE}
104
IGNORE=			only supports CA bundle with OpenSSL
105
.endif
106
.endif
107
118
108
.if ${PORT_OPTIONS:MCARES}
119
.if ${PORT_OPTIONS:MCARES}
109
LIB_DEPENDS+=	cares.2:${PORTSDIR}/dns/c-ares
120
LIB_DEPENDS+=	cares:${PORTSDIR}/dns/c-ares
110
CONFIGURE_ARGS+=	--enable-ares=${LOCALBASE}
121
CONFIGURE_ARGS+=	--enable-ares=${LOCALBASE} --disable-threaded-resolver
122
.elif ${PORT_OPTIONS:MTHREADED_RESOLVER}
123
CONFIGURE_ARGS+=	--enable-threaded-resolver --disable-ares
111
.else
124
.else
112
CONFIGURE_ARGS+=	--disable-ares
125
CONFIGURE_ARGS+=	--disable-threaded-resolver --disable-ares
113
.endif
126
.endif
114
127
115
.if ${PORT_OPTIONS:MGNUTLS}
128
.if ${PORT_OPTIONS:MGNUTLS}
Lines 119-130 Link Here
119
CONFIGURE_ARGS+=--without-gnutls
132
CONFIGURE_ARGS+=--without-gnutls
120
.endif
133
.endif
121
134
122
.if ${PORT_OPTIONS:MOPENSSL} || ${PORT_OPTIONS:MGNUTLS}
123
PLIST_SUB+=	SSL=""
124
.else
125
PLIST_SUB+=	SSL="@comment "
126
.endif
127
128
.if ${PORT_OPTIONS:MIPV6}
135
.if ${PORT_OPTIONS:MIPV6}
129
CONFIGURE_ARGS+=	--enable-ipv6
136
CONFIGURE_ARGS+=	--enable-ipv6
130
.else
137
.else
Lines 140-146 Link Here
140
.if ${PORT_OPTIONS:MLDAP}
147
.if ${PORT_OPTIONS:MLDAP}
141
CONFIGURE_ARGS+=	--enable-ldap
148
CONFIGURE_ARGS+=	--enable-ldap
142
USE_OPENLDAP=	yes
149
USE_OPENLDAP=	yes
143
CFLAGS+=	-I${LOCALBASE}/include
150
CPPFLAGS+=	-I${LOCALBASE}/include
144
LDFLAGS+=	-L${LOCALBASE}/lib
151
LDFLAGS+=	-L${LOCALBASE}/lib
145
.if ${PORT_OPTIONS:MLDAPS}
152
.if ${PORT_OPTIONS:MLDAPS}
146
CONFIGURE_ARGS+=	--enable-ldaps
153
CONFIGURE_ARGS+=	--enable-ldaps
Lines 151-165 Link Here
151
CONFIGURE_ARGS+=	--disable-ldap --disable-ldaps
158
CONFIGURE_ARGS+=	--disable-ldap --disable-ldaps
152
.endif
159
.endif
153
160
154
.if ${PORT_OPTIONS:MLIBIDN}
161
.if ${PORT_OPTIONS:MIDN}
155
LIB_DEPENDS+=	idn.17:${PORTSDIR}/dns/libidn
162
LIB_DEPENDS+=	idn:${PORTSDIR}/dns/libidn
156
CONFIGURE_ARGS+=	--with-libidn=${LOCALBASE}
163
CONFIGURE_ARGS+=	--with-libidn=${LOCALBASE}
157
.else
164
.else
158
CONFIGURE_ARGS+=	--without-libidn
165
CONFIGURE_ARGS+=	--without-libidn
159
.endif
166
.endif
160
167
161
.if ${PORT_OPTIONS:MLIBSSH2}
168
.if ${PORT_OPTIONS:MLIBSSH2}
162
LIB_DEPENDS+=	ssh2.1:${PORTSDIR}/security/libssh2
169
LIB_DEPENDS+=	ssh2:${PORTSDIR}/security/libssh2
163
CONFIGURE_ARGS+=	--with-libssh2=${LOCALBASE}
170
CONFIGURE_ARGS+=	--with-libssh2=${LOCALBASE}
164
.else
171
.else
165
CONFIGURE_ARGS+=	--without-libssh2
172
CONFIGURE_ARGS+=	--without-libssh2
Lines 170-181 Link Here
170
.endif
177
.endif
171
178
172
.if ${PORT_OPTIONS:MRTMP}
179
.if ${PORT_OPTIONS:MRTMP}
173
LIB_DEPENDS+=	rtmp.0:${PORTSDIR}/multimedia/rtmpdump
180
LIB_DEPENDS+=	rtmp:${PORTSDIR}/multimedia/rtmpdump
174
CONFIGURE_ARGS+=	--with-librtmp=${LOCALBASE}
181
CONFIGURE_ARGS+=	--with-librtmp=${LOCALBASE}
175
.else
182
.else
176
CONFIGURE_ARGS+=	--without-librtmp
183
CONFIGURE_ARGS+=	--without-librtmp
177
.endif
184
.endif
178
185
186
.if ${PORT_OPTIONS:MCYASSL}
187
LIB_DEPENDS+=	cyassl:${PORTSDIR}/security/yassl
188
CONFIGURE_ARGS+=--with-cyassl=${LOCALBASE}
189
.else
190
CONFIGURE_ARGS+=--without-cyassl
191
.endif
192
193
.if ${PORT_OPTIONS:MGSSAPI}
194
CONFIGURE_ARGS+=	--with-gssapi-includes=/usr/include \
195
			--with-gssapi-libs=/usr/lib
196
.else
197
CONFIGURE_ARGS+=	--without-gssapi
198
.endif
199
200
.if ${PORT_OPTIONS:MMETALINK}
201
BROKEN=			libmetalink in ports tree is way too old
202
CONFIGURE_ARGS+=	--with-libmetalink
203
LIB_DEPENDS+=		metalink.3:${PORTSDIR}/misc/libmetalink
204
.else
205
CONFIGURE_ARGS+=	--without-libmetalink
206
.endif
207
208
.if ${PORT_OPTIONS:MNSS}
209
LIB_DEPENDS+=	nss3:${PORTSDIR}/security/nss
210
CONFIGURE_ARGS+=--with-nss
211
.else
212
CONFIGURE_ARGS+=--without-nss
213
.endif
214
215
.if ${PORT_OPTIONS:MPOLARSSL}
216
LIB_DEPENDS+=	polarssl:${PORTSDIR}/security/polarssl
217
CONFIGURE_ARGS+=--with-polarssl=${LOCALBASE}
218
.else
219
CONFIGURE_ARGS+=--without-polarssl
220
.endif
221
222
.if ${PORT_OPTIONS:MTLS_SRP}
223
CONFIGURE_ARGS+=	 --enable-tls-srp
224
.else
225
CONFIGURE_ARGS+=	 --disable-tls-srp
226
.endif
227
179
.if ${PORT_OPTIONS:MTRACKMEMORY}
228
.if ${PORT_OPTIONS:MTRACKMEMORY}
180
CONFIGURE_ARGS+=	--enable-curldebug
229
CONFIGURE_ARGS+=	--enable-curldebug
181
.else
230
.else
Lines 196-206 Link Here
196
245
197
post-patch:
246
post-patch:
198
	@${REINPLACE_CMD} -e '/^SUBDIRS = / s|$$| docs|; /^DIST_SUBDIRS = / s| docs||; /cd docs &&/d' ${WRKSRC}/Makefile.in
247
	@${REINPLACE_CMD} -e '/^SUBDIRS = / s|$$| docs|; /^DIST_SUBDIRS = / s| docs||; /cd docs &&/d' ${WRKSRC}/Makefile.in
199
	@${REINPLACE_CMD} -e '/require "valgrind.pm";/d' ${WRKSRC}/tests/runtests.pl
200
248
201
post-install:
249
post-install:
202
.if !defined(BUILDING_HIPHOP)
250
.if !defined(BUILDING_HIPHOP)
203
	${INSTALL_DATA} ${WRKSRC}/docs/libcurl/libcurl.m4 ${PREFIX}/share/aclocal
251
	${INSTALL_DATA} ${WRKSRC}/docs/libcurl/libcurl.m4 ${PREFIX}/share/aclocal/
204
.if ${PORT_OPTIONS:MDOCS}
252
.if ${PORT_OPTIONS:MDOCS}
205
	${MKDIR} ${DOCSDIR}/ ${DOCSDIR}/libcurl/
253
	${MKDIR} ${DOCSDIR}/ ${DOCSDIR}/libcurl/
206
	cd ${WRKSRC}/docs/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/
254
	cd ${WRKSRC}/docs/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/
Lines 208-220 Link Here
208
.endif
256
.endif
209
.if ${PORT_OPTIONS:MEXAMPLES}
257
.if ${PORT_OPTIONS:MEXAMPLES}
210
	${MKDIR} ${EXAMPLESDIR}/
258
	${MKDIR} ${EXAMPLESDIR}/
211
	cd ${WRKSRC}/docs/examples/ && ${INSTALL_DATA} README Makefile.example makefile* *.c *.cc ${EXAMPLESDIR}/
259
	cd ${WRKSRC}/docs/examples/ && ${INSTALL_DATA} README Makefile.example makefile* *.c *.cpp ${EXAMPLESDIR}/
212
.endif
260
.endif
213
.endif
261
.endif
214
262
215
# Setting LC_ALL=C is a kludge; maybe curl/libcurl shouldn't actually use
263
# Setting LC_ALL=C is a kludge; maybe curl/libcurl shouldn't actually use
216
# the user's locale when dates are sent to the server.
264
# the user's locale when dates are sent to the server.
217
test:	build
265
regression-test: build
218
.if ! ${PORT_OPTIONS:MPROXY}
266
.if ! ${PORT_OPTIONS:MPROXY}
219
	@${ECHO_MSG} "******************************************"
267
	@${ECHO_MSG} "******************************************"
220
	@${ECHO_MSG} "* You have disabled curl proxy support.  *"
268
	@${ECHO_MSG} "* You have disabled curl proxy support.  *"
Lines 222-227 Link Here
222
	@${ECHO_MSG} "* This is being addressed.               *"
270
	@${ECHO_MSG} "* This is being addressed.               *"
223
	@${ECHO_MSG} "******************************************"
271
	@${ECHO_MSG} "******************************************"
224
.endif
272
.endif
225
	@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} LC_ALL=C ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test
273
	cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} LC_ALL=C ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test
226
274
227
.include <bsd.port.mk>
275
.include <bsd.port.mk>
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (curl-7.24.0.tar.lzma) = cd683ee8be137ed8a8e97d42fd3cc94f88f63d478b83d4abe38e31b6281e2268
1
SHA256 (curl-7.30.0.tar.lzma) = 2cc427333447208c34d5afab29e4b1617a4f219e5787b74ec7ef6e89f6edac2a
2
SIZE (curl-7.24.0.tar.lzma) = 1973811
2
SIZE (curl-7.30.0.tar.lzma) = 2145655
(-)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
(-)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
 
(-)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;
(-)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%%

Return to bug 177369