In the end I figured out I was missing perl-Net-SSLeay. Since perl-LWP-Protocol depends on perl-Net-SSLeay (according to the screenshot), apy-cyg should install perl-Net-SSLeay while installing perl-LWP-Protocol, but it did not.
I suggest let configure output perl -e 'use LWP::Protocol::https', instead of perl -e 'use LWP::Protocol::https' > \dev\null as currently is. On Sun, Jan 22, 2017 at 5:51 PM, Damjan Jovanovic <dam...@apache.org> wrote: > Hi > > Install the perl-LWP-Protocol-https package using Cygwin or apt-cyg. > > > On Sun, Jan 22, 2017 at 9:35 PM, Hong <mahon...@gmail.com> wrote: > >> Hi Damjan, >> >> The error is still the same, except for the wording is a little different. >> >> >> >> Attached the config.log and output. In the meantime I will be looking at >> the script as well. If I find something wrong, I will let you know. >> >> >> On Sat, Jan 21, 2017 at 1:42 AM, Damjan Jovanovic <dam...@apache.org> >> wrote: >> >>> Firstly, it looks like there's a bug in our configure script: the >>> dependencies that are checked for in bulk, are different from the >>> dependencies that are tested individually and reported as missing, so a >>> missing dependency can be wrongly reported. >>> >>> I've just committed a fix for it, so please "svn update", "autoconf", and >>> try "configure" again. If you still get errors, please attach the output >>> and your config.log. >>> >>> Damjan >>> >>> On Sat, Jan 21, 2017 at 3:38 AM, Hong <mahon...@gmail.com> wrote: >>> >>> > Hi all, >>> > >>> > Now I am building AOO under Win7. Most of my settings are exactly the >>> same >>> > as the instruction. >>> > >>> > I keep seeing this package missing error when I did "./configure". Can >>> > someone please help? I already kept trying the entire afternoon. >>> > >>> > >>> > >>> > As you can see I did a check, it was installed, but just "./configure" >>> > complains it is missing. >>> > >>> > Someone reported this issue before, but the status is fixed now >>> > >>> > https://issues.apache.org/jira/browse/INFRA-12629 >>> > >>> > Also the buildbot does not have this issue. What could be wrong with my >>> > environment? https://ci.apache.org/builders/aoo-win7/builds/602 >>> > >>> > On Mon, Jan 16, 2017 at 12:43 PM, Hong <mahon...@gmail.com> wrote: >>> > >>> >> Hi again, >>> >> >>> >> I now encountered this error, >>> >> >>> >> checking for PSDK files... configure: error: Some (all?) PSDK files >>> not >>> >> found, please check if all needed Platform SDKs >>> >> are installed or use --with-psdk-home . >>> >> >>> >> I suspect it was that I installed Windows SDK v10, or maybe that I did >>> >> not install under the default "Program Files (x86)" ? >>> >> >>> >> The instruction said the Windows SDK is v7. Does it need to be >>> strictly >>> >> followed? >>> >> >>> >> A more general question is does everything in >>> https://wiki.openoffice.org >>> >> /wiki/Documentation/Building_Guide_AOO/Step_by_step needs to be >>> strictly >>> >>> >> followed? I am using a Windows 10 machine, but things like .NET 3.5, >>> MSVC >>> >> 2008 and GDI needs to come out of Win XP sound a bit outdated. >>> >> >>> >> On Sun, Jan 15, 2017 at 9:26 PM, Hong <mahon...@gmail.com> wrote: >>> >> >>> >>> Thanks, will try to find it. >>> >>> >>> >>> On Sun, Jan 15, 2017 at 9:20 PM, Damjan Jovanovic <dam...@apache.org >>> > >>> >>> wrote: >>> >>> >>> >>>> The "autoconf" tool is part of Cygwin. >>> >>>> >>> >>>> On Mon, Jan 16, 2017 at 7:07 AM, Hong <mahon...@gmail.com> wrote: >>> >>>> >>> >>>> > As in my screenshot, I did not see an autoconf file in my >>> download as >>> >>>> well. >>> >>>> > I was curious why was it too. Autoconf is a project file, not a >>> Cygwin >>> >>>> > command/tool? >>> >>>> > >>> >>>> > On Sun, Jan 15, 2017 at 9:03 PM, Damjan Jovanovic < >>> dam...@apache.org> >>> >>>> > wrote: >>> >>>> > >>> >>>> > > Hi >>> >>>> > > >>> >>>> > > Please run "autoconf" first, which will generate "configure" >>> from " >>> >>>> > > configure.in". >>> >>>> > > >>> >>>> > > Damjan >>> >>>> > > >>> >>>> > > On Mon, Jan 16, 2017 at 6:58 AM, Hong <mahon...@gmail.com> >>> wrote: >>> >>>> > > >>> >>>> > > > Hello all, >>> >>>> > > > >>> >>>> > > > I am trying to build AOO 4.1.3 on a Windows machine. >>> >>>> > > > >>> >>>> > > > My source code was from this page, >>> https://openoffice.apache.org/ >>> >>>> > > > downloads.html (from the zip, not from the svn checkout) >>> >>>> > > > >>> >>>> > > > I was following through this guide, >>> https://wiki.openoffice.org/ >>> >>>> > > > wiki/Documentation/Building_Guide_AOO/Step_by_step >>> >>>> > > > >>> >>>> > > > I could follow the "Windows 7, Windows 8, Windows 10" section >>> up >>> >>>> until >>> >>>> > > > this, >>> >>>> > > > >>> >>>> > > > SDK_PATH="/cygdrive/c/Microsoft_SDKs/Windows/v7.0" >>> >>>> > > > ./configure \ >>> >>>> > > > --with-frame-home="$SDK_PATH" \ >>> >>>> > > > --with-psdk-home="$SDK_PATH" \ >>> >>>> > > > --with-midl-path="$SDK_PATH/bin" \ >>> >>>> > > > --with-ant-home="/cygdrive/c/apache-ant-1.8.4" \ >>> >>>> > > > --with-jdk-home="C:/PROGRA~2/Java/JDK18~1.0_7" \ >>> >>>> > > > --with-csc-path="C:/Windows/Microsoft.NET/Framework/v3.5" >>> \ >>> >>>> > > > --with-cl-home="C:/PROGRA~2/MI1DCA~1.0/VC" \ >>> >>>> > > > --with-asm-home="C:/PROGRA~2/MI1DCA~1.0/VC/bin" \ >>> >>>> > > > --with-dmake-url="http://sourceforge.net/projects/ >>> >>>> > > > oooextras.mirror/files/dmake-4.12.tar.bz2" \ >>> >>>> > > > --with-epm-url="https://sourceforge.net/projects/ >>> >>>> > > > oooextras.mirror/files/epm-3.7.tar.gz" \ >>> >>>> > > > --disable-pch \ >>> >>>> > > > --disable-atl \ >>> >>>> > > > --disable-activex \ >>> >>>> > > > --disable-nss-module \ >>> >>>> > > > --without-junit >>> >>>> > > > >>> >>>> > > > Assuming this is Cygwin code, typing in Cygwin gave me "bash: >>> >>>> > > ./configure: >>> >>>> > > > No such file or directory" >>> >>>> > > > >>> >>>> > > > Also the main directory does not seem to have a "configure", >>> but >>> >>>> only >>> >>>> > > > configure.cmd and configure.in >>> >>>> > > > >>> >>>> > > > >>> >>>> > > > >>> >>>> > > > Any thoughts what was the problem here? Am I following the >>> right >>> >>>> > > > instruction? >>> >>>> > > > >>> >>>> > > >>> >>>> > >>> >>>> >>> >>> >>> >>> >>> >> >>> > >>> >> >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org >> For additional commands, e-mail: dev-h...@openoffice.apache.org >> > >