Vadim Zeitlin
123dca7d25
don't declare pthread_mutexattr_settype() ourselves if the system already does it, we might have a slightly different declaration and this causes problems
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35702 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-25 22:48:06 +00:00
Vadim Zeitlin
7f47faf4f2
disable warning about data truncation (810) for icc (this is a useful warning and might be reenabled later but for now there are simply too many of them...)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-25 22:35:48 +00:00
Vadim Zeitlin
f536f00539
don't declare strptime() ourselves if the system already does it, we might have a slightly different declaration and this causes problems
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35699 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-25 22:34:03 +00:00
Vadim Zeitlin
48f625bc2c
corrected typo in check for icc
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-25 20:25:33 +00:00
Vadim Zeitlin
17a1ebd101
first round of Intel compiler warning fixes: down from a few thousands just to slightly more than 100
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-25 19:59:19 +00:00
Vadim Zeitlin
ab0ad5f175
add Intel compiler detection
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35681 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-25 14:31:09 +00:00
Michael Wetherell
5001df0dd5
Fixups for solaris; remove '-mt' from pkg-config output and add '-lX11' for a static build
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35670 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-25 07:12:02 +00:00
Vadim Zeitlin
254e8e2913
removed code defining NO_GCC_PRAGMA, we shouldn't need it any longer (alternatively, if user code requires it, we should always define it, but we still don't need any tests in configure)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35659 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-24 11:25:07 +00:00
Kevin Hock
6459a506bb
Use CXXFLAGS rather than CFLAGS for -Werror when determining type of socket function parameter (socklen_t vs. int) so that OS X 10.2 will correctly determine the parameter as an int; using -Werror forces the warnings thrown when attempting size_t to make configure fall back to int.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-24 04:38:57 +00:00
Michael Wetherell
6f9cf1e6bd
Regenerated after the lib64, lib/64 changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35603 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-19 20:48:59 +00:00
Vadim Zeitlin
c687b303a5
only check for lib directory for architectures which have multiple ABIs (Solaris, IRIX, Linux)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35591 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-19 10:28:55 +00:00
Vadim Zeitlin
7b94a67c64
fix to last commit: extra parentheses removed
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-19 00:54:41 +00:00
Vadim Zeitlin
f6b50c59ab
fix for creation of shared libraries under AIX with gcc
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-19 00:32:03 +00:00
Vadim Zeitlin
0ad5d837cb
regenerated after latest changes: alternative standard library directory name support; SGI CC dependencies; ...
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-18 13:32:10 +00:00
Vadim Zeitlin
9122d155ab
use -erroff=E_NO_EXPLICIT_TYPE_GIVEN option with Sun cc to avoid hundreds of warnings from Sun X11 headers
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-14 13:18:10 +00:00
David Elliott
8c80d38463
Use AC_CHECK_TOOL rather than AC_CHECK_PROG for AR, RANLIB, STRIP, RESCOMP,
...
and DLLTOOL. This automatically searches for tools with a prefix of
"$host_alias-" when cross compiling then falls back to the unprefixed tool name
if that fails. If the user specifies the tool using the appropriate variable
(e.g. CC, CXX, AR, RANLIB, STRIP, etc.) then it will be checked as is.
Removed the major hack that did something similar to this but simply
ignored user-provided variables and used default tool names. For example,
CC was locked to $host_alias-gcc when cross compiling even if the user
specified CC on the configure command-line.
This brings wxWidgets in line with other autoconf 2.5x projects. The only
downside to this approach is that our old method would fail if
$host_alias-toolname was not present whereas the autoconf method will silently
use the host compiler (which is usually _not_ what the user wants).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35454 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-09 22:17:09 +00:00
Michael Wetherell
62fa8b3a1d
Handle the case when (v)snprintf have the format declared as char* instead of
...
const char*.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35438 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-09-07 18:28:03 +00:00
Michael Wetherell
e051b34ef2
Fix for detection of motif headers when they are in a different place to X11,
...
correct error message (CPPFLAGS instead of CFLAGS) and add /usr/pkg/include
to SEARCH_INCLUDE (usual location on NetBSD).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35389 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-31 20:22:49 +00:00
Vadim Zeitlin
d12aef517e
regenerated after recent changes to configure.in
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35388 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-31 16:13:11 +00:00
Stefan Neis
9e03e02d0c
Replaced SOCKLEN_T by WX_SOCKLEN_T to resolve conflict with AIX system headers.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35387 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-31 15:48:41 +00:00
Vadim Zeitlin
d2822091a7
regenerated after libcairo filtering out changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35359 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-29 01:31:22 +00:00
Michael Wetherell
0042166636
Workarounds for old versions of gcc on hpux: define __STDC_EXT__ when it is
...
need and use -lpthread instead of -pthread when the latter is not supported.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35293 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-24 00:23:21 +00:00
Vadim Zeitlin
0683aca66e
fix for the last commit
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35292 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-23 23:34:06 +00:00
Vadim Zeitlin
84ae7ca4f6
check for missing statfs() prototype (happens at least under AIX 4)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35288 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-23 23:12:37 +00:00
Vadim Zeitlin
04e525a00d
regenerated after #error changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35274 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-22 23:54:57 +00:00
Vadim Zeitlin
4a767dd5cd
added test for snprintf() which may not be present in system headers, treat it similarly to vsnprintf() instead of assuming that it's always there
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35270 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-22 22:46:33 +00:00
Vadim Zeitlin
0ccaeba319
regenerated after undoing recent HP-UX changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-21 19:01:02 +00:00
Vadim Zeitlin
47bd540624
last commit accidentally used out of date aclocal.m4 and so overwrote some previous changes, corrected
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35246 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-20 15:38:19 +00:00
Vadim Zeitlin
efdf6afeb2
regenerated after HP-UX fixes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35245 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-20 15:33:03 +00:00
David Elliott
3e4ca115f5
Upgrade to newest bakefile.m4 to support non-PowerPC Darwin platforms.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35207 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-17 02:09:42 +00:00
David Elliott
cfda0ea87b
Allow wxWidgets to be built hosted on any architecture of Darwin.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35206 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-17 00:56:55 +00:00
David Elliott
1ff36a0a48
Regenerated with new bugfixes from aclocal.m4 and old OS/2 bugfix from
...
wxAutohacks build/autoconf_prepend-include/autoconf/c.m4
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-13 22:40:09 +00:00
Michael Wetherell
3c28b7cbc8
Regenerate after yesterday's fix for bug 1230877.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35153 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-08 13:44:17 +00:00
Vadim Zeitlin
38b4a946f3
added wxUSE_DC_CACHEING
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35100 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-04 20:54:16 +00:00
Vadim Zeitlin
6ebeb4c721
added tests for fsync() and pthread_cleanup_push/pop()
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-04 01:09:35 +00:00
Michael Wetherell
2113bc7764
Rebake after MSLU and other changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35063 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-08-03 16:10:12 +00:00
Michael Wetherell
083508af51
Baked again without '-b wx.bkl' to fully update autoconf_inc.m4 and regenerated configure
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-07-28 18:45:54 +00:00
Michael Wetherell
c946965956
Regenerate using autoconf/bakefile.m4 from bakefile CVS
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-07-28 17:48:31 +00:00
Michael Wetherell
810b94f0aa
Rebaked with patched bakefile 0.1.9.1, ran aclocal and autoconf
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34952 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-07-28 16:16:35 +00:00
Julian Smart
eb730a0ca9
Regenerated configure for 2.6.2
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34947 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-07-28 13:18:09 +00:00
Michael Wetherell
3eca31dc17
Allow cross compiling of wxX11, wxMotif and wxGTK
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-07-08 20:52:01 +00:00
Robert Roebling
87ae5038ef
define NO_GCC_PRAGMA if
...
- PCH
- GCC >= 4.0
- certain cases like Apple GCC, Mingw32 with certain other option
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34775 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-29 19:02:19 +00:00
Robert Roebling
87dd70d3c9
Added test case speficically for GCC >= 4.0 and
...
define NO_GCC_PRAGMA then.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34773 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-29 13:40:33 +00:00
Robert Roebling
ddd14b1483
Reverted GCC_NO_PRAGMA change
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34772 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-29 13:26:45 +00:00
Ron Lee
31b34ada76
Bump soname in preparation for 2.6.2 release.
...
Could someone please rebake this with whatever the correct
version + silent hacks is. Based on present reports I have
no idea which version and/or hacks to it are 'official', and
the crypto logic that bakefile is becoming famous for is in
shining form today:
$ bakefile_gen -fautoconf
-----------------------------------------------------------------------
This file cannot be processed with Bakefile version older than 0.1.7.
You are using Bakefile version 0.1.6. Please install the newest version
from http://bakefile.sourceforge.net .
-----------------------------------------------------------------------
It's always good to have a nice conundrum to ponder while your
code is not building...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34741 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-23 01:26:23 +00:00
Michael Wetherell
7275146d4d
Unrevert Cygwin changes after discussion. Cygwin will be unix with the new
...
version of bakefile, but allow wxMSW to stay a Windows build until there is
a unix version of it.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34739 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-22 20:58:47 +00:00
Ron Lee
8c53958268
Fix the test for NO_GCC_PRAGMA to be faster and more accurate.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-17 14:57:13 +00:00
Michael Wetherell
ff8fbb8dbe
Revert Cygwin changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34672 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-16 15:31:33 +00:00
Michael Wetherell
3d94765e6e
Let Cygwin be a Windows build for wxMSW and a unix build otherwise
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-16 13:58:23 +00:00
Michael Wetherell
abc736fd0e
Declare gtk_icon_size_lookup if it is missing from the GTK+ headers (Bug 1177079)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34629 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-10 12:04:15 +00:00
Robin Dunn
063c96c1c5
Subrelease version bump
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-09 19:00:06 +00:00
Michael Wetherell
a9e5b1f04b
Dependency tracking for Sun CC
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34551 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-06 19:34:32 +00:00
Michael Wetherell
ee45c548e6
Detect Apple bug that prevents the joystick code compiling for OS X 10.1
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-04 17:45:24 +00:00
Julian Smart
d230c01b47
Updated version
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34517 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-06-02 09:12:58 +00:00
Robin Dunn
7a070ef1cb
Version number bump
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34428 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-30 19:52:20 +00:00
Michael Wetherell
19b27e78cf
wxBase compilation fix for Mac, with help from Ryan
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-27 13:18:50 +00:00
Michael Wetherell
0caebc27b4
No install_name_tool on OS X 10.1
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34347 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-26 16:48:32 +00:00
Michael Wetherell
18228ab4f0
Set wxUSE_ON_FATAL_EXCEPTION to no for non-unix
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34318 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-24 17:15:14 +00:00
Michael Wetherell
df1b269d2f
Allow -Wl,* options to shared-ld-sh
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34231 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-21 23:51:37 +00:00
Julian Smart
fb00f58d24
Removed last fix to aclocal.m4
...
Fixed configure.in for Wine
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-17 21:21:17 +00:00
Michael Wetherell
489c9090ef
Disable debugrpt sample for Windows since it's not supported with mingw/cygwin
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-17 14:28:18 +00:00
Michael Wetherell
4b9918c5ae
Only automatically switch off --enable-std_string or --enable-std_iostreams
...
if they are not on the command line, fail with an error otherwise.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34008 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-10 13:29:20 +00:00
Michael Wetherell
f56c22b4b2
Detect when --enable-std_string or --enable-std_iostreams won't work and
...
switch them off.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34007 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-05-10 11:12:58 +00:00
Michael Wetherell
9c11255519
The mmedia contrib requires sys/soundcard.h on unix, so disable it on unix
...
platforms that do not have it.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33913 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-29 01:14:26 +00:00
Robin Dunn
d26fbe5419
Bump subrelease number
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-27 05:45:40 +00:00
Michael Wetherell
83d8eb470b
Remove msdos code now in src/msdos, update bakefiles and regenerate.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33876 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-25 10:28:59 +00:00
Michael Wetherell
47a7e797da
Regerate with djgpp fixes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-22 16:45:24 +00:00
Michael Wetherell
e5d4b470c9
Test for --version-script bug, known to be in at least ld 2.11.2 on netbsd and openbsd.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33819 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-22 12:30:38 +00:00
Robin Dunn
a03b8b0472
Make std_string and std_iostreams default to disabled for MSW, Mac and OS2
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-18 22:51:11 +00:00
Michael Wetherell
21dfc16274
Only generate a makefile for the debugrpt sample when wxUSE_ON_FATAL_EXCEPTION=1
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33685 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-16 22:08:43 +00:00
Stefan Neis
52cb607ea9
Changed back DEFAULT_wxUSE_OPENGL to no so configure no longer completely
...
breaks on platforms without OpenGL support.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33662 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-16 13:24:35 +00:00
Robin Dunn
1a79f136f7
wx-config doesn't need to output the resource file name, since it is
...
no longer built for wxMac
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33634 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-15 20:44:58 +00:00
Michael Wetherell
f34ca03799
New --with-gtk=VERSION syntax, and restore --disable-gtk2 for backward compatibility
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-15 14:18:30 +00:00
Michael Wetherell
f597b41c5a
Replace --disable-gtk2 with --with-gtk1 and --with-gtk2
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33592 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-13 23:07:55 +00:00
Vadim Zeitlin
78de529bad
mistakenly enabled by default --enable-unicode switched off again by default
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33566 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-13 13:03:56 +00:00
Ron Lee
e0d84535b9
Regenerated after version bump.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33512 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-11 16:08:41 +00:00
Ron Lee
52ada00472
Enabled opengl and unicode by default too as discussed.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33505 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-11 12:50:18 +00:00
Mattia Barbon
0a08f02aef
Check that std::basic_string<wchar_t> actually works before
...
trying to use it.
Fail at configure time when trying to compile wxMotif with Unicode.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33472 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-10 14:54:34 +00:00
Stefan Neis
fbe2ca438b
Added support for toggle button on OS/2.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33449 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-09 11:07:00 +00:00
Robin Dunn
94e3a8938b
bumped subrelease number
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33423 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-08 03:06:52 +00:00
Michael Wetherell
59746b65ea
Add "-framework IOKit -framework CoreServices -framework System" to wxBase on mac.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33398 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-07 00:24:08 +00:00
Ron Lee
7480218428
Rearrange the magic order we use instead of proper dependencies for
...
the builtin libs to at least give things a chance of working.
Don't include odbc there twice either. Closes 1175402, thanks.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-02 16:42:56 +00:00
David Elliott
9dd0f6c28d
Regenerated using wxAutohacks.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33259 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-04-02 04:45:55 +00:00
Julian Smart
dfe0c8037b
Use AC_TRY_LINK for demangle
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-29 08:00:27 +00:00
Vadim Zeitlin
9d27183802
fixed test for GTK+ 2.4: was always false on a second or subsequent configure run if caching was used
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33111 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-27 22:42:10 +00:00
Vadim Zeitlin
69120ee48a
make it clear which GL(U) library we can't find in error messages, otherwise the user has no idea what exactly failed
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33096 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-27 16:12:13 +00:00
David Elliott
898beab1cd
Disable wxStackWalker on platforms other than Win32 or UNIX.
...
For instance, Mac OS (PEF) doesn't have an implementation.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33083 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-27 04:06:37 +00:00
David Elliott
6dcfc2898e
Moved compiler detection macros to Bakefile.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-26 03:49:38 +00:00
Michael Wetherell
63c4f6da73
configure fix for OS/2 from Dave Parsons and David Webster
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33046 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-25 16:32:45 +00:00
Vadim Zeitlin
a603d77ec1
build debugrpt sample if wxUSE_DEBUGREPORT
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32963 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-21 20:21:04 +00:00
Vadim Zeitlin
1635893246
define USE_QA so that qa library is built
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32962 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-21 19:36:04 +00:00
Vadim Zeitlin
6671c68b08
regenerated after qa lib changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-21 10:36:27 +00:00
Vadim Zeitlin
61639efb66
added qa library (currently consisting of wxDebugReport and related classes only); moved debugrpt.* files there
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32942 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-21 00:11:06 +00:00
Robin Dunn
83c84d5908
Bumped subrelease number
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32907 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-19 00:38:46 +00:00
David Elliott
0e6fa1d908
Fixed MW and XLC tests when using -C (cache) option with configure.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32863 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-17 17:47:33 +00:00
David Elliott
fbb7dfffb0
Updated configure and aclocal.m4 for new 0.1.8 Bakefile on account of
...
the recent commit to autoconf_inc.m4 using Bakefile 0.1.8 (CVS).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32861 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-17 17:38:51 +00:00
Vadim Zeitlin
1e1ef90060
disable debug report for now
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-14 20:40:24 +00:00
David Elliott
1d1af5eaf0
Make wxCocoa compile on Tiger.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32810 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-14 04:47:28 +00:00
Michael Wetherell
8bce5cda15
Add samples mobile and ownerdrw. Make sample richedit available on all
...
platforms for fixing.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32766 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-11 22:13:23 +00:00
Vadim Zeitlin
36b6448cc3
added wxUSE_DEBUGREPORT
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32739 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-11 00:19:17 +00:00