Are we are only able to get libcurl instead of the integrated libcurl + openssl + zlib because libcurl4-openssl-dev was recently repackaged?

2016-04-25 Thread Frank Chang
Dan Fandrich and Daniel Stenberg,Are we are only able to get libcurl instead of the integrated libcurl + openssl + zlib because libcurl4-openssl-dev was recently repackaged ? So, could we fall back to building libcurl + openssl + zlib individually and merging the libcurl.so with libz.a and

ross compile libcurl 7.37.1 with-ssl-and-zlib-support on ubuntu linux 16.04 for the arm-linux-gnueabi-gcc toolchain

2016-04-23 Thread Frank Chang
Mr. Daniel Stenberg, I ran the following ARM GCC toolchain linker statement on Ubuntu Linux 16.04 today in order to cross compile libcurl 7.37.1 with-ssl-and-zlib-support on ubuntu linux 16.04 for arm-linux-gnueabi-gcc toolchain. ~/curl-7.37.1$ arm-linux-gnueabi-gcc -O2

Re: How to use the libcurl download web page?

2016-03-19 Thread Frank Chang
Daniel Stenberg, Here are the steps for installing 32 bit Libcurl with OpenSSL support on Ubuntu Linux 15.10. venkat@venkat-ThinkStation-S10:~$ sudo apt-get purge libcurl4-openssl-dev* [sudo] password for venkat: Reading package lists... Done Building dependency tree Reading state

Re: How to setup and maintain parallel 64 bit and 32 bit libcurl4-openssl development packages which both stay intact simultaneous‏ How to setup and maintain parallel 64 bit and 32 bit libcurl4-openss

2016-03-19 Thread Frank Chang
Daniel Stenberg, In order to run a 32 bit build, I had to add, #define IS_32BIT 1 , in curlbuild.h and change else to #else in curlbuild.h Please tell if this is okay or is there a better way? Thank you.

How to use the libcurl download web page?

2016-03-19 Thread Frank Chang
I would like to know if the 190,408 bytes large curl shared library inside of curl_7.43.0-1ubuntu2.1_amd64.deb which is the Ubuntu libcurl SSL package we downloaded from the https://curl.haxx.se/download.html website is the correct binary for building 64 bit Ubuntu Linux 15.10 file transfer

How to setup and maintain parallel 64 bit and 32 bit libcurl4-openssl development packages which both stay intact simultaneous

2016-03-19 Thread Frank Chang
Daniel Stenberg and Dan Fandrich, You both helped me immensely in 2013 when I was with Melissa Data. I followed the following procedure yesterday. 1. Purge all libcurl files from my Ubuntu Linux 15.10 Lenovo desktop computer. 2. Get libcurl 7.43 source using: sudo apt-get source

Re: How to use the libcurl download web page

2016-03-19 Thread Frank Chang
Daniel Stenberg, I followed your suggestion to fetch the 32 bit libcurl package with OpenSSL support which runs on a 64 bit Ubuntu Linux 15.10 operating system and I got the installation error: dpkg-deb: error: subprocess paste was killed by signal (Broken pipe). Please advise how to

Re: How to use the libcurl download web page?

2016-03-18 Thread Frank Chang
Daniel Stenberg, I tried your suggestion to : sudo apt-get install libcurl-openssl-dev so that I could obtain a 32-bit shared object for openssl combined with libcurl and I got Unable to locate package libcurl-openssl-dev richard@richard-ThinkStation-S10:/$ sudo apt-get install

CURLE_OPT_MALFORMAT question regarding CURLcode retval = curl_easy_setopt(m_curl_handle, CURLOPT_URL, (char*)m_sUrl.c_str())

2015-07-31 Thread Frank Chang
I am curious why Alternative #1 functions okay while Alternative #2 returns CURLE_OPT_MALFORMAT when I do a curl_easy_perform(m_curl); Alternative #1 curl_easy_reset(m_curl); char sUrl[8192]; /* In Alternative #1, m_strUrl is a C++ std::wstring member variable */ wcstombs(sUrl,

How to stream mpeg4 on an Axis Camera using the RTSP protocol?

2015-07-28 Thread Frank Chang
My manager and I have a question about how to use libcurl on an Axis camera with dual h264 and mpeg4 streaming hardware support to stream MPEG4 with the RTSP protocol. I read the following curl-library archived article from Jeremy 4 years ago and I was wondering if anyone could

Could someone advise me if there is a mistake in my RTSP URL or libcurl RTSP DESCRIBE C++ function?

2015-07-19 Thread Frank Chang
Daniel, Tors, Yang-Tse or members of the esteemed libcurl mailing list: I am obtaining a HTTP error 400 in response to the folowing RTSP URL being processed by the function shown below. DESCRIBE rtsp://root:pass@192.168.1.47/axis-media/media.amp ?videocodec=h264/ The IP camera I am using is a

Re: IBM-AIX xlc internal compiler error

2013-01-24 Thread Frank Chang
Tor Arnsten, When we build the open source library ICU(internationalization Components Unicode) C and C++ library on our IBM-AIX platform, we observe that the C files are compiled without the -qnoansialias compiler flag. In the libcurl-7.28.1 file ./am/curl-compiler.m4 , there is a

Re: IBMAIX xlc internal compiler version

2013-01-23 Thread Frank Chang
Tor Arnsten, Thank you for you reply. Here is the IBMAIX operating system version and compiler version regarding: We just tried running: $ xlc -DHAVE_CONFIG_H -I../include/curl -I../include -I../include -I../lib -I.. /lib -qthreaded -c -M progress.c -DPIC -o .libs/libcurl_la-progress.o

Re: IBM-AIX xlc Makefile internal compiler error

2013-01-22 Thread Frank Chang
Tor Arnsten, We followed the following steps on IBM-AIX: export CC=xlc ./configure make and progress.c is unable to build correctly with the Makefile and libtool. However, when we manually enter the following command line directive. we obtain the result shown below. If you have the time,

Re: IBM-AIX xlc internal compiler error

2013-01-22 Thread Frank Chang
Daniel Stenberg and Tor Arnsten, I just read your post where you advise us to: I think you should rather try with ONLY removing the -qnoansialias -qhalt=e -O2 options and see if that can possibly make things different. We just tried running: $ xlc -DHAVE_CONFIG_H -I../include/curl

IBM AIX xlc compiler internal compiler error

2013-01-21 Thread Frank Chang
Tor Arnsten, We just tried ./configure CC=xlc followed by make. The IBM-AIX compiler error log is shown below. It may be either an IBM-AIX xlc internal compiler error or a problem in the progress.c source file. If you have time, could you please look at ./lib/progress.c? Thank you for your

HPUX11.11 test results for Yang Tse's curl-7.28.2-20121218 look good

2012-12-18 Thread Frank Chang
Daniel Stenberg and Dan Fandrich, Yang Tse, Here are HPUX11.11 test results for the curl-7.28.2-20121218 European nightly build. Thank you for your help. HPUX11.11 test results for Yang Tse's curl-7.28.2-20121218 look good. Thank you

Re: The #include in if2ip.c is made unconditionally ... (Daniel Stenberg)

2012-12-16 Thread Frank Chang
reach the person managing the list at curl-library-ow...@cool.haxx.se When replying, please edit your Subject line so it is more specific than Re: Contents of curl-library digest... Today's Topics: 1. Re: libcurl internal bool TRUE and FALSE definitions and usage(Yang Tse) (Frank Chang

I have some free time this weekend to help the libcurl project with the HPUX11.11 tentative patch .

2012-12-15 Thread Frank Chang
Daniel Stenberg, I have some free time this weekend to help the libcurl project with the HPUX11.11 tentative patch . Please let me know what tests to run or HPUX files or data you or Yang Tse might need. Thank you.

Re: The #include in if2ip.c is made unconditionally which is bad and needs to be fixed

2012-12-15 Thread Frank Chang
Thanks but you forgot the -u switch to diff so the patch is using an inferior format! I tried diff -ru on HPUXB11.11 and i got an command line error message from HPUX11.11 OS so I was forced to use diff -u. Also, one use (in file.c) was ifndef instead of ifdef, for a _second_ include of

Re: The #include in if2ip.c is made unconditionally which is bad and needs to be fixed

2012-12-15 Thread Frank Chang
Daniel Stenberg, Please read the following email I sent to Yang Tse a few hours ago. Thank you. From: frank_chan...@hotmail.com To: yangs...@gmail.com Subject: diff curl-7.28.2-20121213/lib/setup_once.h curl-7.28.1/lib/setup_once.h Date: Sat, 15 Dec 2012 18:23:57 -0500 Yang Tse, diff

Re: libcurl internal bool TRUE and FALSE definitions and usage(Yang Tse)

2012-12-15 Thread Frank Chang
Daniel Stenberg and Yang Tse, 7. libcurl internal bool TRUE and FALSE definitions and usage (Yang Tse) Yang Tse's analysis and proposed fix are excellent. Please let me know how I can help implement and/or test this proposed fic. Thank you.

Preliminary patch file for testing HPUX11.11 complier error

2012-12-14 Thread Frank Chang
Daniel Stenberg, Here is a preliminary version of diff path file for the HPUX11.11 compiler error. Thank you for the instructions. diff -r ./original/dict.c /net/beige/export/marc/DQT/EmailLib/curl-7.28.1Friday/lib/modified/dict.c 42,44d41 #ifdef

Re: Potential Fix to HPUX Version B11.11 rw_lock.h compiler error

2012-12-13 Thread Frank Chang
Dan Fandrich, As we approach the holidays, I need to ask our project director to allocate me the time necessary to try to convince you that HPUX version B.11.11 has a curl-related problem. Thank you. If there is a bona fide problem with curl on HP-UX, we'd certainly like to fix it. But,

Evidence that other people experienced the same compile error with HPUX11.11.

2012-12-13 Thread Frank Chang
Daniel Stenberg and Yang Tse, Here is some evidence that other people experienced the same compile error with HPUX11.11 as w did. Shown below is the result of a Google search engine search which I did yesterday. Thank you. Search Results This is probably not a good thing

RE: Order Of Include Files in libcurl-7.28.1 that appears to compile OK

2012-12-13 Thread Frank Chang
Daniel Stenberg and Yang Tse, Daniel Stenberg, Once again you are correct that the cause of HPUX B11.11 /usr/include/sys/rw_lock.h compile error. I spent the last 15 minutes trying many permutations of the order of the include files in ./curl-7.28.1/lib/file.c and testing the make process. Here

Re: Potential Fix to curl 7.28.1 for HPUX 11.11 CC compiler /usr/include/sys/rw_lock.h compiler error

2012-12-12 Thread Frank Chang
Dan Fandrich, Thank you for you reply. Here is the /usr/include/sys/rw_lock..file for HPUX 11.11 for your potential review if you have the time. The offending lines are around line 169. You may contact me at frank_chan...@hotmail.com or frankchan...@gmail.com if you have any questions. Thank

2. Re: Potential Fix to libcurl 7.28.1 HPUX11.11 rw_lock.h compiler developed(Daniel Stenberg)

2012-12-12 Thread Frank Chang
2. Re: Potential Fix to libcurl 7.28.1 HPUX11.11 rw_lock.h compiler error developed (Daniel Stenberg) Daniel Stenberg and Dan Fandrich, There are actually more libcurl 7.28.1 files that require the same change as Daniel Stenberg just made for gopher.c. They are 1) ./lib/tftp.c

Re: Potential Fix to libcurl 7.28.1 HPUX11.11 rw_lock.h

2012-12-12 Thread Frank Chang
Yang Tse and Dan Fandrich, I have plenty of detailed information on this problem and other questions I have emailed to the curl-library-developers list. However, many times when I try to submit error log information or other large files, the email-list moderator API seems not to like large

Possible Curl-7.28.1 compiler error message on aCC compiler

2012-12-11 Thread Frank Chang
Daniel Stenberg, On HPUX B.11.11 using the aCC compiler, we obtain the following compile error shown below, Error 20: /usr/include/sys/rw_lock.h, line 169 # ';' expected before 'probably'. This is probably not a good thing Could anyone suggest how we might get around this problem? Thank

Potential Fix to libcurl 7.28.1 HPUX11.11 rw_lock.h compiler error developed

2012-12-11 Thread Frank Chang
Yang Tse and Dan Fandrich, Thank you for your help .I just developed a potential fix to the nasty rw_lock.h problem.on HPUX 11.11. curl 7.28.1 compiles and links successfully if you use the following fix. For example if you go lib/gopher.c and add #define TRUE 1 before #include net/if.h

IBM AIX Unix xlC compiler internal compiler error

2012-12-10 Thread Frank Chang
Daniel Stenberg, Could you please take a brief look at the following libcurl-7.28.1 IBM-AIX xlC internal compiler error which our project director and I found this afternoon? The error log is shown below. Thank you. 1) ./configure CC=xlC 2) make Making all in lib make[1]: Entering directory

Re: IBM AIX XLC internal compiler error

2012-12-10 Thread Frank Chang
On December 10 2012 Daniel Stenberg wrote: This is a not very subtle hint that you should consider to: 1 - contact your Service Representative, or 2 - upgrade your compiler to something more recent, or 3 - just use gcc like the rest of the world, or 4 - follow the advice I found[*](!)

RE: [PATCH] configure: fix cross pkg-lconfig detection

2012-12-09 Thread Frank Chang
network. YyTTo: curl-glibr...@cool.haxx.serdrsesRerply To: Frank Chang Subject: RE: [PATCH] configure: fix cross pkg-config detection From: Colin Watson cjwat...@ubuntu.com To: curl-library@cool.haxx.se Subject: [PATCH] configure: fix cross pkg-config detection Colin Watson

RE: [PATCH] configure: fix cross pkg-config detection

2012-12-08 Thread Frank Chang
From: Colin Watson cjwat...@ubuntu.com To: curl-library@cool.haxx.se Subject: [PATCH] configure: fix cross pkg-config detection Colin Watson, Was this patch tested on Solaris UNIX and IBM AIX? If so, How do we obtain your patch? Thank you.

RE: [PATCH] configure: fix cross pkg-config detection

2012-12-08 Thread Frank Chang
From: Colin Watson cjwat...@ubuntu.com To: curl-library@cool.haxx.se Subject: [PATCH] configure: fix cross pkg-config detection Colin Watson, Was this patch tested on Solaris UNIX and IBM AIX? If so, How do we obtain your patch? Thank you.

RedHat LInux libcurl 7.28.1 curl_config.h generated by ./configure is attached

2012-12-05 Thread Frank Chang
Benjamin Greear, The RedHat LInux libcurl 7.28.1 curl_config.h generated by ./configure is attached. Thank you. /* lib/curl_config.h. Generated from curl_config.h.in by configure. */ /* lib/curl_config.h.in. Generated from configure.ac by autoheader.

RE: RedHat Linux libcurl 7.28.1 compiler errors

2012-12-05 Thread Frank Chang
:22:50 Frank Chang wrote: Daniel Stenberg, This morning, our Project Director and I tested the libcurl 7.28.1 ./configure file on RedHatLinux. There were over 50+ compiler errors. The RedHat Linux OS and GNU compiler information are shown below.[xyz@build01 EmailLib]$ gcc -v Using built

Re: RedHat Linux compile errors for curl.7.28.1

2012-12-03 Thread Frank Chang
Daniel Stenberg, You are 100% correct. I just reran ./configure for curl.7.28.1 and make all builds curl.7.28.1 perfectly on RedHat Linux. Thank you for your quick response. --- List admin: