Skip to content
Snippets Groups Projects
Commit 4e06a90e authored by Ron's avatar Ron
Browse files

Allow the examples to build with --disable-http

parent 428b6bc5
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,11 @@ int main(int _argc,const char **_argv){
}
else{
/*Try to treat the argument as a URL.*/
#if defined(OP_ENABLE_HTTP)
of=op_open_url(_argv[1],&ret,NULL);
#else
of=NULL;
#endif
#if 0
if(of==NULL){
OpusFileCallbacks cb={NULL,NULL,NULL,NULL};
......
......@@ -275,8 +275,12 @@ int main(int _argc,const char **_argv){
if(strcmp(_argv[1],"-")==0)fp=op_fdopen(&cb,fileno(stdin),"rb");
else{
/*Try to treat the argument as a URL.*/
#if defined(OP_ENABLE_HTTP)
fp=op_url_stream_create(&cb,_argv[1],
OP_SSL_SKIP_CERTIFICATE_CHECK(1),NULL);
#else
fp=NULL;
#endif
/*Fall back assuming it's a regular file name.*/
if(fp==NULL)fp=op_fopen(&cb,_argv[1],"rb");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment