Skip to content

Commit

Permalink
add libgeneral flags to compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
tihmstar committed Jan 12, 2024
1 parent f29a381 commit 2dcd708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libfragmentzip/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AM_CFLAGS = $(zlib_CFLAGS) $(curl_CFLAGS) -I$(top_srcdir)/include
AM_LDFLAGS = $(zlib_LIBS) $(curl_LIBS)
AM_CFLAGS = -I$(top_srcdir)/include $(curl_CFLAGS) $(libgeneral_CFLAGS) $(zlib_CFLAGS)
AM_LDFLAGS = $(curl_LIBS) $(libgeneral_LIBS) $(zlib_LIBS)

lib_LTLIBRARIES = libfragmentzip.la
libfragmentzip_la_CFLAGS = $(AM_CFLAGS)
Expand Down

1 comment on commit 2dcd708

@0x9fff00
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the purpose of this? It makes libgeneral.so.0 a runtime dependency even though only preprocessor macros are used from libgeneral

Please sign in to comment.