1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: This patch has been created by dpkg-source during the conversion
to format "3.0 (quilt)".
Author: Hugo Torres de Lima <hugotorres@protonmail.com>
Last-Update: 2022-01-08
--- kic-2.4c.orig/configure.in
+++ kic-2.4c/configure.in
@@ -102,7 +102,10 @@ if test $WIN32 = yes; then
LIBS="-lgdi32 -lwinspool -lcomdlg32 -lole32 -loleaut32 -luuid \
-lodbc32 -lversion -lcomctl32 -lwsock32 -lws2_32 $LIBS"
else
- LIBS="-L$ac_x_libraries -lX11 $LIBS"
+ LIBS="-lX11 -lXmu -lXext $LIBS"
+ if test -n "$ac_x_libraries"; then
+ LIBS="-L$ac_x_libraries $LIBS"
+ fi
fi
CFLAGS="$CFLAGS -DUSE_OLD_MALLOC"
|