diff options
| author | 2021-04-13 05:36:03 +0200 | |
|---|---|---|
| committer | 2021-04-13 05:36:03 +0200 | |
| commit | 4b2f17e8cce8fa078aa55f5da5f726c20eac3e2e (patch) | |
| tree | 96b7fdfcb256c7798cd0f8f96b549e298cd25253 | |
| parent | 735ac51e0eeaa3419e85dbad9579401ae828f631 (diff) | |
| download | libimobiledevice-4b2f17e8cce8fa078aa55f5da5f726c20eac3e2e.tar.gz libimobiledevice-4b2f17e8cce8fa078aa55f5da5f726c20eac3e2e.tar.bz2  | |
common: Add missing *_LIBS and *_CFLAGS to fix build
| -rw-r--r-- | common/Makefile.am | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index 4e3facb..ab01b83 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -8,12 +8,17 @@ AM_CFLAGS = \  	$(libplist_CFLAGS) \  	$(libgnutls_CFLAGS) \  	$(libtasn1_CFLAGS) \ +	$(libgcrypt_CFLAGS) \  	$(openssl_CFLAGS) \  	$(LFS_CFLAGS)  AM_LDFLAGS = \  	$(libusbmuxd_LIBS) \  	$(libplist_LIBS) \ +	$(libgnutls_LIBS) \ +	$(libtasn1_LIBS) \ +	$(libgcrypt_LIBS) \ +	$(openssl_LIBS) \  	${libpthread_LIBS}  noinst_LTLIBRARIES = libinternalcommon.la  | 
