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 /gtk/gtkrc.c | |
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 'gtk/gtkrc.c')
-rw-r--r-- | gtk/gtkrc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkrc.c b/gtk/gtkrc.c index 204eb8214d..806896adf9 100644 --- a/gtk/gtkrc.c +++ b/gtk/gtkrc.c @@ -53,6 +53,7 @@ #include "gtkthemes.h" #include "gtkintl.h" #include "gtkiconfactory.h" +#include "gtkprivate.h" #include "gtksettings.h" #include "gtkwindow.h" @@ -304,7 +305,7 @@ gtk_rc_make_default_dir (const gchar *type) if (var) path = g_build_filename (var, "lib", "gtk-2.0", type, GTK_BINARY_VERSION, NULL); else - path = g_build_filename (GTK_LIBDIR, "gtk-2.0,", type, GTK_BINARY_VERSION, NULL); + path = g_build_filename (GTK_LIBDIR, "gtk-2.0", type, GTK_BINARY_VERSION, NULL); return path; } |