Thursday, July 30, 2009

MinGW: To Compile Fribidi for Windows

The Fribidi library facilitates rendering of right-to-left scripts, such as Arabic and Hebrew. Though I'm not a native speaker of these languages, I am interested in various languages of the world. Thus I compiled fribidi 0.19.2 with MinGW, as shown below.


Download the Fribidi source from fribidi.org. Launch MSYS and unpack the source.


tar xzvf fribidi-0.19.2.tar.gz

cd fribidi-0.19.2

I configured fribidi by simply typing:


./configure --prefix=/mingw --disable-glib --disable-debug

If you only want to create a static library, append --disable-shared to the configure line. Then, I began compilation:


make -C charset
make -C lib
make -C lib install

I got an error that said “libtool: link: more than one -exported-symbols argument is not allowed.” To fix it, I edited lib/Makefile as follows:


libfribidi_la_LDFLAGS = -no-undefined -version-info $(LT_VERSION_INFO) \
-export-symbols-regex "^fribidi_.*" # $(am__append_1)

Fribidi2 doesn't install fribidi-config. Some programs like mplayer look for fribidi-config to use fribidi. To enable fribidi support for such programs, create a new sh script /mingw/bin/fribidi-config with the following contents:


#!/bin/sh
case $1 in
--version)
pkg-config --modversion fribidi
;;
--cflags)
pkg-config --cflags fribidi
;;
--libs)
pkg-config --libs fribidi
;;
*)
false
;;
esac

If you want to link your program with the static Fribidi library (libfribidi.a), you should define FRIBIDI_ENTRY with an empty string. In other words, you should type something like this when you configure:


CPPFLAGS=' -DFRIBIDI_ENTRY="" ' ./configure --prefix=/mingw

If you want to link your program with the shared Fribidi library (libfribidi-0.dll), you should define WIN32 as follows:


CPPFLAGS='-DWIN32' ./configure --prefix=/mingw

To Build Curl for Windows

I've been pretty content with wget. Then came curl. Like wget, curl is also a tool that helps you retrieve files on the Internet. I've yet to learn more about this utility, but curl seems to be quite powerful and popular. So I decided to compile curl on my own.



First, compile zlib.


make -f win32/Makefile.gcc
cp -iv zconf.h zlib.h /mingw/include
cp -iv libz.a /mingw/lib


Next, compile OpenSSL.


./Configure -DHAVE_STRUCT_TIMESPEC -DPTW32_STATIC_LIB -L/mingw/lib -lz -lpthreadGC2 -lws2_32 --prefix=/mingw threads zlib mingw
make
make install


I downloaded the Curl source from curl.haxx.se, launched MSYS and compiled Curl with the following commands:


./configure --build=i686-pc-mingw32 --prefix=/mingw --disable-shared
make
make install


This produces a static executable curl.exe. Copy it to a folder in your PATH.


cp -iv src/curl.exe /C/Windows

The command “make install” will copy the following files into /mingw.


bin/curl-config
bin/curl.exe
include/curl/curl.h
include/curl/curlbuild.h
include/curl/curlrules.h
include/curl/curlver.h
include/curl/easy.h
include/curl/mprintf.h
include/curl/multi.h
include/curl/stdcheaders.h
include/curl/typecheck-gcc.h
include/curl/types.h
lib/libcurl.a
lib/libcurl.la
lib/pkgconfig/libcurl.pc
share/man/man1/curl-config.1
share/man/man1/curl.1
share/man/man3/curl_easy_cleanup.3
share/man/man3/curl_easy_duphandle.3
share/man/man3/curl_easy_escape.3
share/man/man3/curl_easy_getinfo.3
share/man/man3/curl_easy_init.3
share/man/man3/curl_easy_pause.3
share/man/man3/curl_easy_perform.3
share/man/man3/curl_easy_recv.3
share/man/man3/curl_easy_reset.3
share/man/man3/curl_easy_send.3
share/man/man3/curl_easy_setopt.3
share/man/man3/curl_easy_strerror.3
share/man/man3/curl_easy_unescape.3
share/man/man3/curl_escape.3
share/man/man3/curl_formadd.3
share/man/man3/curl_formfree.3
share/man/man3/curl_formget.3
share/man/man3/curl_free.3
share/man/man3/curl_getdate.3
share/man/man3/curl_getenv.3
share/man/man3/curl_global_cleanup.3
share/man/man3/curl_global_init.3
share/man/man3/curl_global_init_mem.3
share/man/man3/curl_mprintf.3
share/man/man3/curl_multi_add_handle.3
share/man/man3/curl_multi_assign.3
share/man/man3/curl_multi_cleanup.3
share/man/man3/curl_multi_fdset.3
share/man/man3/curl_multi_info_read.3
share/man/man3/curl_multi_init.3
share/man/man3/curl_multi_perform.3
share/man/man3/curl_multi_remove_handle.3
share/man/man3/curl_multi_setopt.3
share/man/man3/curl_multi_socket.3
share/man/man3/curl_multi_socket_action.3
share/man/man3/curl_multi_strerror.3
share/man/man3/curl_multi_timeout.3
share/man/man3/curl_share_cleanup.3
share/man/man3/curl_share_init.3
share/man/man3/curl_share_setopt.3
share/man/man3/curl_share_strerror.3
share/man/man3/curl_slist_append.3
share/man/man3/curl_slist_free_all.3
share/man/man3/curl_strequal.3
share/man/man3/curl_unescape.3
share/man/man3/curl_version.3
share/man/man3/curl_version_info.3
share/man/man3/libcurl-easy.3
share/man/man3/libcurl-errors.3
share/man/man3/libcurl-multi.3
share/man/man3/libcurl-share.3
share/man/man3/libcurl-tutorial.3
share/man/man3/libcurl.3


Integrating Curl into Git


Git didn't pick up the curl library so I had to manually specify curl dependencies with LIBS:


./configure --prefix=/mingw --without-tcltk LIBS='-lssl -lcrypto -lgdi32 -lws2_32 -lwldap32 -lz'


Related Posts


MinGW Portable

Using MinGW on Windows Vista (or even XP) can bring many unexpected errors due to UAC and filesystem restrictions. Fortunately, there's a convenient way to install MinGW on portable devices. It's MinGW Portable which is a PortableApp running on the PortableApps platform. MinGW Portable is said to be working well. To be honest, I think installing MinGW Portable is a lot simpler and effective than going through a bunch of setup programs. Be warned that MinGW Portable is an experimental beta program.



Just download these 2 installers and run them in that order:


  1. PortableApps Platform
  2. MinGW PortableApp


MinGW Portable PortableApp

Saturday, July 25, 2009

MinGW Hack: Quickly Removing 0x01 from Makefiles

If you're using MSYS 1.0.10 (but not 1.0.11), you may get the following errors during GTK+ compilation:


gcc.exe: : No such file or directory

This happens when Makefile contains bytes of hexadecimal value 0x01. In this case, you can open the offending Makefile in vim, find every instance of ^A and manually delete them. However, locating and deleting every 0x01 from every Makefile can be a tedious task. The following steps will quickly fix this problem.


Create a script with the following contents and save it as /bin/trd001.sh.


#!/bin/sh
tr -d '\001' < $1 > /tmp/temp.txt
cp /tmp/temp.txt $1

Then, run the following command to find every Makefile and delete 0x01 from it:


find -iname Makefile -exec /bin/trd001.sh \{\} \;

Friday, July 24, 2009

Windows ME: Manually Assigning IP address to a Network Card

Sometimes, it's better to manually set up IPv4 network settings than to rely on DHCP. Such occasions often happen especially in wireless networks with weak or noisy signals. To manually assign an IP address and a gateway on Windows ME, follow these steps:



  1. Right-click My Network Places on the Desktop

    Right_click_on_Network_neighborhood
  2. Select the TCP/IP-to-Adapter binding that you want to manually set up and click Properties.

    Network Properties
  3. In the IP Address tab, assign a static IP address.

    TCP_IP_IP_Address
  4. Set up the gateway.

    TCP_IP_Gateway
  5. Optionally, set up DNS.

    TCP_IP_DNS
  6. Disable WINS Resolution.

    TCP_IP_WINS
  7. Click OK and restart Windows.

To Check your IP setting in Windows ME


To check or update your IP setting in Windows ME, use the program winipcfg:


  1. Select Run... from the Start menu.

    Run from Start menu
  2. Type winipcfg and click OK.

    ME_run

Thursday, July 23, 2009

Windows ME: Add/Remove Programs

To remove a program from Windows ME, follow these steps:



  1. Open the Start menu and select Control Panel from the Settings submenu.

    Control_Panel_in_ME_Start_menu
  2. In Control Panel, double-click on Add/Remove Programs.

    Control_Panel
  3. In the Install/Uninstall tab of the Add/Remove Programs window, select the program you want to remove.

    Add_Remove_Programs
  4. Click the Add/Remove... button.

Wednesday, July 22, 2009

Cygwin: Building GTK+ 2.6.10

In previous posts, I wrote about building GTK+ 2.6.10 and GTK+ 2.16.2 for Windows using MinGW GCC compiler. I also documented how I built Cygwin1.dll-dependent GTK+ 2.16.4 which allows porting Linux applications with little modification. Today I am building Cygwin1.dll-dependent GTK+ 2.6.10. I can't wait to compile other things like QT and wxWidgets and real applications after this!


Before compilation, I installed these Cygwin packages: binutils, gcc-core, gettext-devel, libiconv, libpng12-devel, libtool, make, pkg-config, zlib1-devel. Compiling GTK+ 2.6.10 with Cygwin takes fewer steps, compared to GTK+ 2.16.4. Following is the contents of my .profile used to compile GTK+ 2.6.10:


