diff options
author | Tor Lillqvist <tml@iki.fi> | 2001-11-02 22:56:59 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2001-11-02 22:56:59 +0000 |
commit | 1d15be159965ca4465127a3d1f7833a47080fa5a (patch) | |
tree | 900d5d8fad8cbfc5f3704a07cf32a8eacab8d312 /po | |
parent | 050625298e15a57543ffefcce79ef2bf8edcc184 (diff) | |
download | gtk+-1d15be159965ca4465127a3d1f7833a47080fa5a.tar.gz |
Use -no-undefined on Windows. Look for .dll or .so as appropriate as
2001-11-03 Tor Lillqvist <tml@iki.fi>
* modules/input/Makefile.am: Use -no-undefined on Windows. Look
for .dll or .so as appropriate as module suffix.
* gtk-zip.sh.in: Use correct import library names.
* gtk/gtk.def: Add a couple of missing entry points. (#63585)
2001-11-02 Tor Lillqvist <tml@iki.fi>
* gtk/gtkrc.c (gtk_rc_make_default_dir): Fix typo: extraneous
comma. Include gtkprivate.h for GTK_LIBDIR etc definitions on
Windows.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* Makefile (install-data-hook): Use cp, not $(LN_S) on the .pc
files. Configure on Win32 (running on Cygwin) thinks symlinks
exist, but pkg-config is not necesarily a Cygwin program, and
doesn't understand them.
Diffstat (limited to 'po')
-rw-r--r-- | po/ChangeLog | 4 | ||||
-rw-r--r-- | po/makefile.mingw | 14 |
2 files changed, 10 insertions, 8 deletions
diff --git a/po/ChangeLog b/po/ChangeLog index e3ee6c1937..54a78e7b4e 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2001-11-03 Tor Lillqvist <tml@iki.fi> + + * makefile.mingw: Update according to my current conventions. + 2001-10-24 Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz> * sk.po: More updates. diff --git a/po/makefile.mingw b/po/makefile.mingw index 21f4069010..e40ad35ff7 100644 --- a/po/makefile.mingw +++ b/po/makefile.mingw @@ -5,21 +5,19 @@ ## To convert the clear-text message catalogs to binary form (.gmo) ## files you will need msgfmt, from GNU gettext. -# This file is included from other po directories, too. -# They should define their own PACKAGE and possibly INSTALLSUBDIR -# and LOCALEDIR macros +# This file is possibly included from other po directories, too. They +# should define their own PACKAGE and possibly INSTALLSUBDIR and +# LOCALEDIR macros ifndef PACKAGE PACKAGE = gtk20 endif -ifndef INSTALLSUBDIR -INSTALLSUBDIR = $(PACKAGE) -endif + ifndef LOCALEDIR # This is what I use as installation target, from where the installer-builder # will pick it up. The end-user installation location will be asked by -# the installer (typically %WinDir%\gtk+). -LOCALEDIR = /install/$(INSTALLSUBDIR)/locale +# an installer. +LOCALEDIR = /target/lib/locale endif LANGUAGES = $(subst .po,,$(wildcard *.po)) |