Re: Cannot get ./configure to create Makefile for Bind 9.10.3-P4. Please help!

2016-03-19 Thread Majid Mir
Thank you for your response.. I thought of that earlier, but when I run the exact same configure options on an older machine of ours (for 9.10.1) it creates the output files just fine.. That is where it confused me. Thanks On Thu, Mar 17, 2016 at 5:18 PM, Mark Andrews wrote: > > *Think* about

Re: Cannot get ./configure to create Makefile for Bind 9.10.3-P4. Please help!

2016-03-19 Thread Majid Mir
I think I Know why it worked on the old server.. it is because there is an existing Makefile already.. I am going to rename the existing makefile and see if it creates one. If it doesnt, then I will know that the no-create option is the culprit! Thanks for your help.. I will report back with what

Cannot get ./configure to create Makefile for Bind 9.10.3-P4. Please help!

2016-03-19 Thread Majid Mir
Hello all I am trying to compile Bind 9.10.3-P4 from source and whenever I try to run the following: ./configure --sbindir=/usr/sbin --sysconfdir=/etc/bind --with-openssl --disable-openssl-version-check --no-create --no-recursion I receive the following error after the configuration script is f

Re: Cannot get ./configure to create Makefile for Bind 9.10.3-P4. Please help!

2016-03-19 Thread Mark Andrews
--no-create is for when you want to tinker with the final results built into config.status prior to building the Makefiles. I've committed changes to no run "make clean" if --no-create is set. Mark -- Mark Andrews, ISC 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742

Re: Cannot get ./configure to create Makefile for Bind 9.10.3-P4. Please help!

2016-03-19 Thread Mark Andrews
*Think* about the arguments you are passing to configure. You told configue to NOT CREATE the makefiles. Mark In message , Majid Mir writes: > > Hello all > > I am trying to compile Bind 9.10.3-P4 from source and whenever I try to run > the following: > > ./configure --sbindir=/usr/sbin --s

Re: Cannot get ./configure to create Makefile for Bind 9.10.3-P4. Please help!

2016-03-18 Thread Majid Mir
Mark. I owe you a virtual beer.. You were right! Thank you Sorry I am still a n00b at this at times On Thu, Mar 17, 2016 at 5:24 PM, Majid Mir wrote: > I think I Know why it worked on the old server.. it is because there is an > existing Makefile already.. I am going to rename the existing mak