CC='/usr/bin/gcc-3.exe '
CFLAGS='-march=pentium2 -mtune=i586 -O2 -pipe '
LDFLAGS='-L/usr/lib -Wl,--enable-auto-image-base -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc '
export CC CFLAGS LDFLAGS



  1. Glib 2.8.6


    I compiled Glib like this:


    ./configure --prefix=/usr --disable-debug

    make

    make install

    Glib installs the following files:


    bin/cygglib-2.0-0.dll
    bin/cyggmodule-2.0-0.dll
    bin/cyggobject-2.0-0.dll
    bin/cyggthread-2.0-0.dll
    bin/glib-genmarshal.exe
    bin/glib-gettextize
    bin/glib-mkenums
    bin/gobject-query.exe
    include/glib-2.0/glib-object.h
    include/glib-2.0/glib.h
    include/glib-2.0/glib/galloca.h
    include/glib-2.0/glib/garray.h
    include/glib-2.0/glib/gasyncqueue.h
    include/glib-2.0/glib/gatomic.h
    include/glib-2.0/glib/gbacktrace.h
    include/glib-2.0/glib/gcache.h
    include/glib-2.0/glib/gcompletion.h
    include/glib-2.0/glib/gconvert.h
    include/glib-2.0/glib/gdataset.h
    include/glib-2.0/glib/gdate.h
    include/glib-2.0/glib/gdir.h
    include/glib-2.0/glib/gerror.h
    include/glib-2.0/glib/gfileutils.h
    include/glib-2.0/glib/ghash.h
    include/glib-2.0/glib/ghook.h
    include/glib-2.0/glib/gi18n-lib.h
    include/glib-2.0/glib/gi18n.h
    include/glib-2.0/glib/giochannel.h
    include/glib-2.0/glib/gkeyfile.h
    include/glib-2.0/glib/glist.h
    include/glib-2.0/glib/gmacros.h
    include/glib-2.0/glib/gmain.h
    include/glib-2.0/glib/gmappedfile.h
    include/glib-2.0/glib/gmarkup.h
    include/glib-2.0/glib/gmem.h
    include/glib-2.0/glib/gmessages.h
    include/glib-2.0/glib/gnode.h
    include/glib-2.0/glib/goption.h
    include/glib-2.0/glib/gpattern.h
    include/glib-2.0/glib/gprimes.h
    include/glib-2.0/glib/gprintf.h
    include/glib-2.0/glib/gqsort.h
    include/glib-2.0/glib/gquark.h
    include/glib-2.0/glib/gqueue.h
    include/glib-2.0/glib/grand.h
    include/glib-2.0/glib/grel.h
    include/glib-2.0/glib/gscanner.h
    include/glib-2.0/glib/gshell.h
    include/glib-2.0/glib/gslist.h
    include/glib-2.0/glib/gspawn.h
    include/glib-2.0/glib/gstdio.h
    include/glib-2.0/glib/gstrfuncs.h
    include/glib-2.0/glib/gstring.h
    include/glib-2.0/glib/gthread.h
    include/glib-2.0/glib/gthreadpool.h
    include/glib-2.0/glib/gtimer.h
    include/glib-2.0/glib/gtree.h
    include/glib-2.0/glib/gtypes.h
    include/glib-2.0/glib/gunicode.h
    include/glib-2.0/glib/gutils.h
    include/glib-2.0/glib/gwin32.h
    include/glib-2.0/gmodule.h
    include/glib-2.0/gobject/gboxed.h
    include/glib-2.0/gobject/gclosure.h
    include/glib-2.0/gobject/genums.h
    include/glib-2.0/gobject/gmarshal.h
    include/glib-2.0/gobject/gobject.h
    include/glib-2.0/gobject/gobjectnotifyqueue.c
    include/glib-2.0/gobject/gparam.h
    include/glib-2.0/gobject/gparamspecs.h
    include/glib-2.0/gobject/gsignal.h
    include/glib-2.0/gobject/gsourceclosure.h
    include/glib-2.0/gobject/gtype.h
    include/glib-2.0/gobject/gtypemodule.h
    include/glib-2.0/gobject/gtypeplugin.h
    include/glib-2.0/gobject/gvalue.h
    include/glib-2.0/gobject/gvaluearray.h
    include/glib-2.0/gobject/gvaluecollector.h
    include/glib-2.0/gobject/gvaluetypes.h
    lib/charset.alias
    lib/glib-2.0/include/glibconfig.h
    lib/libglib-2.0.dll.a
    lib/libglib-2.0.la
    lib/libgmodule-2.0.dll.a
    lib/libgmodule-2.0.la
    lib/libgobject-2.0.dll.a
    lib/libgobject-2.0.la
    lib/libgthread-2.0.dll.a
    lib/libgthread-2.0.la
    lib/pkgconfig/glib-2.0.pc
    lib/pkgconfig/gmodule-2.0.pc
    lib/pkgconfig/gmodule-export-2.0.pc
    lib/pkgconfig/gmodule-no-export-2.0.pc
    lib/pkgconfig/gobject-2.0.pc
    lib/pkgconfig/gthread-2.0.pc
    man/man1/glib-genmarshal.1
    man/man1/glib-gettextize.1
    man/man1/glib-mkenums.1
    man/man1/gobject-query.1
    share/aclocal/glib-2.0.m4
    share/aclocal/glib-gettext.m4
    share/glib-2.0/gettext/mkinstalldirs
    share/glib-2.0/gettext/po
    share/glib-2.0/gettext/po/Makefile.in.in
    share/gtk-doc/html/glib/file-name-encodings.png
    share/gtk-doc/html/glib/glib-Arrays.html
    share/gtk-doc/html/glib/glib-Asynchronous-Queues.html
    share/gtk-doc/html/glib/glib-Atomic-Operations.html
    share/gtk-doc/html/glib/glib-Automatic-String-Completion.html
    share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html
    share/gtk-doc/html/glib/glib-Basic-Types.html
    share/gtk-doc/html/glib/glib-Byte-Arrays.html
    share/gtk-doc/html/glib/glib-Byte-Order-Macros.html
    share/gtk-doc/html/glib/glib-Caches.html
    share/gtk-doc/html/glib/glib-Character-Set-Conversion.html
    share/gtk-doc/html/glib/glib-Commandline-option-parser.html
    share/gtk-doc/html/glib/glib-Datasets.html
    share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html
    share/gtk-doc/html/glib/glib-Double-ended-Queues.html
    share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html
    share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html
    share/gtk-doc/html/glib/glib-Error-Reporting.html
    share/gtk-doc/html/glib/glib-File-Utilities.html
    share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html
    share/gtk-doc/html/glib/glib-Hash-Tables.html
    share/gtk-doc/html/glib/glib-Hook-Functions.html
    share/gtk-doc/html/glib/glib-I18N.html
    share/gtk-doc/html/glib/glib-IO-Channels.html
    share/gtk-doc/html/glib/glib-Key-value-file-parser.html
    share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html
    share/gtk-doc/html/glib/glib-Lexical-Scanner.html
    share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html
    share/gtk-doc/html/glib/glib-Memory-Allocation.html
    share/gtk-doc/html/glib/glib-Memory-Allocators.html
    share/gtk-doc/html/glib/glib-Memory-Chunks.html
    share/gtk-doc/html/glib/glib-Message-Logging.html
    share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html
    share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html
    share/gtk-doc/html/glib/glib-N-ary-Trees.html
    share/gtk-doc/html/glib/glib-Numerical-Definitions.html
    share/gtk-doc/html/glib/glib-Pointer-Arrays.html
    share/gtk-doc/html/glib/glib-Quarks.html
    share/gtk-doc/html/glib/glib-Random-Numbers.html
    share/gtk-doc/html/glib/glib-Relations-and-Tuples.html
    share/gtk-doc/html/glib/glib-Shell-related-Utilities.html
    share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html
    share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html
    share/gtk-doc/html/glib/glib-Spawning-Processes.html
    share/gtk-doc/html/glib/glib-Standard-Macros.html
    share/gtk-doc/html/glib/glib-String-Chunks.html
    share/gtk-doc/html/glib/glib-String-Utility-Functions.html
    share/gtk-doc/html/glib/glib-Strings.html
    share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html
    share/gtk-doc/html/glib/glib-Thread-Pools.html
    share/gtk-doc/html/glib/glib-Threads.html
    share/gtk-doc/html/glib/glib-Timers.html
    share/gtk-doc/html/glib/glib-Trash-Stacks.html
    share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html
    share/gtk-doc/html/glib/glib-Unicode-Manipulation.html
    share/gtk-doc/html/glib/glib-Version-Information.html
    share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html
    share/gtk-doc/html/glib/glib-Windows-Compatability-Functions.html
    share/gtk-doc/html/glib/glib-building.html
    share/gtk-doc/html/glib/glib-changes.html
    share/gtk-doc/html/glib/glib-compiling.html
    share/gtk-doc/html/glib/glib-core.html
    share/gtk-doc/html/glib/glib-cross-compiling.html
    share/gtk-doc/html/glib/glib-data-types.html
    share/gtk-doc/html/glib/glib-fundamentals.html
    share/gtk-doc/html/glib/glib-gettextize.html
    share/gtk-doc/html/glib/glib-resources.html
    share/gtk-doc/html/glib/glib-running.html
    share/gtk-doc/html/glib/glib-utilities.html
    share/gtk-doc/html/glib/glib.devhelp
    share/gtk-doc/html/glib/glib.html
    share/gtk-doc/html/glib/home.png
    share/gtk-doc/html/glib/index.html
    share/gtk-doc/html/glib/index.sgml
    share/gtk-doc/html/glib/ix01.html
    share/gtk-doc/html/glib/ix02.html
    share/gtk-doc/html/glib/ix03.html
    share/gtk-doc/html/glib/ix04.html
    share/gtk-doc/html/glib/ix05.html
    share/gtk-doc/html/glib/ix06.html
    share/gtk-doc/html/glib/left.png
    share/gtk-doc/html/glib/mainloop-states.gif
    share/gtk-doc/html/glib/right.png
    share/gtk-doc/html/glib/style.css
    share/gtk-doc/html/glib/tools.html
    share/gtk-doc/html/glib/up.png
    share/gtk-doc/html/gobject/GTypeModule.html
    share/gtk-doc/html/gobject/GTypePlugin.html
    share/gtk-doc/html/gobject/ch01.html
    share/gtk-doc/html/gobject/ch01s02.html
    share/gtk-doc/html/gobject/ch02.html
    share/gtk-doc/html/gobject/ch06s03.html
    share/gtk-doc/html/gobject/ch07s02.html
    share/gtk-doc/html/gobject/ch07s03.html
    share/gtk-doc/html/gobject/chapter-gobject.html
    share/gtk-doc/html/gobject/chapter-signal.html
    share/gtk-doc/html/gobject/glib-genmarshal.html
    share/gtk-doc/html/gobject/glib-mkenums.html
    share/gtk-doc/html/gobject/glue.png
    share/gtk-doc/html/gobject/gobject-Boxed-Types.html
    share/gtk-doc/html/gobject/gobject-Closures.html
    share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html
    share/gtk-doc/html/gobject/gobject-GParamSpec.html
    share/gtk-doc/html/gobject/gobject-Generic-values.html
    share/gtk-doc/html/gobject/gobject-Signals.html
    share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html
    share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html
    share/gtk-doc/html/gobject/gobject-Type-Information.html
    share/gtk-doc/html/gobject/gobject-Value-arrays.html
    share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html
    share/gtk-doc/html/gobject/gobject-memory.html
    share/gtk-doc/html/gobject/gobject-properties.html
    share/gtk-doc/html/gobject/gobject-query.html
    share/gtk-doc/html/gobject/gobject.devhelp
    share/gtk-doc/html/gobject/gtype-conventions.html
    share/gtk-doc/html/gobject/gtype-instantiable-classed.html
    share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html
    share/gtk-doc/html/gobject/gtype-non-instantiable.html
    share/gtk-doc/html/gobject/home.png
    share/gtk-doc/html/gobject/howto-gobject-chainup.html
    share/gtk-doc/html/gobject/howto-gobject-code.html
    share/gtk-doc/html/gobject/howto-gobject-construction.html
    share/gtk-doc/html/gobject/howto-gobject-destruction.html
    share/gtk-doc/html/gobject/howto-gobject-methods.html
    share/gtk-doc/html/gobject/howto-gobject.html
    share/gtk-doc/html/gobject/howto-interface-implement.html
    share/gtk-doc/html/gobject/howto-interface-properties.html
    share/gtk-doc/html/gobject/howto-interface.html
    share/gtk-doc/html/gobject/howto-signals.html
    share/gtk-doc/html/gobject/index.html
    share/gtk-doc/html/gobject/index.sgml
    share/gtk-doc/html/gobject/ix01.html
    share/gtk-doc/html/gobject/ix02.html
    share/gtk-doc/html/gobject/ix03.html
    share/gtk-doc/html/gobject/ix04.html
    share/gtk-doc/html/gobject/ix05.html
    share/gtk-doc/html/gobject/ix06.html
    share/gtk-doc/html/gobject/left.png
    share/gtk-doc/html/gobject/pr01.html
    share/gtk-doc/html/gobject/pt01.html
    share/gtk-doc/html/gobject/pt02.html
    share/gtk-doc/html/gobject/pt03.html
    share/gtk-doc/html/gobject/right.png
    share/gtk-doc/html/gobject/rn01.html
    share/gtk-doc/html/gobject/rn02.html
    share/gtk-doc/html/gobject/signal.html
    share/gtk-doc/html/gobject/style.css
    share/gtk-doc/html/gobject/tools-ginspector.html
    share/gtk-doc/html/gobject/tools-gob.html
    share/gtk-doc/html/gobject/tools-gtkdoc.html
    share/gtk-doc/html/gobject/tools-refdb.html
    share/gtk-doc/html/gobject/up.png
    share/locale/am/LC_MESSAGES/glib20.mo
    share/locale/ar/LC_MESSAGES/glib20.mo
    share/locale/az/LC_MESSAGES/glib20.mo
    share/locale/be/LC_MESSAGES/glib20.mo
    share/locale/bg/LC_MESSAGES/glib20.mo
    share/locale/bn/LC_MESSAGES/glib20.mo
    share/locale/bs/LC_MESSAGES/glib20.mo
    share/locale/ca/LC_MESSAGES/glib20.mo
    share/locale/cs/LC_MESSAGES/glib20.mo
    share/locale/cy/LC_MESSAGES/glib20.mo
    share/locale/da/LC_MESSAGES/glib20.mo
    share/locale/de/LC_MESSAGES/glib20.mo
    share/locale/el/LC_MESSAGES/glib20.mo
    share/locale/en_CA/LC_MESSAGES/glib20.mo
    share/locale/en_GB/LC_MESSAGES/glib20.mo
    share/locale/eo/LC_MESSAGES/glib20.mo
    share/locale/es/LC_MESSAGES/glib20.mo
    share/locale/et/LC_MESSAGES/glib20.mo
    share/locale/eu/LC_MESSAGES/glib20.mo
    share/locale/fa/LC_MESSAGES/glib20.mo
    share/locale/fi/LC_MESSAGES/glib20.mo
    share/locale/fr/LC_MESSAGES/glib20.mo
    share/locale/ga/LC_MESSAGES/glib20.mo
    share/locale/gl/LC_MESSAGES/glib20.mo
    share/locale/gu/LC_MESSAGES/glib20.mo
    share/locale/he/LC_MESSAGES/glib20.mo
    share/locale/hi/LC_MESSAGES/glib20.mo
    share/locale/hr/LC_MESSAGES/glib20.mo
    share/locale/hu/LC_MESSAGES/glib20.mo
    share/locale/id/LC_MESSAGES/glib20.mo
    share/locale/is/LC_MESSAGES/glib20.mo
    share/locale/it/LC_MESSAGES/glib20.mo
    share/locale/ja/LC_MESSAGES/glib20.mo
    share/locale/ko/LC_MESSAGES/glib20.mo
    share/locale/lt/LC_MESSAGES/glib20.mo
    share/locale/lv/LC_MESSAGES/glib20.mo
    share/locale/mk/LC_MESSAGES/glib20.mo
    share/locale/ml/LC_MESSAGES/glib20.mo
    share/locale/mn/LC_MESSAGES/glib20.mo
    share/locale/ms/LC_MESSAGES/glib20.mo
    share/locale/nb/LC_MESSAGES/glib20.mo
    share/locale/ne/LC_MESSAGES/glib20.mo
    share/locale/nl/LC_MESSAGES/glib20.mo
    share/locale/nn/LC_MESSAGES/glib20.mo
    share/locale/no/LC_MESSAGES/glib20.mo
    share/locale/or/LC_MESSAGES/glib20.mo
    share/locale/pa/LC_MESSAGES/glib20.mo
    share/locale/pl/LC_MESSAGES/glib20.mo
    share/locale/pt/LC_MESSAGES/glib20.mo
    share/locale/pt_BR/LC_MESSAGES/glib20.mo
    share/locale/ro/LC_MESSAGES/glib20.mo
    share/locale/ru/LC_MESSAGES/glib20.mo
    share/locale/rw/LC_MESSAGES/glib20.mo
    share/locale/sk/LC_MESSAGES/glib20.mo
    share/locale/sl/LC_MESSAGES/glib20.mo
    share/locale/sq/LC_MESSAGES/glib20.mo
    share/locale/sr/LC_MESSAGES/glib20.mo
    share/locale/sr@Latn/LC_MESSAGES/glib20.mo
    share/locale/sr@ije/LC_MESSAGES/glib20.mo
    share/locale/sv/LC_MESSAGES/glib20.mo
    share/locale/ta/LC_MESSAGES/glib20.mo
    share/locale/te/LC_MESSAGES/glib20.mo
    share/locale/th/LC_MESSAGES/glib20.mo
    share/locale/tl/LC_MESSAGES/glib20.mo
    share/locale/tr/LC_MESSAGES/glib20.mo
    share/locale/uk/LC_MESSAGES/glib20.mo
    share/locale/vi/LC_MESSAGES/glib20.mo
    share/locale/wa/LC_MESSAGES/glib20.mo
    share/locale/xh/LC_MESSAGES/glib20.mo
    share/locale/yi/LC_MESSAGES/glib20.mo
    share/locale/zh_CN/LC_MESSAGES/glib20.mo
    share/locale/zh_HK/LC_MESSAGES/glib20.mo
    share/locale/zh_TW/LC_MESSAGES/glib20.mo


  2. JPEG Library 7 and TIFF 3.8.2


    Support for JPEG and TIFF can be compiled as follows:


    ./configure --prefix=/usr

    make

    make install

    The following files are installed for JPEG support:


    bin/cjpeg.exe
    bin/cygjpeg-7.dll
    bin/djpeg.exe
    bin/jpegtran.exe
    bin/rdjpgcom.exe
    bin/wrjpgcom.exe
    include/jconfig.h
    include/jerror.h
    include/jmorecfg.h
    include/jpeglib.h
    lib/libjpeg.a
    lib/libjpeg.dll.a
    lib/libjpeg.la
    share/man/man1/cjpeg.1
    share/man/man1/djpeg.1
    share/man/man1/jpegtran.1
    share/man/man1/rdjpgcom.1
    share/man/man1/wrjpgcom.1

    The following files are installed for TIFF support:


    bin/bmp2tiff.exe
    bin/cygtiff-3.dll
    bin/cygtiffxx-3.dll
    bin/fax2ps.exe
    bin/fax2tiff.exe
    bin/gif2tiff.exe
    bin/pal2rgb.exe
    bin/ppm2tiff.exe
    bin/ras2tiff.exe
    bin/raw2tiff.exe
    bin/rgb2ycbcr.exe
    bin/thumbnail.exe
    bin/tiff2bw.exe
    bin/tiff2pdf.exe
    bin/tiff2ps.exe
    bin/tiff2rgba.exe
    bin/tiffcmp.exe
    bin/tiffcp.exe
    bin/tiffdither.exe
    bin/tiffdump.exe
    bin/tiffinfo.exe
    bin/tiffmedian.exe
    bin/tiffset.exe
    bin/tiffsplit.exe
    include/tiff.h
    include/tiffconf.h
    include/tiffio.h
    include/tiffio.hxx
    include/tiffvers.h
    lib/libtiff.a
    lib/libtiff.dll.a
    lib/libtiff.la
    lib/libtiffxx.a
    lib/libtiffxx.dll.a
    lib/libtiffxx.la
    man/man1/bmp2tiff.1
    man/man1/fax2ps.1
    man/man1/fax2tiff.1
    man/man1/gif2tiff.1
    man/man1/pal2rgb.1
    man/man1/ppm2tiff.1
    man/man1/ras2tiff.1
    man/man1/raw2tiff.1
    man/man1/rgb2ycbcr.1
    man/man1/sgi2tiff.1
    man/man1/thumbnail.1
    man/man1/tiff2bw.1
    man/man1/tiff2pdf.1
    man/man1/tiff2ps.1
    man/man1/tiff2rgba.1
    man/man1/tiffcmp.1
    man/man1/tiffcp.1
    man/man1/tiffdither.1
    man/man1/tiffdump.1
    man/man1/tiffgt.1
    man/man1/tiffinfo.1
    man/man1/tiffmedian.1
    man/man1/tiffset.1
    man/man1/tiffsplit.1
    man/man1/tiffsv.1
    man/man3/TIFFClose.3tiff
    man/man3/TIFFDataWidth.3tiff
    man/man3/TIFFError.3tiff
    man/man3/TIFFFlush.3tiff
    man/man3/TIFFGetField.3tiff
    man/man3/TIFFOpen.3tiff
    man/man3/TIFFPrintDirectory.3tiff
    man/man3/TIFFRGBAImage.3tiff
    man/man3/TIFFReadDirectory.3tiff
    man/man3/TIFFReadEncodedStrip.3tiff
    man/man3/TIFFReadEncodedTile.3tiff
    man/man3/TIFFReadRGBAImage.3tiff
    man/man3/TIFFReadRGBAStrip.3tiff
    man/man3/TIFFReadRGBATile.3tiff
    man/man3/TIFFReadRawStrip.3tiff
    man/man3/TIFFReadRawTile.3tiff
    man/man3/TIFFReadScanline.3tiff
    man/man3/TIFFReadTile.3tiff
    man/man3/TIFFSetDirectory.3tiff
    man/man3/TIFFSetField.3tiff
    man/man3/TIFFWarning.3tiff
    man/man3/TIFFWriteDirectory.3tiff
    man/man3/TIFFWriteEncodedStrip.3tiff
    man/man3/TIFFWriteEncodedTile.3tiff
    man/man3/TIFFWriteRawStrip.3tiff
    man/man3/TIFFWriteRawTile.3tiff
    man/man3/TIFFWriteScanline.3tiff
    man/man3/TIFFWriteTile.3tiff
    man/man3/TIFFbuffer.3tiff
    man/man3/TIFFcodec.3tiff
    man/man3/TIFFcolor.3tiff
    man/man3/TIFFmemory.3tiff
    man/man3/TIFFquery.3tiff
    man/man3/TIFFsize.3tiff
    man/man3/TIFFstrip.3tiff
    man/man3/TIFFswab.3tiff
    man/man3/TIFFtile.3tiff
    man/man3/libtiff.3tiff
    share/doc/tiff-3.8.2/COPYRIGHT
    share/doc/tiff-3.8.2/ChangeLog
    share/doc/tiff-3.8.2/README
    share/doc/tiff-3.8.2/RELEASE-DATE
    share/doc/tiff-3.8.2/TODO
    share/doc/tiff-3.8.2/VERSION
    share/doc/tiff-3.8.2/html/TIFFTechNote2.html
    share/doc/tiff-3.8.2/html/addingtags.html
    share/doc/tiff-3.8.2/html/bugs.html
    share/doc/tiff-3.8.2/html/build.html
    share/doc/tiff-3.8.2/html/contrib.html
    share/doc/tiff-3.8.2/html/document.html
    share/doc/tiff-3.8.2/html/images.html
    share/doc/tiff-3.8.2/html/images/back.gif
    share/doc/tiff-3.8.2/html/images/bali.jpg
    share/doc/tiff-3.8.2/html/images/cat.gif
    share/doc/tiff-3.8.2/html/images/cover.jpg
    share/doc/tiff-3.8.2/html/images/cramps.gif
    share/doc/tiff-3.8.2/html/images/dave.gif
    share/doc/tiff-3.8.2/html/images/info.gif
    share/doc/tiff-3.8.2/html/images/jello.jpg
    share/doc/tiff-3.8.2/html/images/jim.gif
    share/doc/tiff-3.8.2/html/images/note.gif
    share/doc/tiff-3.8.2/html/images/oxford.gif
    share/doc/tiff-3.8.2/html/images/quad.jpg
    share/doc/tiff-3.8.2/html/images/ring.gif
    share/doc/tiff-3.8.2/html/images/smallliz.jpg
    share/doc/tiff-3.8.2/html/images/strike.gif
    share/doc/tiff-3.8.2/html/images/warning.gif
    share/doc/tiff-3.8.2/html/index.html
    share/doc/tiff-3.8.2/html/internals.html
    share/doc/tiff-3.8.2/html/intro.html
    share/doc/tiff-3.8.2/html/libtiff.html
    share/doc/tiff-3.8.2/html/man/TIFFClose.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFDataWidth.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFError.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFFlush.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFGetField.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFOpen.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFPrintDirectory.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFRGBAImage.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadDirectory.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadEncodedStrip.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadEncodedTile.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadRGBAImage.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadRGBAStrip.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadRGBATile.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadRawStrip.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadRawTile.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadScanline.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFReadTile.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFSetDirectory.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFSetField.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFWarning.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFWriteDirectory.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFWriteEncodedStrip.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFWriteEncodedTile.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFWriteRawStrip.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFWriteRawTile.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFWriteScanline.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFWriteTile.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFbuffer.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFcodec.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFcolor.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFmemory.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFquery.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFsize.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFstrip.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFswab.3tiff.html
    share/doc/tiff-3.8.2/html/man/TIFFtile.3tiff.html
    share/doc/tiff-3.8.2/html/man/fax2ps.1.html
    share/doc/tiff-3.8.2/html/man/fax2tiff.1.html
    share/doc/tiff-3.8.2/html/man/gif2tiff.1.html
    share/doc/tiff-3.8.2/html/man/index.html
    share/doc/tiff-3.8.2/html/man/libtiff.3tiff.html
    share/doc/tiff-3.8.2/html/man/pal2rgb.1.html
    share/doc/tiff-3.8.2/html/man/ppm2tiff.1.html
    share/doc/tiff-3.8.2/html/man/ras2tiff.1.html
    share/doc/tiff-3.8.2/html/man/raw2tiff.1.html
    share/doc/tiff-3.8.2/html/man/rgb2ycbcr.1.html
    share/doc/tiff-3.8.2/html/man/sgi2tiff.1.html
    share/doc/tiff-3.8.2/html/man/thumbnail.1.html
    share/doc/tiff-3.8.2/html/man/tiff2bw.1.html
    share/doc/tiff-3.8.2/html/man/tiff2pdf.1.html
    share/doc/tiff-3.8.2/html/man/tiff2ps.1.html
    share/doc/tiff-3.8.2/html/man/tiff2rgba.1.html
    share/doc/tiff-3.8.2/html/man/tiffcmp.1.html
    share/doc/tiff-3.8.2/html/man/tiffcp.1.html
    share/doc/tiff-3.8.2/html/man/tiffdither.1.html
    share/doc/tiff-3.8.2/html/man/tiffdump.1.html
    share/doc/tiff-3.8.2/html/man/tiffgt.1.html
    share/doc/tiff-3.8.2/html/man/tiffinfo.1.html
    share/doc/tiff-3.8.2/html/man/tiffmedian.1.html
    share/doc/tiff-3.8.2/html/man/tiffset.1.html
    share/doc/tiff-3.8.2/html/man/tiffsplit.1.html
    share/doc/tiff-3.8.2/html/man/tiffsv.1.html
    share/doc/tiff-3.8.2/html/misc.html
    share/doc/tiff-3.8.2/html/support.html
    share/doc/tiff-3.8.2/html/tools.html
    share/doc/tiff-3.8.2/html/v3.4beta007.html
    share/doc/tiff-3.8.2/html/v3.4beta016.html
    share/doc/tiff-3.8.2/html/v3.4beta018.html
    share/doc/tiff-3.8.2/html/v3.4beta024.html
    share/doc/tiff-3.8.2/html/v3.4beta028.html
    share/doc/tiff-3.8.2/html/v3.4beta029.html
    share/doc/tiff-3.8.2/html/v3.4beta031.html
    share/doc/tiff-3.8.2/html/v3.4beta032.html
    share/doc/tiff-3.8.2/html/v3.4beta033.html
    share/doc/tiff-3.8.2/html/v3.4beta034.html
    share/doc/tiff-3.8.2/html/v3.4beta035.html
    share/doc/tiff-3.8.2/html/v3.4beta036.html
    share/doc/tiff-3.8.2/html/v3.5.1.html
    share/doc/tiff-3.8.2/html/v3.5.2.html
    share/doc/tiff-3.8.2/html/v3.5.3.html
    share/doc/tiff-3.8.2/html/v3.5.4.html
    share/doc/tiff-3.8.2/html/v3.5.5.html
    share/doc/tiff-3.8.2/html/v3.5.6-beta.html
    share/doc/tiff-3.8.2/html/v3.5.7.html
    share/doc/tiff-3.8.2/html/v3.6.0.html
    share/doc/tiff-3.8.2/html/v3.6.1.html
    share/doc/tiff-3.8.2/html/v3.7.0.html
    share/doc/tiff-3.8.2/html/v3.7.0alpha.html
    share/doc/tiff-3.8.2/html/v3.7.0beta.html
    share/doc/tiff-3.8.2/html/v3.7.0beta2.html
    share/doc/tiff-3.8.2/html/v3.7.1.html
    share/doc/tiff-3.8.2/html/v3.7.2.html
    share/doc/tiff-3.8.2/html/v3.7.3.html
    share/doc/tiff-3.8.2/html/v3.7.4.html
    share/doc/tiff-3.8.2/html/v3.8.0.html
    share/doc/tiff-3.8.2/html/v3.8.1.html
    share/doc/tiff-3.8.2/html/v3.8.2.html


  3. ATK 1.10.3


    Download ATK from ftp.gnome.org and compile it like this:


    ./configure --prefix=/usr

    make

    make install

    ATK installs the following files:


    bin/cygatk-1.0-0.dll
    include/atk-1.0/atk/atk-enum-types.h
    include/atk-1.0/atk/atk.h
    include/atk-1.0/atk/atkaction.h
    include/atk-1.0/atk/atkcomponent.h
    include/atk-1.0/atk/atkdocument.h
    include/atk-1.0/atk/atkeditabletext.h
    include/atk-1.0/atk/atkgobjectaccessible.h
    include/atk-1.0/atk/atkhyperlink.h
    include/atk-1.0/atk/atkhypertext.h
    include/atk-1.0/atk/atkimage.h
    include/atk-1.0/atk/atknoopobject.h
    include/atk-1.0/atk/atknoopobjectfactory.h
    include/atk-1.0/atk/atkobject.h
    include/atk-1.0/atk/atkobjectfactory.h
    include/atk-1.0/atk/atkregistry.h
    include/atk-1.0/atk/atkrelation.h
    include/atk-1.0/atk/atkrelationset.h
    include/atk-1.0/atk/atkrelationtype.h
    include/atk-1.0/atk/atkselection.h
    include/atk-1.0/atk/atkstate.h
    include/atk-1.0/atk/atkstateset.h
    include/atk-1.0/atk/atkstreamablecontent.h
    include/atk-1.0/atk/atktable.h
    include/atk-1.0/atk/atktext.h
    include/atk-1.0/atk/atkutil.h
    include/atk-1.0/atk/atkvalue.h
    lib/libatk-1.0.dll.a
    lib/libatk-1.0.la
    lib/pkgconfig/atk.pc
    share/gtk-doc/html/atk/home.png
    share/gtk-doc/html/atk/left.png
    share/gtk-doc/html/atk/right.png
    share/gtk-doc/html/atk/up.png
    share/locale/af/LC_MESSAGES/atk10.mo
    share/locale/am/LC_MESSAGES/atk10.mo
    share/locale/ar/LC_MESSAGES/atk10.mo
    share/locale/as/LC_MESSAGES/atk10.mo
    share/locale/az/LC_MESSAGES/atk10.mo
    share/locale/be/LC_MESSAGES/atk10.mo
    share/locale/bg/LC_MESSAGES/atk10.mo
    share/locale/bn/LC_MESSAGES/atk10.mo
    share/locale/bs/LC_MESSAGES/atk10.mo
    share/locale/ca/LC_MESSAGES/atk10.mo
    share/locale/cs/LC_MESSAGES/atk10.mo
    share/locale/cy/LC_MESSAGES/atk10.mo
    share/locale/da/LC_MESSAGES/atk10.mo
    share/locale/de/LC_MESSAGES/atk10.mo
    share/locale/el/LC_MESSAGES/atk10.mo
    share/locale/en_CA/LC_MESSAGES/atk10.mo
    share/locale/en_GB/LC_MESSAGES/atk10.mo
    share/locale/eo/LC_MESSAGES/atk10.mo
    share/locale/es/LC_MESSAGES/atk10.mo
    share/locale/et/LC_MESSAGES/atk10.mo
    share/locale/eu/LC_MESSAGES/atk10.mo
    share/locale/fa/LC_MESSAGES/atk10.mo
    share/locale/fi/LC_MESSAGES/atk10.mo
    share/locale/fr/LC_MESSAGES/atk10.mo
    share/locale/ga/LC_MESSAGES/atk10.mo
    share/locale/gl/LC_MESSAGES/atk10.mo
    share/locale/gu/LC_MESSAGES/atk10.mo
    share/locale/he/LC_MESSAGES/atk10.mo
    share/locale/hi/LC_MESSAGES/atk10.mo
    share/locale/hr/LC_MESSAGES/atk10.mo
    share/locale/hu/LC_MESSAGES/atk10.mo
    share/locale/id/LC_MESSAGES/atk10.mo
    share/locale/is/LC_MESSAGES/atk10.mo
    share/locale/it/LC_MESSAGES/atk10.mo
    share/locale/ja/LC_MESSAGES/atk10.mo
    share/locale/kn/LC_MESSAGES/atk10.mo
    share/locale/ko/LC_MESSAGES/atk10.mo
    share/locale/li/LC_MESSAGES/atk10.mo
    share/locale/lt/LC_MESSAGES/atk10.mo
    share/locale/lv/LC_MESSAGES/atk10.mo
    share/locale/mk/LC_MESSAGES/atk10.mo
    share/locale/ml/LC_MESSAGES/atk10.mo
    share/locale/mn/LC_MESSAGES/atk10.mo
    share/locale/mr/LC_MESSAGES/atk10.mo
    share/locale/ms/LC_MESSAGES/atk10.mo
    share/locale/nb/LC_MESSAGES/atk10.mo
    share/locale/ne/LC_MESSAGES/atk10.mo
    share/locale/nl/LC_MESSAGES/atk10.mo
    share/locale/nn/LC_MESSAGES/atk10.mo
    share/locale/no/LC_MESSAGES/atk10.mo
    share/locale/pa/LC_MESSAGES/atk10.mo
    share/locale/pl/LC_MESSAGES/atk10.mo
    share/locale/pt/LC_MESSAGES/atk10.mo
    share/locale/pt_BR/LC_MESSAGES/atk10.mo
    share/locale/ro/LC_MESSAGES/atk10.mo
    share/locale/ru/LC_MESSAGES/atk10.mo
    share/locale/rw/LC_MESSAGES/atk10.mo
    share/locale/sk/LC_MESSAGES/atk10.mo
    share/locale/sl/LC_MESSAGES/atk10.mo
    share/locale/sq/LC_MESSAGES/atk10.mo
    share/locale/sr/LC_MESSAGES/atk10.mo
    share/locale/sr@Latn/LC_MESSAGES/atk10.mo
    share/locale/sr@ije/LC_MESSAGES/atk10.mo
    share/locale/sv/LC_MESSAGES/atk10.mo
    share/locale/ta/LC_MESSAGES/atk10.mo
    share/locale/th/LC_MESSAGES/atk10.mo
    share/locale/tk/LC_MESSAGES/atk10.mo
    share/locale/tr/LC_MESSAGES/atk10.mo
    share/locale/ug/LC_MESSAGES/atk10.mo
    share/locale/uk/LC_MESSAGES/atk10.mo
    share/locale/vi/LC_MESSAGES/atk10.mo
    share/locale/wa/LC_MESSAGES/atk10.mo
    share/locale/xh/LC_MESSAGES/atk10.mo
    share/locale/yi/LC_MESSAGES/atk10.mo
    share/locale/zh_CN/LC_MESSAGES/atk10.mo
    share/locale/zh_TW/LC_MESSAGES/atk10.mo


  4. Pango 1.10.4


    I compiled Pango like this:


    ./configure --prefix=/usr --sysconfdir=/etc --with-included-modules=yes

    make

    make install

    Pango installs the following files:


    bin/cygpango-1.0-0.dll
    bin/cygpangowin32-1.0-0.dll
    bin/pango-querymodules.exe
    include/pango-1.0/pango/pango-attributes.h
    include/pango-1.0/pango/pango-break.h
    include/pango-1.0/pango/pango-context.h
    include/pango-1.0/pango/pango-coverage.h
    include/pango-1.0/pango/pango-engine.h
    include/pango-1.0/pango/pango-enum-types.h
    include/pango-1.0/pango/pango-font.h
    include/pango-1.0/pango/pango-fontmap.h
    include/pango-1.0/pango/pango-fontset.h
    include/pango-1.0/pango/pango-glyph-item.h
    include/pango-1.0/pango/pango-glyph.h
    include/pango-1.0/pango/pango-item.h
    include/pango-1.0/pango/pango-layout.h
    include/pango-1.0/pango/pango-modules.h
    include/pango-1.0/pango/pango-renderer.h
    include/pango-1.0/pango/pango-script.h
    include/pango-1.0/pango/pango-tabs.h
    include/pango-1.0/pango/pango-types.h
    include/pango-1.0/pango/pango-utils.h
    include/pango-1.0/pango/pango.h
    include/pango-1.0/pango/pangofc-font.h
    include/pango-1.0/pango/pangofc-fontmap.h
    include/pango-1.0/pango/pangowin32.h
    lib/libpango-1.0.a
    lib/libpango-1.0.dll.a
    lib/libpango-1.0.la
    lib/libpangowin32-1.0.a
    lib/libpangowin32-1.0.dll.a
    lib/libpangowin32-1.0.la
    lib/pkgconfig/pango.pc
    lib/pkgconfig/pangowin32.pc
    man/man1/pango-querymodules.1
    share/gtk-doc/html/pango/PangoEngineLang.html
    share/gtk-doc/html/pango/PangoEngineShape.html
    share/gtk-doc/html/pango/PangoFcDecoder.html
    share/gtk-doc/html/pango/PangoFcFont.html
    share/gtk-doc/html/pango/PangoFcFontMap.html
    share/gtk-doc/html/pango/PangoMarkupFormat.html
    share/gtk-doc/html/pango/home.png
    share/gtk-doc/html/pango/index.html
    share/gtk-doc/html/pango/index.sgml
    share/gtk-doc/html/pango/ix01.html
    share/gtk-doc/html/pango/layout.gif
    share/gtk-doc/html/pango/left.png
    share/gtk-doc/html/pango/lowlevel.html
    share/gtk-doc/html/pango/pango-Cairo-Rendering.html
    share/gtk-doc/html/pango/pango-Coverage-Maps.html
    share/gtk-doc/html/pango/pango-Engines.html
    share/gtk-doc/html/pango/pango-Fonts.html
    share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html
    share/gtk-doc/html/pango/pango-Glyph-Storage.html
    share/gtk-doc/html/pango/pango-Layout-Objects.html
    share/gtk-doc/html/pango/pango-Modules.html
    share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html
    share/gtk-doc/html/pango/pango-Scripts.html
    share/gtk-doc/html/pango/pango-Tab-Stops.html
    share/gtk-doc/html/pango/pango-Text-Attributes.html
    share/gtk-doc/html/pango/pango-Text-Processing.html
    share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html
    share/gtk-doc/html/pango/pango-X-Fonts-and-Rendering.html
    share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html
    share/gtk-doc/html/pango/pango-querymodules.html
    share/gtk-doc/html/pango/pango.devhelp
    share/gtk-doc/html/pango/pango.html
    share/gtk-doc/html/pango/rendering.html
    share/gtk-doc/html/pango/right.png
    share/gtk-doc/html/pango/rotated-text.png
    share/gtk-doc/html/pango/style.css
    share/gtk-doc/html/pango/tools.html
    share/gtk-doc/html/pango/up.png

    Compile may halt due to missing cygpango-1.0-0.dll and cygpangowin32-1.0-0.dll. In that case, manually build those missing dll's like this:


    cd ~/pango-1.10.4/pango/.libs

    mkdir pango pangowin

    cp *.o pango

    mv pango/*win32*.o pangowin

    cd pango

    ar x ../libpango-1.0.a

    cd ..

    dllwrap --export-all-symbols --add-stdcall-alias -o cygpango-1.0-0.dll --dllname cygpango-1.0-0.dll --output-lib libpango-1.0.dll.a pango/*.o -L/usr/lib -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -luser32 -lkernel32 -lintl -liconv

    cd pangowin

    ar x ../libpangowin32-1.0.a

    cd ..

    dllwrap --export-all-symbols --add-stdcall-alias -o cygpangowin32-1.0-0.dll --dllname cygpangowin32-1.0-0.dll --output-lib libpangowin32-1.0.dll.a pangowin/*.o -L. -lpango-1.0 -L/usr/lib -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -luser32 -lkernel32 -lintl -liconv -lgdi32

    Then, modify libpango-1.0.la:


    # The name that we can dlopen(3).
    dlname='cygpango-1.0-0.dll'

    # Names of this library.
    library_names='libpango-1.0.dll.a'

    and also libpangowin32-1.0.la:


    # The name that we can dlopen(3).
    dlname='cygpangowin32-1.0-0.dll'

    # Names of this library.
    library_names='libpangowin32-1.0.dll.a'

    Then, modify libpango-1.0.lai and libpangowin32-1.0.lai in ~/pango-1.10.4/pango/.libs, likewise. However, on the dlname line, append ../bin/ to the filename, for example, dlname='../bin/cygpango-1.0-0.dll' for libpango-1.0.lai.



  5. GTK+ 2.6.10


    At last, we're ready to compile GTK+ 2.6.10. Download gtk2-x11-2.6.10-1-src.tar.bz2 from a Cygwin mirror. Unpack the GTK+ source and apply the included patch.


    cd $HOME
    tar xjOf ~/gtk2-x11-2.6.10-1-src.tar.bz2 gtk+-2.6.10.tar.bz2 | tar xjvf -
    cd gtk+-2.6.10/
    tar xjOf ~/gtk2-x11-2.6.10-1-src.tar.bz2 gtk2-x11-2.6.10-1.patch | patch -p1 -l

    Then, I built GTK+ 2.6.10 with the following commands:


    ./configure --prefix=/usr --sysconfdir=/etc --disable-static --disable-modules --with-included-loaders=yes --with-gdktarget=win32 --disable-debug WINDRES=/usr/bin/windres

    make

    make install

    At first, I received the error “libtool: link: more than one -exported-symbols argument is not allowed”. Apparently, -export-symbols ./gdk.def and -export-symbols-regex couldn't coexist. So I opened gdk/Makefile and made the following change (basically, commenting out -export-symbols):


    libgdk_win32_2_0_la_LDFLAGS = $(LDADD) 
    #-export-symbols gdk.def

    If an error occurs due to missing fontconfig library, delete -lfontconfig from gtk/Makefile. Then, resume make. Compilation will continue until an error complains about missing X11 headers. Just ignore the error and go on with make install. “make install” may forget to install the following pkgconfig data. In that case, manually copy them.


    /usr/lib/pkgconfig/gdk-2.0.pc

    /usr/lib/pkgconfig/gdk-pixbuf-2.0.pc

    /usr/lib/pkgconfig/gdk-win32-2.0.pc

    /usr/lib/pkgconfig/gtk+-2.0.pc

    /usr/lib/pkgconfig/gtk+-win32-2.0.pc

    The following files are installed:


    bin/cyggdk-win32-2.0-0.dll
    bin/cyggdk_pixbuf-2.0-0.dll
    bin/cyggtk-win32-2.0-0.dll
    bin/gdk-pixbuf-csource.exe
    bin/gdk-pixbuf-query-loaders.exe
    bin/gtk-demo.exe
    bin/gtk-query-immodules-2.0.exe
    bin/gtk-update-icon-cache.exe
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-marshal.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixdata.h
    include/gtk-2.0/gdk/gdk.h
    include/gtk-2.0/gdk/gdkalias.h
    include/gtk-2.0/gdk/gdkcolor.h
    include/gtk-2.0/gdk/gdkcursor.h
    include/gtk-2.0/gdk/gdkdisplay.h
    include/gtk-2.0/gdk/gdkdisplaymanager.h
    include/gtk-2.0/gdk/gdkdnd.h
    include/gtk-2.0/gdk/gdkdrawable.h
    include/gtk-2.0/gdk/gdkenumtypes.h
    include/gtk-2.0/gdk/gdkevents.h
    include/gtk-2.0/gdk/gdkfont.h
    include/gtk-2.0/gdk/gdkgc.h
    include/gtk-2.0/gdk/gdki18n.h
    include/gtk-2.0/gdk/gdkimage.h
    include/gtk-2.0/gdk/gdkinput.h
    include/gtk-2.0/gdk/gdkkeys.h
    include/gtk-2.0/gdk/gdkkeysyms.h
    include/gtk-2.0/gdk/gdkpango.h
    include/gtk-2.0/gdk/gdkpixbuf.h
    include/gtk-2.0/gdk/gdkpixmap.h
    include/gtk-2.0/gdk/gdkprivate.h
    include/gtk-2.0/gdk/gdkproperty.h
    include/gtk-2.0/gdk/gdkregion.h
    include/gtk-2.0/gdk/gdkrgb.h
    include/gtk-2.0/gdk/gdkscreen.h
    include/gtk-2.0/gdk/gdkselection.h
    include/gtk-2.0/gdk/gdkspawn.h
    include/gtk-2.0/gdk/gdktypes.h
    include/gtk-2.0/gdk/gdkvisual.h
    include/gtk-2.0/gdk/gdkwin32.h
    include/gtk-2.0/gdk/gdkwindow.h
    include/gtk-2.0/gtk/gtk.h
    include/gtk-2.0/gtk/gtkaboutdialog.h
    include/gtk-2.0/gtk/gtkaccelgroup.h
    include/gtk-2.0/gtk/gtkaccellabel.h
    include/gtk-2.0/gtk/gtkaccelmap.h
    include/gtk-2.0/gtk/gtkaccessible.h
    include/gtk-2.0/gtk/gtkaction.h
    include/gtk-2.0/gtk/gtkactiongroup.h
    include/gtk-2.0/gtk/gtkadjustment.h
    include/gtk-2.0/gtk/gtkalignment.h
    include/gtk-2.0/gtk/gtkarrow.h
    include/gtk-2.0/gtk/gtkaspectframe.h
    include/gtk-2.0/gtk/gtkbbox.h
    include/gtk-2.0/gtk/gtkbin.h
    include/gtk-2.0/gtk/gtkbindings.h
    include/gtk-2.0/gtk/gtkbox.h
    include/gtk-2.0/gtk/gtkbutton.h
    include/gtk-2.0/gtk/gtkcalendar.h
    include/gtk-2.0/gtk/gtkcelleditable.h
    include/gtk-2.0/gtk/gtkcelllayout.h
    include/gtk-2.0/gtk/gtkcellrenderer.h
    include/gtk-2.0/gtk/gtkcellrenderercombo.h
    include/gtk-2.0/gtk/gtkcellrendererpixbuf.h
    include/gtk-2.0/gtk/gtkcellrendererprogress.h
    include/gtk-2.0/gtk/gtkcellrenderertext.h
    include/gtk-2.0/gtk/gtkcellrenderertoggle.h
    include/gtk-2.0/gtk/gtkcellview.h
    include/gtk-2.0/gtk/gtkcheckbutton.h
    include/gtk-2.0/gtk/gtkcheckmenuitem.h
    include/gtk-2.0/gtk/gtkclipboard.h
    include/gtk-2.0/gtk/gtkclist.h
    include/gtk-2.0/gtk/gtkcolorbutton.h
    include/gtk-2.0/gtk/gtkcolorsel.h
    include/gtk-2.0/gtk/gtkcolorseldialog.h
    include/gtk-2.0/gtk/gtkcombo.h
    include/gtk-2.0/gtk/gtkcombobox.h
    include/gtk-2.0/gtk/gtkcomboboxentry.h
    include/gtk-2.0/gtk/gtkcontainer.h
    include/gtk-2.0/gtk/gtkctree.h
    include/gtk-2.0/gtk/gtkcurve.h
    include/gtk-2.0/gtk/gtkdebug.h
    include/gtk-2.0/gtk/gtkdialog.h
    include/gtk-2.0/gtk/gtkdnd.h
    include/gtk-2.0/gtk/gtkdrawingarea.h
    include/gtk-2.0/gtk/gtkeditable.h
    include/gtk-2.0/gtk/gtkentry.h
    include/gtk-2.0/gtk/gtkentrycompletion.h
    include/gtk-2.0/gtk/gtkenums.h
    include/gtk-2.0/gtk/gtkeventbox.h
    include/gtk-2.0/gtk/gtkexpander.h
    include/gtk-2.0/gtk/gtkfilechooser.h
    include/gtk-2.0/gtk/gtkfilechooserbutton.h
    include/gtk-2.0/gtk/gtkfilechooserdialog.h
    include/gtk-2.0/gtk/gtkfilechooserwidget.h
    include/gtk-2.0/gtk/gtkfilefilter.h
    include/gtk-2.0/gtk/gtkfilesel.h
    include/gtk-2.0/gtk/gtkfilesystem.h
    include/gtk-2.0/gtk/gtkfixed.h
    include/gtk-2.0/gtk/gtkfontbutton.h
    include/gtk-2.0/gtk/gtkfontsel.h
    include/gtk-2.0/gtk/gtkframe.h
    include/gtk-2.0/gtk/gtkgamma.h
    include/gtk-2.0/gtk/gtkgc.h
    include/gtk-2.0/gtk/gtkhandlebox.h
    include/gtk-2.0/gtk/gtkhbbox.h
    include/gtk-2.0/gtk/gtkhbox.h
    include/gtk-2.0/gtk/gtkhpaned.h
    include/gtk-2.0/gtk/gtkhruler.h
    include/gtk-2.0/gtk/gtkhscale.h
    include/gtk-2.0/gtk/gtkhscrollbar.h
    include/gtk-2.0/gtk/gtkhseparator.h
    include/gtk-2.0/gtk/gtkiconfactory.h
    include/gtk-2.0/gtk/gtkicontheme.h
    include/gtk-2.0/gtk/gtkiconview.h
    include/gtk-2.0/gtk/gtkimage.h
    include/gtk-2.0/gtk/gtkimagemenuitem.h
    include/gtk-2.0/gtk/gtkimcontext.h
    include/gtk-2.0/gtk/gtkimcontextsimple.h
    include/gtk-2.0/gtk/gtkimmodule.h
    include/gtk-2.0/gtk/gtkimmulticontext.h
    include/gtk-2.0/gtk/gtkinputdialog.h
    include/gtk-2.0/gtk/gtkinvisible.h
    include/gtk-2.0/gtk/gtkitem.h
    include/gtk-2.0/gtk/gtkitemfactory.h
    include/gtk-2.0/gtk/gtklabel.h
    include/gtk-2.0/gtk/gtklayout.h
    include/gtk-2.0/gtk/gtklist.h
    include/gtk-2.0/gtk/gtklistitem.h
    include/gtk-2.0/gtk/gtkliststore.h
    include/gtk-2.0/gtk/gtkmain.h
    include/gtk-2.0/gtk/gtkmarshal.h
    include/gtk-2.0/gtk/gtkmenu.h
    include/gtk-2.0/gtk/gtkmenubar.h
    include/gtk-2.0/gtk/gtkmenuitem.h
    include/gtk-2.0/gtk/gtkmenushell.h
    include/gtk-2.0/gtk/gtkmenutoolbutton.h
    include/gtk-2.0/gtk/gtkmessagedialog.h
    include/gtk-2.0/gtk/gtkmisc.h
    include/gtk-2.0/gtk/gtkmodules.h
    include/gtk-2.0/gtk/gtknotebook.h
    include/gtk-2.0/gtk/gtkobject.h
    include/gtk-2.0/gtk/gtkoldeditable.h
    include/gtk-2.0/gtk/gtkoptionmenu.h
    include/gtk-2.0/gtk/gtkpaned.h
    include/gtk-2.0/gtk/gtkpixmap.h
    include/gtk-2.0/gtk/gtkplug.h
    include/gtk-2.0/gtk/gtkpreview.h
    include/gtk-2.0/gtk/gtkprivate.h
    include/gtk-2.0/gtk/gtkprogress.h
    include/gtk-2.0/gtk/gtkprogressbar.h
    include/gtk-2.0/gtk/gtkradioaction.h
    include/gtk-2.0/gtk/gtkradiobutton.h
    include/gtk-2.0/gtk/gtkradiomenuitem.h
    include/gtk-2.0/gtk/gtkradiotoolbutton.h
    include/gtk-2.0/gtk/gtkrange.h
    include/gtk-2.0/gtk/gtkrc.h
    include/gtk-2.0/gtk/gtkruler.h
    include/gtk-2.0/gtk/gtkscale.h
    include/gtk-2.0/gtk/gtkscrollbar.h
    include/gtk-2.0/gtk/gtkscrolledwindow.h
    include/gtk-2.0/gtk/gtkselection.h
    include/gtk-2.0/gtk/gtkseparator.h
    include/gtk-2.0/gtk/gtkseparatormenuitem.h
    include/gtk-2.0/gtk/gtkseparatortoolitem.h
    include/gtk-2.0/gtk/gtksettings.h
    include/gtk-2.0/gtk/gtksignal.h
    include/gtk-2.0/gtk/gtksizegroup.h
    include/gtk-2.0/gtk/gtksocket.h
    include/gtk-2.0/gtk/gtkspinbutton.h
    include/gtk-2.0/gtk/gtkstatusbar.h
    include/gtk-2.0/gtk/gtkstock.h
    include/gtk-2.0/gtk/gtkstyle.h
    include/gtk-2.0/gtk/gtktable.h
    include/gtk-2.0/gtk/gtktearoffmenuitem.h
    include/gtk-2.0/gtk/gtktext.h
    include/gtk-2.0/gtk/gtktextbuffer.h
    include/gtk-2.0/gtk/gtktextchild.h
    include/gtk-2.0/gtk/gtktextdisplay.h
    include/gtk-2.0/gtk/gtktextiter.h
    include/gtk-2.0/gtk/gtktextlayout.h
    include/gtk-2.0/gtk/gtktextmark.h
    include/gtk-2.0/gtk/gtktexttag.h
    include/gtk-2.0/gtk/gtktexttagtable.h
    include/gtk-2.0/gtk/gtktextview.h
    include/gtk-2.0/gtk/gtktipsquery.h
    include/gtk-2.0/gtk/gtktoggleaction.h
    include/gtk-2.0/gtk/gtktogglebutton.h
    include/gtk-2.0/gtk/gtktoggletoolbutton.h
    include/gtk-2.0/gtk/gtktoolbar.h
    include/gtk-2.0/gtk/gtktoolbutton.h
    include/gtk-2.0/gtk/gtktoolitem.h
    include/gtk-2.0/gtk/gtktooltips.h
    include/gtk-2.0/gtk/gtktree.h
    include/gtk-2.0/gtk/gtktreednd.h
    include/gtk-2.0/gtk/gtktreeitem.h
    include/gtk-2.0/gtk/gtktreemodel.h
    include/gtk-2.0/gtk/gtktreemodelfilter.h
    include/gtk-2.0/gtk/gtktreemodelsort.h
    include/gtk-2.0/gtk/gtktreeselection.h
    include/gtk-2.0/gtk/gtktreesortable.h
    include/gtk-2.0/gtk/gtktreestore.h
    include/gtk-2.0/gtk/gtktreeview.h
    include/gtk-2.0/gtk/gtktreeviewcolumn.h
    include/gtk-2.0/gtk/gtktypebuiltins.h
    include/gtk-2.0/gtk/gtktypeutils.h
    include/gtk-2.0/gtk/gtkuimanager.h
    include/gtk-2.0/gtk/gtkvbbox.h
    include/gtk-2.0/gtk/gtkvbox.h
    include/gtk-2.0/gtk/gtkversion.h
    include/gtk-2.0/gtk/gtkviewport.h
    include/gtk-2.0/gtk/gtkvpaned.h
    include/gtk-2.0/gtk/gtkvruler.h
    include/gtk-2.0/gtk/gtkvscale.h
    include/gtk-2.0/gtk/gtkvscrollbar.h
    include/gtk-2.0/gtk/gtkvseparator.h
    include/gtk-2.0/gtk/gtkwidget.h
    include/gtk-2.0/gtk/gtkwindow.h
    lib/gtk-2.0/2.4.0/engines/cygpixmap.dll
    lib/gtk-2.0/2.4.0/engines/cygwimp.dll
    lib/gtk-2.0/2.4.0/engines/libpixmap.dll.a
    lib/gtk-2.0/2.4.0/engines/libpixmap.la
    lib/gtk-2.0/2.4.0/engines/libwimp.dll.a
    lib/gtk-2.0/2.4.0/engines/libwimp.la
    lib/gtk-2.0/2.4.0/immodules/im-am-et.dll
    lib/gtk-2.0/2.4.0/immodules/im-am-et.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-am-et.la
    lib/gtk-2.0/2.4.0/immodules/im-cedilla.dll
    lib/gtk-2.0/2.4.0/immodules/im-cedilla.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-cedilla.la
    lib/gtk-2.0/2.4.0/immodules/im-cyrillic-translit.dll
    lib/gtk-2.0/2.4.0/immodules/im-cyrillic-translit.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-cyrillic-translit.la
    lib/gtk-2.0/2.4.0/immodules/im-ime.dll
    lib/gtk-2.0/2.4.0/immodules/im-ime.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-ime.la
    lib/gtk-2.0/2.4.0/immodules/im-inuktitut.dll
    lib/gtk-2.0/2.4.0/immodules/im-inuktitut.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-inuktitut.la
    lib/gtk-2.0/2.4.0/immodules/im-ipa.dll
    lib/gtk-2.0/2.4.0/immodules/im-ipa.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-ipa.la
    lib/gtk-2.0/2.4.0/immodules/im-thai-broken.dll
    lib/gtk-2.0/2.4.0/immodules/im-thai-broken.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-thai-broken.la
    lib/gtk-2.0/2.4.0/immodules/im-ti-er.dll
    lib/gtk-2.0/2.4.0/immodules/im-ti-er.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-ti-er.la
    lib/gtk-2.0/2.4.0/immodules/im-ti-et.dll
    lib/gtk-2.0/2.4.0/immodules/im-ti-et.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-ti-et.la
    lib/gtk-2.0/2.4.0/immodules/im-viqr.dll
    lib/gtk-2.0/2.4.0/immodules/im-viqr.dll.a
    lib/gtk-2.0/2.4.0/immodules/im-viqr.la
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-ani.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-bmp.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-gif.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-ico.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-jpeg.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-pcx.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-png.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-pnm.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-ras.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-tga.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-tiff.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-wbmp.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-xbm.dll
    lib/gtk-2.0/2.4.0/loaders/cygpixbufloader-xpm.dll
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ani.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ani.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-bmp.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-bmp.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-gif.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-gif.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ico.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ico.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-pcx.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-pcx.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-png.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-png.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-pnm.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-pnm.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ras.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-ras.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-tga.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-tga.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-tiff.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-tiff.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-wbmp.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-wbmp.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-xbm.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-xbm.la
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-xpm.dll.a
    lib/gtk-2.0/2.4.0/loaders/libpixbufloader-xpm.la
    lib/libgdk-win32-2.0.dll.a
    lib/libgdk-win32-2.0.la
    lib/libgdk_pixbuf-2.0.dll.a
    lib/libgdk_pixbuf-2.0.la
    lib/libgtk-win32-2.0.dll.a
    lib/libgtk-win32-2.0.la
    man/man1/gdk-pixbuf-csource.1
    man/man1/gdk-pixbuf-query-loaders.1
    man/man1/gtk-query-immodules-2.0.1
    man/man1/gtk-update-icon-cache.1
    share/gtk-2.0/demo/alphatest.png
    share/gtk-2.0/demo/apple-red.png
    share/gtk-2.0/demo/appwindow.c
    share/gtk-2.0/demo/background.jpg
    share/gtk-2.0/demo/button_box.c
    share/gtk-2.0/demo/changedisplay.c
    share/gtk-2.0/demo/clipboard.c
    share/gtk-2.0/demo/colorsel.c
    share/gtk-2.0/demo/combobox.c
    share/gtk-2.0/demo/dialog.c
    share/gtk-2.0/demo/drawingarea.c
    share/gtk-2.0/demo/editable_cells.c
    share/gtk-2.0/demo/entry_completion.c
    share/gtk-2.0/demo/expander.c
    share/gtk-2.0/demo/floppybuddy.gif
    share/gtk-2.0/demo/gnome-applets.png
    share/gtk-2.0/demo/gnome-calendar.png
    share/gtk-2.0/demo/gnome-foot.png
    share/gtk-2.0/demo/gnome-fs-directory.png
    share/gtk-2.0/demo/gnome-fs-regular.png
    share/gtk-2.0/demo/gnome-gimp.png
    share/gtk-2.0/demo/gnome-gmush.png
    share/gtk-2.0/demo/gnome-gsame.png
    share/gtk-2.0/demo/gnu-keys.png
    share/gtk-2.0/demo/gtk-logo-rgb.gif
    share/gtk-2.0/demo/hypertext.c
    share/gtk-2.0/demo/iconview.c
    share/gtk-2.0/demo/images.c
    share/gtk-2.0/demo/list_store.c
    share/gtk-2.0/demo/menus.c
    share/gtk-2.0/demo/panes.c
    share/gtk-2.0/demo/pickers.c
    share/gtk-2.0/demo/pixbufs.c
    share/gtk-2.0/demo/rotated_text.c
    share/gtk-2.0/demo/sizegroup.c
    share/gtk-2.0/demo/stock_browser.c
    share/gtk-2.0/demo/textview.c
    share/gtk-2.0/demo/tree_store.c
    share/gtk-2.0/demo/ui_manager.c
    share/gtk-doc/html/gdk-pixbuf/GdkPixbufLoader.html
    share/gtk-doc/html/gdk-pixbuf/apa.html
    share/gtk-doc/html/gdk-pixbuf/apas02.html
    share/gtk-doc/html/gdk-pixbuf/apas03.html
    share/gtk-doc/html/gdk-pixbuf/composite.png
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-Module-Interface.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-Versioning.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-animation.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-creating.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-csource.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-file-loading.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-file-saving.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-from-drawables.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-rendering.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-from-drawables.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-init.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-rendering.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-rgb.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-inline.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-query-loaders.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-refcounting.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-scaling.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-util.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf.devhelp
    share/gtk-doc/html/gdk-pixbuf/home.png
    share/gtk-doc/html/gdk-pixbuf/index.html
    share/gtk-doc/html/gdk-pixbuf/index.sgml
    share/gtk-doc/html/gdk-pixbuf/ix01.html
    share/gtk-doc/html/gdk-pixbuf/ix02.html
    share/gtk-doc/html/gdk-pixbuf/ix03.html
    share/gtk-doc/html/gdk-pixbuf/ix04.html
    share/gtk-doc/html/gdk-pixbuf/ix05.html
    share/gtk-doc/html/gdk-pixbuf/left.png
    share/gtk-doc/html/gdk-pixbuf/license.html
    share/gtk-doc/html/gdk-pixbuf/right.png
    share/gtk-doc/html/gdk-pixbuf/rn01.html
    share/gtk-doc/html/gdk-pixbuf/rn02.html
    share/gtk-doc/html/gdk-pixbuf/style.css
    share/gtk-doc/html/gdk-pixbuf/up.png
    share/gtk-doc/html/gdk/GdkDisplay.html
    share/gtk-doc/html/gdk/GdkDisplayManager.html
    share/gtk-doc/html/gdk/GdkScreen.html
    share/gtk-doc/html/gdk/X_cursor.png
    share/gtk-doc/html/gdk/arrow.png
    share/gtk-doc/html/gdk/based_arrow_down.png
    share/gtk-doc/html/gdk/based_arrow_up.png
    share/gtk-doc/html/gdk/boat.png
    share/gtk-doc/html/gdk/bogosity.png
    share/gtk-doc/html/gdk/bottom_left_corner.png
    share/gtk-doc/html/gdk/bottom_right_corner.png
    share/gtk-doc/html/gdk/bottom_side.png
    share/gtk-doc/html/gdk/bottom_tee.png
    share/gtk-doc/html/gdk/box_spiral.png
    share/gtk-doc/html/gdk/center_ptr.png
    share/gtk-doc/html/gdk/circle.png
    share/gtk-doc/html/gdk/clock.png
    share/gtk-doc/html/gdk/coffee_mug.png
    share/gtk-doc/html/gdk/cross.png
    share/gtk-doc/html/gdk/cross_reverse.png
    share/gtk-doc/html/gdk/crosshair.png
    share/gtk-doc/html/gdk/diamond_cross.png
    share/gtk-doc/html/gdk/dot.png
    share/gtk-doc/html/gdk/dotbox.png
    share/gtk-doc/html/gdk/double_arrow.png
    share/gtk-doc/html/gdk/draft_large.png
    share/gtk-doc/html/gdk/draft_small.png
    share/gtk-doc/html/gdk/draped_box.png
    share/gtk-doc/html/gdk/exchange.png
    share/gtk-doc/html/gdk/fleur.png
    share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html
    share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html
    share/gtk-doc/html/gdk/gdk-Cursors.html
    share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html
    share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html
    share/gtk-doc/html/gdk/gdk-Event-Structures.html
    share/gtk-doc/html/gdk/gdk-Events.html
    share/gtk-doc/html/gdk/gdk-Fonts.html
    share/gtk-doc/html/gdk/gdk-GdkRGB.html
    share/gtk-doc/html/gdk/gdk-General.html
    share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html
    share/gtk-doc/html/gdk/gdk-Images.html
    share/gtk-doc/html/gdk/gdk-Input-Devices.html
    share/gtk-doc/html/gdk/gdk-Input.html
    share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html
    share/gtk-doc/html/gdk/gdk-Pango-Interaction.html
    share/gtk-doc/html/gdk/gdk-Pixbufs.html
    share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html
    share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html
    share/gtk-doc/html/gdk/gdk-Selections.html
    share/gtk-doc/html/gdk/gdk-Threads.html
    share/gtk-doc/html/gdk/gdk-Visuals.html
    share/gtk-doc/html/gdk/gdk-Windows.html
    share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html
    share/gtk-doc/html/gdk/gdk.devhelp
    share/gtk-doc/html/gdk/gobbler.png
    share/gtk-doc/html/gdk/gumby.png
    share/gtk-doc/html/gdk/hand1.png
    share/gtk-doc/html/gdk/hand2.png
    share/gtk-doc/html/gdk/heart.png
    share/gtk-doc/html/gdk/home.png
    share/gtk-doc/html/gdk/icon.png
    share/gtk-doc/html/gdk/index.html
    share/gtk-doc/html/gdk/index.sgml
    share/gtk-doc/html/gdk/iron_cross.png
    share/gtk-doc/html/gdk/ix01.html
    share/gtk-doc/html/gdk/ix02.html
    share/gtk-doc/html/gdk/ix03.html
    share/gtk-doc/html/gdk/ix04.html
    share/gtk-doc/html/gdk/ix05.html
    share/gtk-doc/html/gdk/left.png
    share/gtk-doc/html/gdk/left_ptr.png
    share/gtk-doc/html/gdk/left_side.png
    share/gtk-doc/html/gdk/left_tee.png
    share/gtk-doc/html/gdk/leftbutton.png
    share/gtk-doc/html/gdk/ll_angle.png
    share/gtk-doc/html/gdk/lr_angle.png
    share/gtk-doc/html/gdk/man.png
    share/gtk-doc/html/gdk/middlebutton.png
    share/gtk-doc/html/gdk/mouse.png
    share/gtk-doc/html/gdk/multihead.html
    share/gtk-doc/html/gdk/pencil.png
    share/gtk-doc/html/gdk/pirate.png
    share/gtk-doc/html/gdk/plus.png
    share/gtk-doc/html/gdk/question_arrow.png
    share/gtk-doc/html/gdk/reference.html
    share/gtk-doc/html/gdk/right.png
    share/gtk-doc/html/gdk/right_ptr.png
    share/gtk-doc/html/gdk/right_side.png
    share/gtk-doc/html/gdk/right_tee.png
    share/gtk-doc/html/gdk/rightbutton.png
    share/gtk-doc/html/gdk/rotated-text.png
    share/gtk-doc/html/gdk/rtl_logo.png
    share/gtk-doc/html/gdk/sailboat.png
    share/gtk-doc/html/gdk/sb_down_arrow.png
    share/gtk-doc/html/gdk/sb_h_double_arrow.png
    share/gtk-doc/html/gdk/sb_left_arrow.png
    share/gtk-doc/html/gdk/sb_right_arrow.png
    share/gtk-doc/html/gdk/sb_up_arrow.png
    share/gtk-doc/html/gdk/sb_v_double_arrow.png
    share/gtk-doc/html/gdk/shuttle.png
    share/gtk-doc/html/gdk/sizing.png
    share/gtk-doc/html/gdk/spider.png
    share/gtk-doc/html/gdk/spraycan.png
    share/gtk-doc/html/gdk/star.png
    share/gtk-doc/html/gdk/style.css
    share/gtk-doc/html/gdk/target.png
    share/gtk-doc/html/gdk/tcross.png
    share/gtk-doc/html/gdk/top_left_arrow.png
    share/gtk-doc/html/gdk/top_left_corner.png
    share/gtk-doc/html/gdk/top_right_corner.png
    share/gtk-doc/html/gdk/top_side.png
    share/gtk-doc/html/gdk/top_tee.png
    share/gtk-doc/html/gdk/trek.png
    share/gtk-doc/html/gdk/ul_angle.png
    share/gtk-doc/html/gdk/umbrella.png
    share/gtk-doc/html/gdk/up.png
    share/gtk-doc/html/gdk/ur_angle.png
    share/gtk-doc/html/gdk/watch.png
    share/gtk-doc/html/gdk/xterm.png
    share/gtk-doc/html/gtk/AbstractObjects.html
    share/gtk-doc/html/gtk/Actions.html
    share/gtk-doc/html/gtk/ButtonWidgets.html
    share/gtk-doc/html/gtk/DeprecatedObjects.html
    share/gtk-doc/html/gtk/DisplayWidgets.html
    share/gtk-doc/html/gtk/GtkAboutDialog.html
    share/gtk-doc/html/gtk/GtkAccelLabel.html
    share/gtk-doc/html/gtk/GtkAccessible.html
    share/gtk-doc/html/gtk/GtkAction.html
    share/gtk-doc/html/gtk/GtkActionGroup.html
    share/gtk-doc/html/gtk/GtkAdjustment.html
    share/gtk-doc/html/gtk/GtkAlignment.html
    share/gtk-doc/html/gtk/GtkArrow.html
    share/gtk-doc/html/gtk/GtkAspectFrame.html
    share/gtk-doc/html/gtk/GtkBin.html
    share/gtk-doc/html/gtk/GtkBox.html
    share/gtk-doc/html/gtk/GtkButton.html
    share/gtk-doc/html/gtk/GtkButtonBox.html
    share/gtk-doc/html/gtk/GtkCList.html
    share/gtk-doc/html/gtk/GtkCTree.html
    share/gtk-doc/html/gtk/GtkCalendar.html
    share/gtk-doc/html/gtk/GtkCellEditable.html
    share/gtk-doc/html/gtk/GtkCellLayout.html
    share/gtk-doc/html/gtk/GtkCellRenderer.html
    share/gtk-doc/html/gtk/GtkCellRendererCombo.html
    share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html
    share/gtk-doc/html/gtk/GtkCellRendererProgress.html
    share/gtk-doc/html/gtk/GtkCellRendererText.html
    share/gtk-doc/html/gtk/GtkCellRendererToggle.html
    share/gtk-doc/html/gtk/GtkCellView.html
    share/gtk-doc/html/gtk/GtkCheckButton.html
    share/gtk-doc/html/gtk/GtkCheckMenuItem.html
    share/gtk-doc/html/gtk/GtkColorButton.html
    share/gtk-doc/html/gtk/GtkColorSelection.html
    share/gtk-doc/html/gtk/GtkColorSelectionDialog.html
    share/gtk-doc/html/gtk/GtkCombo.html
    share/gtk-doc/html/gtk/GtkComboBox.html
    share/gtk-doc/html/gtk/GtkComboBoxEntry.html
    share/gtk-doc/html/gtk/GtkContainer.html
    share/gtk-doc/html/gtk/GtkCurve.html
    share/gtk-doc/html/gtk/GtkDialog.html
    share/gtk-doc/html/gtk/GtkDrawingArea.html
    share/gtk-doc/html/gtk/GtkEditable.html
    share/gtk-doc/html/gtk/GtkEntry.html
    share/gtk-doc/html/gtk/GtkEntryCompletion.html
    share/gtk-doc/html/gtk/GtkEventBox.html
    share/gtk-doc/html/gtk/GtkExpander.html
    share/gtk-doc/html/gtk/GtkFileChooser.html
    share/gtk-doc/html/gtk/GtkFileChooserButton.html
    share/gtk-doc/html/gtk/GtkFileChooserDialog.html
    share/gtk-doc/html/gtk/GtkFileChooserWidget.html
    share/gtk-doc/html/gtk/GtkFileSelection.html
    share/gtk-doc/html/gtk/GtkFixed.html
    share/gtk-doc/html/gtk/GtkFontButton.html
    share/gtk-doc/html/gtk/GtkFontSelection.html
    share/gtk-doc/html/gtk/GtkFontSelectionDialog.html
    share/gtk-doc/html/gtk/GtkFrame.html
    share/gtk-doc/html/gtk/GtkGammaCurve.html
    share/gtk-doc/html/gtk/GtkHBox.html
    share/gtk-doc/html/gtk/GtkHButtonBox.html
    share/gtk-doc/html/gtk/GtkHPaned.html
    share/gtk-doc/html/gtk/GtkHRuler.html
    share/gtk-doc/html/gtk/GtkHScale.html
    share/gtk-doc/html/gtk/GtkHScrollbar.html
    share/gtk-doc/html/gtk/GtkHSeparator.html
    share/gtk-doc/html/gtk/GtkHandleBox.html
    share/gtk-doc/html/gtk/GtkIMContext.html
    share/gtk-doc/html/gtk/GtkIMContextSimple.html
    share/gtk-doc/html/gtk/GtkIMMulticontext.html
    share/gtk-doc/html/gtk/GtkIconTheme.html
    share/gtk-doc/html/gtk/GtkIconView.html
    share/gtk-doc/html/gtk/GtkImage.html
    share/gtk-doc/html/gtk/GtkImageMenuItem.html
    share/gtk-doc/html/gtk/GtkInputDialog.html
    share/gtk-doc/html/gtk/GtkInvisible.html
    share/gtk-doc/html/gtk/GtkItem.html
    share/gtk-doc/html/gtk/GtkItemFactory.html
    share/gtk-doc/html/gtk/GtkLabel.html
    share/gtk-doc/html/gtk/GtkLayout.html
    share/gtk-doc/html/gtk/GtkList.html
    share/gtk-doc/html/gtk/GtkListItem.html
    share/gtk-doc/html/gtk/GtkListStore.html
    share/gtk-doc/html/gtk/GtkMenu.html
    share/gtk-doc/html/gtk/GtkMenuBar.html
    share/gtk-doc/html/gtk/GtkMenuItem.html
    share/gtk-doc/html/gtk/GtkMenuShell.html
    share/gtk-doc/html/gtk/GtkMenuToolButton.html
    share/gtk-doc/html/gtk/GtkMessageDialog.html
    share/gtk-doc/html/gtk/GtkMisc.html
    share/gtk-doc/html/gtk/GtkNotebook.html
    share/gtk-doc/html/gtk/GtkObject.html
    share/gtk-doc/html/gtk/GtkOldEditable.html
    share/gtk-doc/html/gtk/GtkOptionMenu.html
    share/gtk-doc/html/gtk/GtkPaned.html
    share/gtk-doc/html/gtk/GtkPixmap.html
    share/gtk-doc/html/gtk/GtkPlug.html
    share/gtk-doc/html/gtk/GtkPreview.html
    share/gtk-doc/html/gtk/GtkProgress.html
    share/gtk-doc/html/gtk/GtkProgressBar.html
    share/gtk-doc/html/gtk/GtkRadioAction.html
    share/gtk-doc/html/gtk/GtkRadioButton.html
    share/gtk-doc/html/gtk/GtkRadioMenuItem.html
    share/gtk-doc/html/gtk/GtkRadioToolButton.html
    share/gtk-doc/html/gtk/GtkRange.html
    share/gtk-doc/html/gtk/GtkRuler.html
    share/gtk-doc/html/gtk/GtkScale.html
    share/gtk-doc/html/gtk/GtkScrollbar.html
    share/gtk-doc/html/gtk/GtkScrolledWindow.html
    share/gtk-doc/html/gtk/GtkSeparator.html
    share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html
    share/gtk-doc/html/gtk/GtkSeparatorToolItem.html
    share/gtk-doc/html/gtk/GtkSettings.html
    share/gtk-doc/html/gtk/GtkSizeGroup.html
    share/gtk-doc/html/gtk/GtkSocket.html
    share/gtk-doc/html/gtk/GtkSpinButton.html
    share/gtk-doc/html/gtk/GtkStatusbar.html
    share/gtk-doc/html/gtk/GtkStyle.html
    share/gtk-doc/html/gtk/GtkTable.html
    share/gtk-doc/html/gtk/GtkTearoffMenuItem.html
    share/gtk-doc/html/gtk/GtkText.html
    share/gtk-doc/html/gtk/GtkTextBuffer.html
    share/gtk-doc/html/gtk/GtkTextMark.html
    share/gtk-doc/html/gtk/GtkTextTag.html
    share/gtk-doc/html/gtk/GtkTextTagTable.html
    share/gtk-doc/html/gtk/GtkTextView.html
    share/gtk-doc/html/gtk/GtkTipsQuery.html
    share/gtk-doc/html/gtk/GtkToggleAction.html
    share/gtk-doc/html/gtk/GtkToggleButton.html
    share/gtk-doc/html/gtk/GtkToggleToolButton.html
    share/gtk-doc/html/gtk/GtkToolButton.html
    share/gtk-doc/html/gtk/GtkToolItem.html
    share/gtk-doc/html/gtk/GtkToolbar.html
    share/gtk-doc/html/gtk/GtkTooltips.html
    share/gtk-doc/html/gtk/GtkTree.html
    share/gtk-doc/html/gtk/GtkTreeItem.html
    share/gtk-doc/html/gtk/GtkTreeModel.html
    share/gtk-doc/html/gtk/GtkTreeModelFilter.html
    share/gtk-doc/html/gtk/GtkTreeModelSort.html
    share/gtk-doc/html/gtk/GtkTreeSelection.html
    share/gtk-doc/html/gtk/GtkTreeSortable.html
    share/gtk-doc/html/gtk/GtkTreeStore.html
    share/gtk-doc/html/gtk/GtkTreeView.html
    share/gtk-doc/html/gtk/GtkTreeViewColumn.html
    share/gtk-doc/html/gtk/GtkUIManager.html
    share/gtk-doc/html/gtk/GtkVBox.html
    share/gtk-doc/html/gtk/GtkVButtonBox.html
    share/gtk-doc/html/gtk/GtkVPaned.html
    share/gtk-doc/html/gtk/GtkVRuler.html
    share/gtk-doc/html/gtk/GtkVScale.html
    share/gtk-doc/html/gtk/GtkVScrollbar.html
    share/gtk-doc/html/gtk/GtkVSeparator.html
    share/gtk-doc/html/gtk/GtkViewport.html
    share/gtk-doc/html/gtk/GtkWidget.html
    share/gtk-doc/html/gtk/GtkWindow.html
    share/gtk-doc/html/gtk/GtkWindowGroup.html
    share/gtk-doc/html/gtk/LayoutContainers.html
    share/gtk-doc/html/gtk/MenusAndCombos.html
    share/gtk-doc/html/gtk/MiscObjects.html
    share/gtk-doc/html/gtk/NumericEntry.html
    share/gtk-doc/html/gtk/Ornaments.html
    share/gtk-doc/html/gtk/PlugSocket.html
    share/gtk-doc/html/gtk/ScrollingWidgets.html
    share/gtk-doc/html/gtk/SelectorWidgets.html
    share/gtk-doc/html/gtk/SpecialObjects.html
    share/gtk-doc/html/gtk/TextWidget.html
    share/gtk-doc/html/gtk/TextWidgetObjects.html
    share/gtk-doc/html/gtk/TreeWidget.html
    share/gtk-doc/html/gtk/TreeWidgetObjects.html
    share/gtk-doc/html/gtk/WindowWidgets.html
    share/gtk-doc/html/gtk/accel-label.png
    share/gtk-doc/html/gtk/button.png
    share/gtk-doc/html/gtk/ch01.html
    share/gtk-doc/html/gtk/ch02.html
    share/gtk-doc/html/gtk/check-button.png
    share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html
    share/gtk-doc/html/gtk/checklist-modifiers.html
    share/gtk-doc/html/gtk/color-button.png
    share/gtk-doc/html/gtk/colorsel.png
    share/gtk-doc/html/gtk/combo-box-entry.png
    share/gtk-doc/html/gtk/combo-box.png
    share/gtk-doc/html/gtk/entry.png
    share/gtk-doc/html/gtk/file-button.png
    share/gtk-doc/html/gtk/filechooser.png
    share/gtk-doc/html/gtk/font-button.png
    share/gtk-doc/html/gtk/fontsel.png
    share/gtk-doc/html/gtk/frame.png
    share/gtk-doc/html/gtk/glossary.html
    share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html
    share/gtk-doc/html/gtk/gtk-Bindings.html
    share/gtk-doc/html/gtk/gtk-Clipboards.html
    share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html
    share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html
    share/gtk-doc/html/gtk/gtk-General.html
    share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html
    share/gtk-doc/html/gtk/gtk-GtkTextIter.html
    share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html
    share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html
    share/gtk-doc/html/gtk/gtk-Resource-Files.html
    share/gtk-doc/html/gtk/gtk-Selections.html
    share/gtk-doc/html/gtk/gtk-Signals.html
    share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html
    share/gtk-doc/html/gtk/gtk-Stock-Items.html
    share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html
    share/gtk-doc/html/gtk/gtk-Types.html
    share/gtk-doc/html/gtk/gtk-building.html
    share/gtk-doc/html/gtk/gtk-changes-1-2.html
    share/gtk-doc/html/gtk/gtk-changes-2-0.html
    share/gtk-doc/html/gtk/gtk-compiling.html
    share/gtk-doc/html/gtk/gtk-framebuffer.html
    share/gtk-doc/html/gtk/gtk-gtkfilefilter.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html
    share/gtk-doc/html/gtk/gtk-migrating-checklist.html
    share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html
    share/gtk-doc/html/gtk/gtk-question-index.html
    share/gtk-doc/html/gtk/gtk-resources.html
    share/gtk-doc/html/gtk/gtk-running.html
    share/gtk-doc/html/gtk/gtk-update-icon-cache.html
    share/gtk-doc/html/gtk/gtk-windows.html
    share/gtk-doc/html/gtk/gtk-x11.html
    share/gtk-doc/html/gtk/gtk.devhelp
    share/gtk-doc/html/gtk/gtk.html
    share/gtk-doc/html/gtk/gtkbase.html
    share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html
    share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html
    share/gtk-doc/html/gtk/gtkfilechooser-new-features.html
    share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html
    share/gtk-doc/html/gtk/gtkobjects.html
    share/gtk-doc/html/gtk/home.png
    share/gtk-doc/html/gtk/icon-view.png
    share/gtk-doc/html/gtk/image.png
    share/gtk-doc/html/gtk/index.html
    share/gtk-doc/html/gtk/index.sgml
    share/gtk-doc/html/gtk/ix01.html
    share/gtk-doc/html/gtk/ix02.html
    share/gtk-doc/html/gtk/ix03.html
    share/gtk-doc/html/gtk/ix04.html
    share/gtk-doc/html/gtk/ix05.html
    share/gtk-doc/html/gtk/label.png
    share/gtk-doc/html/gtk/left.png
    share/gtk-doc/html/gtk/list-and-tree.png
    share/gtk-doc/html/gtk/menubar.png
    share/gtk-doc/html/gtk/messagedialog.png
    share/gtk-doc/html/gtk/migrating-GtkCombo.html
    share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html
    share/gtk-doc/html/gtk/migrating.html
    share/gtk-doc/html/gtk/multiline-text.png
    share/gtk-doc/html/gtk/new-features-GtkComboBox.html
    share/gtk-doc/html/gtk/notebook.png
    share/gtk-doc/html/gtk/panes.png
    share/gtk-doc/html/gtk/progressbar.png
    share/gtk-doc/html/gtk/pt05.html
    share/gtk-doc/html/gtk/radio-group.png
    share/gtk-doc/html/gtk/right.png
    share/gtk-doc/html/gtk/scales.png
    share/gtk-doc/html/gtk/scrolledwindow.png
    share/gtk-doc/html/gtk/separator.png
    share/gtk-doc/html/gtk/spinbutton.png
    share/gtk-doc/html/gtk/statusbar.png
    share/gtk-doc/html/gtk/stock_about_24.png
    share/gtk-doc/html/gtk/stock_add_24.png
    share/gtk-doc/html/gtk/stock_align_center_24.png
    share/gtk-doc/html/gtk/stock_align_justify_24.png
    share/gtk-doc/html/gtk/stock_align_left_24.png
    share/gtk-doc/html/gtk/stock_align_right_24.png
    share/gtk-doc/html/gtk/stock_apply_20.png
    share/gtk-doc/html/gtk/stock_bottom_24.png
    share/gtk-doc/html/gtk/stock_broken_image_24.png
    share/gtk-doc/html/gtk/stock_cancel_20.png
    share/gtk-doc/html/gtk/stock_cdrom_24.png
    share/gtk-doc/html/gtk/stock_clear_24.png
    share/gtk-doc/html/gtk/stock_close_24.png
    share/gtk-doc/html/gtk/stock_color_picker_25.png
    share/gtk-doc/html/gtk/stock_colorselector_24.png
    share/gtk-doc/html/gtk/stock_connect_24.png
    share/gtk-doc/html/gtk/stock_convert_24.png
    share/gtk-doc/html/gtk/stock_copy_24.png
    share/gtk-doc/html/gtk/stock_cut_24.png
    share/gtk-doc/html/gtk/stock_dialog_authentication_48.png
    share/gtk-doc/html/gtk/stock_dialog_error_48.png
    share/gtk-doc/html/gtk/stock_dialog_info_48.png
    share/gtk-doc/html/gtk/stock_dialog_question_48.png
    share/gtk-doc/html/gtk/stock_dialog_warning_48.png
    share/gtk-doc/html/gtk/stock_directory_24.png
    share/gtk-doc/html/gtk/stock_disconnect_24.png
    share/gtk-doc/html/gtk/stock_dnd_32.png
    share/gtk-doc/html/gtk/stock_dnd_multiple_32.png
    share/gtk-doc/html/gtk/stock_down_arrow_24.png
    share/gtk-doc/html/gtk/stock_edit_24.png
    share/gtk-doc/html/gtk/stock_exec_24.png
    share/gtk-doc/html/gtk/stock_exit_24.png
    share/gtk-doc/html/gtk/stock_file_24.png
    share/gtk-doc/html/gtk/stock_first_24.png
    share/gtk-doc/html/gtk/stock_font_24.png
    share/gtk-doc/html/gtk/stock_harddisk_24.png
    share/gtk-doc/html/gtk/stock_help_24.png
    share/gtk-doc/html/gtk/stock_home_24.png
    share/gtk-doc/html/gtk/stock_index_24.png
    share/gtk-doc/html/gtk/stock_jump_to_24.png
    share/gtk-doc/html/gtk/stock_jump_to_rtl_24.png
    share/gtk-doc/html/gtk/stock_last_24.png
    share/gtk-doc/html/gtk/stock_left_arrow_24.png
    share/gtk-doc/html/gtk/stock_media_forward_24.png
    share/gtk-doc/html/gtk/stock_media_next_24.png
    share/gtk-doc/html/gtk/stock_media_pause_24.png
    share/gtk-doc/html/gtk/stock_media_play_24.png
    share/gtk-doc/html/gtk/stock_media_play_rtl_24.png
    share/gtk-doc/html/gtk/stock_media_previous_24.png
    share/gtk-doc/html/gtk/stock_media_record_24.png
    share/gtk-doc/html/gtk/stock_media_rewind_24.png
    share/gtk-doc/html/gtk/stock_media_stop_24.png
    share/gtk-doc/html/gtk/stock_network_24.png
    share/gtk-doc/html/gtk/stock_new_24.png
    share/gtk-doc/html/gtk/stock_no_20.png
    share/gtk-doc/html/gtk/stock_ok_20.png
    share/gtk-doc/html/gtk/stock_open_24.png
    share/gtk-doc/html/gtk/stock_paste_24.png
    share/gtk-doc/html/gtk/stock_preferences_24.png
    share/gtk-doc/html/gtk/stock_print_24.png
    share/gtk-doc/html/gtk/stock_print_preview_24.png
    share/gtk-doc/html/gtk/stock_properties_24.png
    share/gtk-doc/html/gtk/stock_redo_24.png
    share/gtk-doc/html/gtk/stock_redo_rtl_24.png
    share/gtk-doc/html/gtk/stock_refresh_24.png
    share/gtk-doc/html/gtk/stock_remove_24.png
    share/gtk-doc/html/gtk/stock_revert_24.png
    share/gtk-doc/html/gtk/stock_revert_rtl_24.png
    share/gtk-doc/html/gtk/stock_right_arrow_24.png
    share/gtk-doc/html/gtk/stock_save_24.png
    share/gtk-doc/html/gtk/stock_save_as_24.png
    share/gtk-doc/html/gtk/stock_search_24.png
    share/gtk-doc/html/gtk/stock_search_replace_24.png
    share/gtk-doc/html/gtk/stock_sort_ascending_24.png
    share/gtk-doc/html/gtk/stock_sort_descending_24.png
    share/gtk-doc/html/gtk/stock_spellcheck_24.png
    share/gtk-doc/html/gtk/stock_stop_24.png
    share/gtk-doc/html/gtk/stock_text_bold_24.png
    share/gtk-doc/html/gtk/stock_text_indent_24.png
    share/gtk-doc/html/gtk/stock_text_italic_24.png
    share/gtk-doc/html/gtk/stock_text_strikethrough_24.png
    share/gtk-doc/html/gtk/stock_text_underline_24.png
    share/gtk-doc/html/gtk/stock_text_unindent_24.png
    share/gtk-doc/html/gtk/stock_top_24.png
    share/gtk-doc/html/gtk/stock_trash_24.png
    share/gtk-doc/html/gtk/stock_undelete_24.png
    share/gtk-doc/html/gtk/stock_undelete_rtl_24.png
    share/gtk-doc/html/gtk/stock_undo_24.png
    share/gtk-doc/html/gtk/stock_undo_rtl_24.png
    share/gtk-doc/html/gtk/stock_up_arrow_24.png
    share/gtk-doc/html/gtk/stock_yes_20.png
    share/gtk-doc/html/gtk/stock_zoom_1_24.png
    share/gtk-doc/html/gtk/stock_zoom_fit_24.png
    share/gtk-doc/html/gtk/stock_zoom_in_24.png
    share/gtk-doc/html/gtk/stock_zoom_out_24.png
    share/gtk-doc/html/gtk/style.css
    share/gtk-doc/html/gtk/toggle-button.png
    share/gtk-doc/html/gtk/toolbar.png
    share/gtk-doc/html/gtk/ui-manager.html
    share/gtk-doc/html/gtk/up.png
    share/gtk-doc/html/gtk/window.png
    share/locale/af/LC_MESSAGES/gtk20-properties.mo
    share/locale/af/LC_MESSAGES/gtk20.mo
    share/locale/am/LC_MESSAGES/gtk20-properties.mo
    share/locale/am/LC_MESSAGES/gtk20.mo
    share/locale/ar/LC_MESSAGES/gtk20-properties.mo
    share/locale/ar/LC_MESSAGES/gtk20.mo
    share/locale/az/LC_MESSAGES/gtk20-properties.mo
    share/locale/az/LC_MESSAGES/gtk20.mo
    share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo
    share/locale/az_IR/LC_MESSAGES/gtk20.mo
    share/locale/be/LC_MESSAGES/gtk20-properties.mo
    share/locale/be/LC_MESSAGES/gtk20.mo
    share/locale/bg/LC_MESSAGES/gtk20-properties.mo
    share/locale/bg/LC_MESSAGES/gtk20.mo
    share/locale/bn/LC_MESSAGES/gtk20-properties.mo
    share/locale/bn/LC_MESSAGES/gtk20.mo
    share/locale/br/LC_MESSAGES/gtk20-properties.mo
    share/locale/br/LC_MESSAGES/gtk20.mo
    share/locale/bs/LC_MESSAGES/gtk20-properties.mo
    share/locale/bs/LC_MESSAGES/gtk20.mo
    share/locale/ca/LC_MESSAGES/gtk20-properties.mo
    share/locale/ca/LC_MESSAGES/gtk20.mo
    share/locale/cs/LC_MESSAGES/gtk20-properties.mo
    share/locale/cs/LC_MESSAGES/gtk20.mo
    share/locale/cy/LC_MESSAGES/gtk20-properties.mo
    share/locale/cy/LC_MESSAGES/gtk20.mo
    share/locale/da/LC_MESSAGES/gtk20-properties.mo
    share/locale/da/LC_MESSAGES/gtk20.mo
    share/locale/de/LC_MESSAGES/gtk20-properties.mo
    share/locale/de/LC_MESSAGES/gtk20.mo
    share/locale/el/LC_MESSAGES/gtk20-properties.mo
    share/locale/el/LC_MESSAGES/gtk20.mo
    share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo
    share/locale/en_CA/LC_MESSAGES/gtk20.mo
    share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo
    share/locale/en_GB/LC_MESSAGES/gtk20.mo
    share/locale/es/LC_MESSAGES/gtk20-properties.mo
    share/locale/es/LC_MESSAGES/gtk20.mo
    share/locale/et/LC_MESSAGES/gtk20-properties.mo
    share/locale/et/LC_MESSAGES/gtk20.mo
    share/locale/eu/LC_MESSAGES/gtk20-properties.mo
    share/locale/eu/LC_MESSAGES/gtk20.mo
    share/locale/fa/LC_MESSAGES/gtk20-properties.mo
    share/locale/fa/LC_MESSAGES/gtk20.mo
    share/locale/fi/LC_MESSAGES/gtk20-properties.mo
    share/locale/fi/LC_MESSAGES/gtk20.mo
    share/locale/fr/LC_MESSAGES/gtk20-properties.mo
    share/locale/fr/LC_MESSAGES/gtk20.mo
    share/locale/ga/LC_MESSAGES/gtk20-properties.mo
    share/locale/ga/LC_MESSAGES/gtk20.mo
    share/locale/gl/LC_MESSAGES/gtk20-properties.mo
    share/locale/gl/LC_MESSAGES/gtk20.mo
    share/locale/gu/LC_MESSAGES/gtk20-properties.mo
    share/locale/gu/LC_MESSAGES/gtk20.mo
    share/locale/he/LC_MESSAGES/gtk20-properties.mo
    share/locale/he/LC_MESSAGES/gtk20.mo
    share/locale/hi/LC_MESSAGES/gtk20-properties.mo
    share/locale/hi/LC_MESSAGES/gtk20.mo
    share/locale/hr/LC_MESSAGES/gtk20-properties.mo
    share/locale/hr/LC_MESSAGES/gtk20.mo
    share/locale/hu/LC_MESSAGES/gtk20-properties.mo
    share/locale/hu/LC_MESSAGES/gtk20.mo
    share/locale/hy/LC_MESSAGES/gtk20-properties.mo
    share/locale/hy/LC_MESSAGES/gtk20.mo
    share/locale/ia/LC_MESSAGES/gtk20-properties.mo
    share/locale/ia/LC_MESSAGES/gtk20.mo
    share/locale/id/LC_MESSAGES/gtk20-properties.mo
    share/locale/id/LC_MESSAGES/gtk20.mo
    share/locale/is/LC_MESSAGES/gtk20-properties.mo
    share/locale/is/LC_MESSAGES/gtk20.mo
    share/locale/it/LC_MESSAGES/gtk20-properties.mo
    share/locale/it/LC_MESSAGES/gtk20.mo
    share/locale/ja/LC_MESSAGES/gtk20-properties.mo
    share/locale/ja/LC_MESSAGES/gtk20.mo
    share/locale/ko/LC_MESSAGES/gtk20-properties.mo
    share/locale/ko/LC_MESSAGES/gtk20.mo
    share/locale/li/LC_MESSAGES/gtk20-properties.mo
    share/locale/li/LC_MESSAGES/gtk20.mo
    share/locale/lt/LC_MESSAGES/gtk20-properties.mo
    share/locale/lt/LC_MESSAGES/gtk20.mo
    share/locale/lv/LC_MESSAGES/gtk20-properties.mo
    share/locale/lv/LC_MESSAGES/gtk20.mo
    share/locale/mi/LC_MESSAGES/gtk20-properties.mo
    share/locale/mi/LC_MESSAGES/gtk20.mo
    share/locale/mk/LC_MESSAGES/gtk20-properties.mo
    share/locale/mk/LC_MESSAGES/gtk20.mo
    share/locale/ml/LC_MESSAGES/gtk20-properties.mo
    share/locale/ml/LC_MESSAGES/gtk20.mo
    share/locale/mn/LC_MESSAGES/gtk20-properties.mo
    share/locale/mn/LC_MESSAGES/gtk20.mo
    share/locale/mr/LC_MESSAGES/gtk20-properties.mo
    share/locale/mr/LC_MESSAGES/gtk20.mo
    share/locale/ms/LC_MESSAGES/gtk20-properties.mo
    share/locale/ms/LC_MESSAGES/gtk20.mo
    share/locale/nb/LC_MESSAGES/gtk20-properties.mo
    share/locale/nb/LC_MESSAGES/gtk20.mo
    share/locale/ne/LC_MESSAGES/gtk20-properties.mo
    share/locale/ne/LC_MESSAGES/gtk20.mo
    share/locale/nl/LC_MESSAGES/gtk20-properties.mo
    share/locale/nl/LC_MESSAGES/gtk20.mo
    share/locale/nn/LC_MESSAGES/gtk20-properties.mo
    share/locale/nn/LC_MESSAGES/gtk20.mo
    share/locale/no/LC_MESSAGES/gtk20-properties.mo
    share/locale/no/LC_MESSAGES/gtk20.mo
    share/locale/nso/LC_MESSAGES/gtk20-properties.mo
    share/locale/nso/LC_MESSAGES/gtk20.mo
    share/locale/pa/LC_MESSAGES/gtk20-properties.mo
    share/locale/pa/LC_MESSAGES/gtk20.mo
    share/locale/pl/LC_MESSAGES/gtk20-properties.mo
    share/locale/pl/LC_MESSAGES/gtk20.mo
    share/locale/pt/LC_MESSAGES/gtk20-properties.mo
    share/locale/pt/LC_MESSAGES/gtk20.mo
    share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo
    share/locale/pt_BR/LC_MESSAGES/gtk20.mo
    share/locale/ro/LC_MESSAGES/gtk20-properties.mo
    share/locale/ro/LC_MESSAGES/gtk20.mo
    share/locale/ru/LC_MESSAGES/gtk20-properties.mo
    share/locale/ru/LC_MESSAGES/gtk20.mo
    share/locale/rw/LC_MESSAGES/gtk20-properties.mo
    share/locale/rw/LC_MESSAGES/gtk20.mo
    share/locale/sk/LC_MESSAGES/gtk20-properties.mo
    share/locale/sk/LC_MESSAGES/gtk20.mo
    share/locale/sl/LC_MESSAGES/gtk20-properties.mo
    share/locale/sl/LC_MESSAGES/gtk20.mo
    share/locale/sq/LC_MESSAGES/gtk20-properties.mo
    share/locale/sq/LC_MESSAGES/gtk20.mo
    share/locale/sr/LC_MESSAGES/gtk20-properties.mo
    share/locale/sr/LC_MESSAGES/gtk20.mo
    share/locale/sr@Latn/LC_MESSAGES/gtk20-properties.mo
    share/locale/sr@Latn/LC_MESSAGES/gtk20.mo
    share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo
    share/locale/sr@ije/LC_MESSAGES/gtk20.mo
    share/locale/sv/LC_MESSAGES/gtk20-properties.mo
    share/locale/sv/LC_MESSAGES/gtk20.mo
    share/locale/ta/LC_MESSAGES/gtk20-properties.mo
    share/locale/ta/LC_MESSAGES/gtk20.mo
    share/locale/th/LC_MESSAGES/gtk20-properties.mo
    share/locale/th/LC_MESSAGES/gtk20.mo
    share/locale/tk/LC_MESSAGES/gtk20-properties.mo
    share/locale/tk/LC_MESSAGES/gtk20.mo
    share/locale/tr/LC_MESSAGES/gtk20-properties.mo
    share/locale/tr/LC_MESSAGES/gtk20.mo
    share/locale/uk/LC_MESSAGES/gtk20-properties.mo
    share/locale/uk/LC_MESSAGES/gtk20.mo
    share/locale/uz/LC_MESSAGES/gtk20-properties.mo
    share/locale/uz/LC_MESSAGES/gtk20.mo
    share/locale/uz@Latn/LC_MESSAGES/gtk20-properties.mo
    share/locale/uz@Latn/LC_MESSAGES/gtk20.mo
    share/locale/vi/LC_MESSAGES/gtk20-properties.mo
    share/locale/vi/LC_MESSAGES/gtk20.mo
    share/locale/wa/LC_MESSAGES/gtk20-properties.mo
    share/locale/wa/LC_MESSAGES/gtk20.mo
    share/locale/xh/LC_MESSAGES/gtk20-properties.mo
    share/locale/xh/LC_MESSAGES/gtk20.mo
    share/locale/yi/LC_MESSAGES/gtk20-properties.mo
    share/locale/yi/LC_MESSAGES/gtk20.mo
    share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo
    share/locale/zh_CN/LC_MESSAGES/gtk20.mo
    share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo
    share/locale/zh_TW/LC_MESSAGES/gtk20.mo
    share/themes/Default/gtk-2.0-key/gtkrc
    share/themes/Default/gtk-2.0/gtkrc
    share/themes/Emacs/gtk-2.0-key/gtkrc
    share/themes/MS-Windows/gtk-2.0/gtkrc

    To test your new GTK+ build, run gtk-demo.exe.


    gtk-demo 2> /tmp/error.txt

    gtk-demo-win-me

  6. Create gtkrc and pango.aliases for GTK+ Customization


    Create /etc/gtk-2.0/gtkrc to set up GTK+ theme and fonts. For example, mine looks like:


    gtk-theme-name = "MS-Windows"

    style "user-font"
    {
    font_name="Sans 9"
    }
    widget_class "*" style "user-font"

    Also, create /etc/pango/pango.aliases to set up font aliases. For example, mine looks like:


    Sans = "Arial,GulimChe,Haansoft Dotum,MS Sans Serif"
    Serif = "Times New Roman,Haansoft Batang"
    Monospace = "Courier New"

    Don't forget to set environment variables, such as HOME and LANG, too.


About This Blog

KBlog logo This blog seeks to provide a collection of interesting pictures found on the Web. Thanks for visiting the blog and posting your comments.

© Contents by KBlog

© Blogger template by Emporium Digital 2008

Followers

Total Pageviews

Powered By Blogger