diff options
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/configure.ac | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/configure.ac b/gtk/configure.ac index 98649ad13..0cf85a8b1 100644 --- a/gtk/configure.ac +++ b/gtk/configure.ac @@ -162,30 +162,30 @@ HB_LIBS="-lhandbrake -lavresample -lavformat -lavcodec -lavutil -ldvdnav -ldvdre case $host in *-*-mingw*) if test "x$use_libdl" = "xyes" ; then - HB_LIBS+=" -ldl" + HB_LIBS="$HB_LIBS -ldl" fi if test "x$use_libpthread" = "xyes" ; then - HB_LIBS+=" -lpthread" + HB_LIBS="$HB_LIBS -lpthread" else - HB_LIBS+=" -lpthreadGC2" + HB_LIBS="$HB_LIBS -lpthreadGC2" fi - HB_LIBS+=" -lregex -luuid" + HB_LIBS="$HB_LIBS -lregex -luuid" ;; *) - HB_LIBS+=" -ldl -lpthread" + HB_LIBS="$HB_LIBS -ldl -lpthread" ;; esac if test "x$use_fdk_aac" = "xyes" ; then - HB_LIBS+=" -lfdk-aac" + HB_LIBS="$HB_LIBS -lfdk-aac" fi if test "x$use_x265" = "xyes" ; then - HB_LIBS+=" -lx265" + HB_LIBS="$HB_LIBS -lx265" fi if test "x$use_qsv" = "xyes" ; then - HB_LIBS+=" -lmfx" + HB_LIBS="$HB_LIBS -lmfx" fi AC_SUBST(HB_LIBS) |