eddie
eddie

Reputation: 272

Compiling gSOAP 2.8.8 package errors

I was building the gSOAP-2.8.8 package using the autoconf and statements as ./configure, make , make install while using the statement make i got the following errors as:

C:\MinGW\msys\1.0\local\bin\bison.exe :cannot open file '/usr/local/share/bison/m4sugar/m4sugar.m4'

and the make is not successfull.

Kindly help me resolving this, any help is highly appreciated.

Thanks

Upvotes: 0

Views: 1358

Answers (1)

Jackson
Jackson

Reputation: 5657

In order to build gsoap from source you need to have a number of tools installed, as a minimum you need to make sure you've downloaded and built the latest versions of: au

  • autoconf
  • automake
  • bison
  • flex
  • m4

and if you plan on encrypting your SOAP messages then openssl is also required.

Based on your error message I suspect the m4 pre-processor may well be missing.

Upvotes: 1

Related Questions