Skip to content

Commit

Permalink
* encodefilter/configure.in: POBL_LIBS is never "".
Browse files Browse the repository at this point in the history
  • Loading branch information
arakiken committed Oct 30, 2022
1 parent ddc9a84 commit 06c82f3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2022-10-30 Araki Ken <arakiken@users.sf.net>

* encodefilter/configure.in: POBL_LIBS is never "".

2022-08-16 Araki Ken <arakiken@users.sf.net>

* c_imagelib.c: Fix buffer over-read.
Expand Down
11 changes: 5 additions & 6 deletions encodefilter/configure
Original file line number Diff line number Diff line change
Expand Up @@ -11555,17 +11555,16 @@ $as_echo "not supported" >&6; }
NO_UNDEFINED_FLAG="-no-undefined"
# link ef_char.lo to module/*.dll to resolve addresses in creating dll.
EF_CHAR_LO="../src/ef_char.lo"
if test "x${POBL_BUILDDIR}" != "x" ; then
POBL_LIBS="${POBL_BUILDDIR}/src/libpobl.la"
else
POBL_LIBS='-lpobl'
fi
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: supported" >&5
$as_echo "supported" >&6; }
NO_UNDEFINED_FLAG=""
EF_CHAR_LO=""
POBL_LIBS=""
fi
if test "x${POBL_BUILDDIR}" != "x" ; then
POBL_LIBS="${POBL_BUILDDIR}/src/libpobl.la"
else
POBL_LIBS='-lpobl'
fi


Expand Down
11 changes: 5 additions & 6 deletions encodefilter/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,15 @@ if test "x$allow_undefined_flag" = "xunsupported" ; then
NO_UNDEFINED_FLAG="-no-undefined"
# link ef_char.lo to module/*.dll to resolve addresses in creating dll.
EF_CHAR_LO="../src/ef_char.lo"
if test "x${POBL_BUILDDIR}" != "x" ; then
POBL_LIBS="${POBL_BUILDDIR}/src/libpobl.la"
else
POBL_LIBS='-lpobl'
fi
else
AC_MSG_RESULT(supported)
NO_UNDEFINED_FLAG=""
EF_CHAR_LO=""
POBL_LIBS=""
fi
if test "x${POBL_BUILDDIR}" != "x" ; then
POBL_LIBS="${POBL_BUILDDIR}/src/libpobl.la"
else
POBL_LIBS='-lpobl'
fi
AC_SUBST(NO_UNDEFINED_FLAG)
AC_SUBST(EF_CHAR_LO)
Expand Down

0 comments on commit 06c82f3

Please sign in to comment.