a88508cca6
Changes since 0.4.0: *src/command: applied patch from Eric Benoit <eric@ecks.org>, which adds the "CSI 21 t" control sequence, for title handling. *command.c: fixed keypad Home and down keys being mixed up. Added code to allow scrolling up/down for just one line (shift+arrow) contributed by djerome) *command.c: Fixed possible buffer overflow when changing display name. *ximage_utils.c: updated shading code for better speed *screen.c: applyed reverse video cursor patch *ximage_utils.c: applyed Ren<E9> Scharfe 's patch for better shading approach. And bug fixes.
34 lines
1.1 KiB
Text
34 lines
1.1 KiB
Text
$NetBSD: patch-aa,v 1.2 2001/12/11 16:02:08 wiz Exp $
|
|
|
|
--- configure.orig Thu Sep 6 18:38:07 2001
|
|
+++ configure
|
|
@@ -1822,7 +1822,7 @@
|
|
|
|
# It would also be nice to do this for all -L options, not just this one.
|
|
if test -n "$x_libraries"; then
|
|
- X_LIBS="$X_LIBS -L$x_libraries"
|
|
+ X_LIBS="$X_LIBS -L$x_libraries -Wl,-R$x_libraries"
|
|
# For Solaris; some versions of Sun CC require a space after -R and
|
|
# others require no space. Words are not sufficient . . . .
|
|
case "`(uname -sr) 2>/dev/null`" in
|
|
@@ -1850,9 +1850,9 @@
|
|
rm -f conftest*
|
|
if test $ac_R_nospace = yes; then
|
|
echo "$ac_t""no" 1>&6
|
|
- X_LIBS="$X_LIBS -R$x_libraries"
|
|
+ X_LIBS="$X_LIBS -R$x_libraries -Wl,-R$x_libraries"
|
|
else
|
|
- LIBS="$ac_xsave_LIBS -R $x_libraries"
|
|
+ LIBS="$ac_xsave_LIBS -R $x_libraries -Wl,-R$x_libraries"
|
|
cat > conftest.$ac_ext <<EOF
|
|
#line 1858 "configure"
|
|
#include "confdefs.h"
|
|
@@ -1873,7 +1873,7 @@
|
|
rm -f conftest*
|
|
if test $ac_R_space = yes; then
|
|
echo "$ac_t""yes" 1>&6
|
|
- X_LIBS="$X_LIBS -R $x_libraries"
|
|
+ X_LIBS="$X_LIBS -R $x_libraries -Wl,-R$x_libraries"
|
|
else
|
|
echo "$ac_t""neither works" 1>&6
|
|
fi
|