From 3c775050a0fc75b8a8e86409d267ab869949e884 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 21 Sep 2003 11:18:41 +0000 Subject: [PATCH] fixed wx-config --rezflags output on platforms != Mac git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@23771 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- configure.in | 2 ++ docs/changes.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/configure.in b/configure.in index b930d0752f..b3bd63ca37 100644 --- a/configure.in +++ b/configure.in @@ -3097,6 +3097,8 @@ if test "$wxUSE_MAC" = 1; then else if test "$wxUSE_PM" = 1; then LIBWXMACRESCOMP="emxbind -ep \$(BIN_PROGRAM)" + else + LIBWXMACRESCOMP="#" fi fi diff --git a/docs/changes.txt b/docs/changes.txt index ab3fbccd3e..a5b56fe933 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -206,6 +206,7 @@ Unix: - fixed build problems with OpenGL when libGL(U) were in different directories - added --basename and --release flags to wx-config (Robert O'Connor) - added support for GNU/Hurd in configure +- fixed wx-config --rezflags output on platforms different from Mac - changed wxNativeFontInfo::FromXFontName to treat names with all components being empty or '*' as default font (since default font is converted to such a string by GetXFontName).