ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm ChangeLog,1.10,1.11 INSTALL,1.2,1.3 configur


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm ChangeLog,1.10,1.11 INSTALL,1.2,1.3 configure.in,1.9,1.10
Date: Mon, 30 Dec 2002 13:15:11 -0500

Update of /cvsroot/ayttm/ayttm
In directory subversions:/tmp/cvs-serv18593

Modified Files:
        ChangeLog INSTALL configure.in 
Log Message:
Xft2


Index: ChangeLog
===================================================================
RCS file: /cvsroot/ayttm/ayttm/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   29 Dec 2002 10:28:14 -0000      1.10
+++ ChangeLog   30 Dec 2002 18:15:09 -0000      1.11
@@ -1,3 +1,12 @@
+2002-12-30 [colin]     0.1-14
+
+       * modules/yahoo2/libyahoo.c
+               Changed check for u_char definition
+       * configure.in
+               Use XFT2
+       * INSTALL
+               Update doc
+
 2002-12-29 [colin]     0.1-13
 
        * src/prefs.c

Index: INSTALL
===================================================================
RCS file: /cvsroot/ayttm/ayttm/INSTALL,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- INSTALL     27 Dec 2002 17:53:57 -0000      1.2
+++ INSTALL     30 Dec 2002 18:15:09 -0000      1.3
@@ -11,6 +11,10 @@
        You may want to --enable-xft to have antialiased fonts (you'll 
        need libxft headers).
 
+       We now use Xft2. be sure to have fonts.cache-1 files, or run
+       fc-cache to generate them, or yattm will seem to hang for a 
+       long time while the generation will be done.
+       
 Basic Installation
 ==================
 

Index: configure.in
===================================================================
RCS file: /cvsroot/ayttm/ayttm/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- configure.in        29 Dec 2002 10:22:33 -0000      1.9
+++ configure.in        30 Dec 2002 18:15:09 -0000      1.10
@@ -1,6 +1,6 @@
 # Process this file with autoconf to produce a configure script.
 AC_INIT([src/main.c])
-AM_INIT_AUTOMAKE(yattm, 0.1-13)
+AM_INIT_AUTOMAKE(yattm, 0.1-14)
 AM_CONFIG_HEADER(config.h)
 
 dnl AC_DEFINE(UNIX)
@@ -184,8 +184,12 @@
 AC_ARG_ENABLE(xft, 
 [  --enable-xft            compile with anti-aliased font support])
 if test "$enable_xft" = yes ; then
+    XFT_CFLAGS=`xft-config --cflags`
+    XFT_LDFLAGS=`xft-config --libs`
+    CFLAGS="$CFLAGS $XFT_CFLAGS"
+    LDFLAGS="$LDFLAGS $XFT_LDFLAGS"
     AC_CHECK_HEADER(X11/Xft/Xft.h, [
-       AC_CHECK_LIB(Xft, XftFontOpen,have_xft=yes;[EB_LIBS="$EB_LIBS 
-L/usr/X11R6/lib -lXft"],, -L/usr/X11R6/lib -lX11)
+       AC_CHECK_LIB(Xft, XftFontOpen,have_xft=yes;[EB_LIBS="$EB_LIBS 
$XFT_LDFLAGS"],, -L/usr/X11R6/lib -lX11)
     ])
   if test "$have_xft" = yes; then
     AC_DEFINE(HAVE_LIBXFT, , Define if we are to use AA)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]