Re: Autoconf & libssl

2011-11-11 Thread Till Elsner
- Ursprüngliche Mitteilung - > On 11/11/2011 09:13 AM, Till Elsner wrote: > > Ok, here we go: The following configure.ac seems to serve as a > > minimal example: > > --- begin configure.ac --- > > AC_PREREQ([2.68]) > > AC_INIT([actest], [1]) > > AC_SEARCH_LIBS([MD5], [ssl]); > > Remove tha

Re: Autoconf & libssl

2011-11-11 Thread Mike Frysinger
On Friday 11 November 2011 11:13:22 Till Elsner wrote: > Ok, here we go: The following configure.ac seems to serve as a > minimal example: > --- begin configure.ac --- > AC_PREREQ([2.68]) > AC_INIT([actest], [1]) > AC_SEARCH_LIBS([MD5], [ssl]); > AC_OUTPUT > --- end configure.ac --- > > I only hav

Re: Autoconf & libssl

2011-11-11 Thread Eric Blake
On 11/11/2011 09:13 AM, Till Elsner wrote: > Ok, here we go: The following configure.ac seems to serve as a > minimal example: > --- begin configure.ac --- > AC_PREREQ([2.68]) > AC_INIT([actest], [1]) > AC_SEARCH_LIBS([MD5], [ssl]); Remove that trailing ';' - it isn't necessary. -- Eric Blake

Re: Autoconf & libssl

2011-11-11 Thread Till Elsner
Mike Frysinger (Thu, 10. 11. 2011, 18:20): > On Thursday 10 November 2011 18:03:12 Till Elsner wrote: > > I'm trying to configure my own package. > > I've located the relevant portion in the configure file. It's > > the section with cares for the SSL lib, which matches the fact > > that removing th