diff options
author | vanilla <vanilla@FreeBSD.org> | 2000-03-25 14:37:39 +0000 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2000-03-25 14:37:39 +0000 |
commit | f027909983f104bc81e73dea365e953816ddf1ea (patch) | |
tree | 1bf1c39340453b93cdcedaf76a64424807033fd8 /net-im/ayttm | |
parent | 8bc2f924c6cadd94f82ca31a006923212ff9e8ae (diff) | |
download | FreeBSD-ports-f027909983f104bc81e73dea365e953816ddf1ea.zip FreeBSD-ports-f027909983f104bc81e73dea365e953816ddf1ea.tar.gz |
Add a patch for I18N (change gdk_font_load to gdk_fontset_load)
Diffstat (limited to 'net-im/ayttm')
-rw-r--r-- | net-im/ayttm/files/patch-aa | 12 | ||||
-rw-r--r-- | net-im/ayttm/files/patch-ac | 21 |
2 files changed, 29 insertions, 4 deletions
diff --git a/net-im/ayttm/files/patch-aa b/net-im/ayttm/files/patch-aa index 22a0c44..6948215 100644 --- a/net-im/ayttm/files/patch-aa +++ b/net-im/ayttm/files/patch-aa @@ -1,6 +1,6 @@ ---- configure.orig Wed Mar 1 23:41:56 2000 -+++ configure Wed Mar 1 23:42:08 2000 -@@ -2348,7 +2348,7 @@ +--- configure.orig Tue Feb 1 07:51:56 2000 ++++ configure Sat Mar 25 21:24:22 2000 +@@ -2348,10 +2348,10 @@ CFLAGS="$CFLAGS -I/usr/local/include -I/opt/include" EB_CFLAGS="$CFLAGS -I../" @@ -8,4 +8,8 @@ +EB_LIBS="$LIBS -L../libicq -licq -L../libmsn -lmsn -L../libyahoo -lyahoo -L../libproxy -lproxy -L../libtoc -ltoc -pthread" EB_LDADD="$LDADD" - EB_CFLAGS="$EB_CFLAGS -D_REENTRANT -Wall -g " +-EB_CFLAGS="$EB_CFLAGS -D_REENTRANT -Wall -g " ++EB_CFLAGS="$EB_CFLAGS -D_REENTRANT -Wall" + # Check whether --with-esd-prefix or --without-esd-prefix was given. + if test "${with_esd_prefix+set}" = set; then + withval="$with_esd_prefix" diff --git a/net-im/ayttm/files/patch-ac b/net-im/ayttm/files/patch-ac new file mode 100644 index 0000000..5a48648 --- /dev/null +++ b/net-im/ayttm/files/patch-ac @@ -0,0 +1,21 @@ +--- src/gtkhtml.c.orig Sat Mar 25 21:24:55 2000 ++++ src/gtkhtml.c Sat Mar 25 21:23:28 2000 +@@ -494,7 +494,7 @@ + { + char buf[256]; + g_snprintf(buf, sizeof(buf), fmt, font_sizes[size]); +- return gdk_font_load(buf); ++ return gdk_fontset_load(buf); + } + + +--- src/main.c.orig Sat Mar 25 21:33:08 2000 ++++ src/main.c Sat Mar 25 21:32:11 2000 +@@ -123,6 +123,7 @@ + + #endif + gtk_init(&argc, &argv); ++ gtk_set_locale (); + g_snprintf(buff, 1024, "%s/.everybuddy",getenv("HOME")); + services_init(); + |