sshock / AFFLIBv3

AFF is an open and extensible file format to store disk images and associated metadata.
Other
77 stars 20 forks source link

Recover to link with libexpat and lib curl #18

Closed umireon closed 7 years ago

umireon commented 7 years ago

I apologize that #14 breaks the build: that never links with curl and expat.

This was due to my misunderstandings of the behavior of AC_CHECK_LIB.

AC_CHECKLIB adds the -l to LIBS and defines HAVE when the third argument is empty.

This change recovers that behavior and now links with expat and curl correctly.

Related