diff options
author | Max Kellermann <max@musicpd.org> | 2018-08-17 17:04:56 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-08-17 17:06:03 +0200 |
commit | 533a3def9f300a2c4cd6f5baa303e6e6f2ae0e14 (patch) | |
tree | c7cc9792cb1c06cad3ebe20944b8542cc905e696 | |
parent | fcf487f4e088bb93c5ca841d02e42e6671dbdb3c (diff) |
Makefile.am: add missing $(CURL_CFLAGS) and $(EXPAT_CFLAGS)
Fixes problems with the Windows build because `-DCURL_STATICLIB` was
missing, causing error messages like:
"undefined reference to `__imp_curl_slist_free_all'"
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 3ed0c73a8..efbe11dfd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -737,6 +737,8 @@ libstorage_a_SOURCES = \ src/storage/FileInfo.hxx libstorage_a_CPPFLAGS = $(AM_CPPFLAGS) \ + $(CURL_CFLAGS) \ + $(EXPAT_CFLAGS) \ $(NFS_CFLAGS) \ $(SMBCLIENT_CFLAGS) |