Skip to content

Commit

Permalink
Fix hardcoded libjpeg
Browse files Browse the repository at this point in the history
This is reduntant after libjpeg was added to pkg-config in fa87a16
Fixes #153
  • Loading branch information
jeroen committed Dec 13, 2023
1 parent 792c1e1 commit a62becc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ "$INCLUDE_DIR" ] || [ "$LIB_DIR" ]; then
elif [ "$PKGCONFIG_LIBS" ]; then
echo "Found pkg-config cflags and libs!"
PKG_CFLAGS=${PKGCONFIG_CFLAGS}
PKG_LIBS="${PKGCONFIG_LIBS} -ljpeg"
PKG_LIBS="${PKGCONFIG_LIBS}"
elif [ `uname` = "Darwin" ]; then
test ! "$CI" && brew --version 2>/dev/null
if [ $? -eq 0 ]; then
Expand Down

0 comments on commit a62becc

Please sign in to comment.