Vadim Zeitlin
|
70c536f394
|
added --disable-vararg_macros option to allow not using vararg macros even if they're supported (useful if the user code doesn't want to use C99 extensions)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43754 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-12-03 13:41:06 +00:00 |
|
Michael Wetherell
|
e604ac7991
|
Rename boolean to wxjpeg_boolean to avoid conflicts, e.g. with boolean
defined in the Windows headers.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43705 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-28 16:24:45 +00:00 |
|
Stefan Neis
|
252a502277
|
Replaced "egrep" by "$EGREP" (predefined by configure anyway).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43642 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-25 17:29:21 +00:00 |
|
Vadim Zeitlin
|
ddbd3cd58b
|
force linux/joystick.h header compilation (and not just presence) check to fix the build under Linux 2.6.16 with its broken joystick.h
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43641 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-25 16:20:11 +00:00 |
|
Václav Slavík
|
d7ae4a6264
|
moved wxMGL's font management code to common so that it can be reused by wxDFB; implemented wxDFB part
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43550 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-20 20:45:57 +00:00 |
|
Vadim Zeitlin
|
a1b1cf33e1
|
disable mmedia contrib for wxMGL (blunt fix for tinderbox compilation error)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-16 23:33:22 +00:00 |
|
Vadim Zeitlin
|
3ad202f9be
|
regenerated after last autoconf_inc.m4 change
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43416 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-14 15:44:54 +00:00 |
|
Vadim Zeitlin
|
2e35565ac8
|
disable wxGLCanvas for wxMGL and wxDFB which don't support it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43401 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-13 19:50:59 +00:00 |
|
Stefan Neis
|
e43101ee40
|
Need to check for getsockopt argument in C++ mode.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43312 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-11 17:19:59 +00:00 |
|
Vadim Zeitlin
|
38c6938f8d
|
use C++ for variadic macros test as e.g. gcc 2.95.4 supports them while g++ 2.95 does not
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-10 12:40:38 +00:00 |
|
Vadim Zeitlin
|
715d53e4e1
|
use C++ compiler for timezone test, otherwise wrong timezone is detected under cygwin
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-10 12:36:32 +00:00 |
|
Robin Dunn
|
25bb1412af
|
Move version number to 2.8.0.0 and rebake the makefiles
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43255 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-10 02:32:01 +00:00 |
|
Vadim Zeitlin
|
9b8888f922
|
regenerated after last changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-10 01:33:15 +00:00 |
|
Vadim Zeitlin
|
55e345713a
|
shave 30KB off configure size by using a single AC_CHECK_HEADER() for multiple headers instead of 6 different AC_CHECK_HEADER() calls which are strictly quivalent but expand the macro 5 times unnecessarily
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43228 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-09 15:44:02 +00:00 |
|
Vadim Zeitlin
|
a49ffb32e2
|
include widec.h if it's available, it contains declarations of [f]putws() under Solaris
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43227 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-09 15:35:09 +00:00 |
|
Vadim Zeitlin
|
fd5199d66b
|
use C compiler for tests again, it's useless to use the C++ one for AC_CHECK_FUNCS() test anyhow; do use WX_CHECK_FUNCS() instead of several AC_CHECK_FUNCS() where we need to make sure that the function declaration is available
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43226 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-09 15:30:37 +00:00 |
|
Vadim Zeitlin
|
2dbd07cb7a
|
don't create version-script file if it's not used
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43223 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-09 12:08:51 +00:00 |
|
Vadim Zeitlin
|
077c78808f
|
don't use version script under cygwin/mingw32, it's useless and breaks the link after latest autoconf-2.60-related bakefile 0.2.1 changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43222 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-09 12:03:54 +00:00 |
|
Vadim Zeitlin
|
b6814e24ef
|
disable joystick for wxMGL, it's not implemented there
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43134 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-06 23:57:43 +00:00 |
|
Vadim Zeitlin
|
74d92aac47
|
disable net contrib for non-Unix nor Windows platforms (e.g. wxMGL under DOS)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-06 23:21:24 +00:00 |
|
Robin Dunn
|
99a2637bdb
|
use the 0.2.1 version of bakefile.m4
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43126 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-06 17:37:49 +00:00 |
|
Vadim Zeitlin
|
480b9f185f
|
disable wxSound for wxMGL DOS build (it's not implemented there)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43123 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-06 16:15:49 +00:00 |
|
Vadim Zeitlin
|
56c6aab7e6
|
disable dialup manager for MGL, it doesn't link as there is no DOS implementation of it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43120 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-06 13:05:50 +00:00 |
|
Vadim Zeitlin
|
a485900cf0
|
regenerated after changes in rev 1.15 of build/aclocal/bakefile/m4
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-04 20:34:25 +00:00 |
|
Vadim Zeitlin
|
e541dae02d
|
fix messages for OpenGL headers detection
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43055 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-04 20:13:26 +00:00 |
|
Vadim Zeitlin
|
5dfc7e56e5
|
test for GL/glu.h too (fixes part of bug 879474)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-04 17:40:31 +00:00 |
|
Vadim Zeitlin
|
02b0502025
|
look for OpenGL headers/libraries in /opt/graphics/OpenGL as this is where they're found on HP-UX systems apparently (closes bug 925307)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43044 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-04 17:33:37 +00:00 |
|
Vadim Zeitlin
|
8bf7f1a9fe
|
regenerated after last fix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43008 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-04 03:12:17 +00:00 |
|
Vadim Zeitlin
|
6da4ac91a9
|
regenerated after two last configure.in changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43006 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-11-04 02:58:56 +00:00 |
|
Vadim Zeitlin
|
d6fb552774
|
call PKG_PROG_PKG_CONFIG before checking for gnomeprintui, gnomevfs and hildon libraries -- otherwise they were never detected
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42863 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-31 16:46:49 +00:00 |
|
Vadim Zeitlin
|
d8f2f99ff7
|
don't define WINVER as 0x0400 in configure, it's defined in the headers as 0x0600 if it's not defined
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42849 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-31 14:34:43 +00:00 |
|
Vadim Zeitlin
|
bb9e79c05e
|
added --enable-tga (on by default)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-31 00:41:43 +00:00 |
|
Robert Roebling
|
bd915acef1
|
Commit configure.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-30 21:43:22 +00:00 |
|
Michael Wetherell
|
916af76f40
|
Make wxBackingFile internal, and remove wxZipFSHander, add a typedef to
wxArchiveFSHandler for compatibilty.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-29 20:06:45 +00:00 |
|
Robin Dunn
|
2add9e3c2f
|
Moved version number to 2.7.2.0 and rebaked
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-28 21:54:52 +00:00 |
|
Vadim Zeitlin
|
ec3edcc984
|
check for strtoull() or wcstoull()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42585 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-28 17:13:19 +00:00 |
|
Michael Wetherell
|
6c7f5e56a8
|
Another fix for the pch bug test.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-28 11:53:44 +00:00 |
|
Michael Wetherell
|
be49c6ecde
|
Another fix for the pch bug test.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-28 11:07:20 +00:00 |
|
Michael Wetherell
|
6d952fd76f
|
Fix bugs in check for gcc's precompiled header bug.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-28 10:31:43 +00:00 |
|
Michael Wetherell
|
b2983f422f
|
Fix portibility bug.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42550 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-28 01:15:16 +00:00 |
|
Michael Wetherell
|
26e422a9ad
|
Add wxUSE_TARSTREAM and wxUSE_FS_ARCHIVE.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42502 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-27 09:12:27 +00:00 |
|
Michael Wetherell
|
a81d5bb62c
|
On unicode builds detect gcc 3.4 precompiled header bug (bugzilla 13361).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42302 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-23 21:20:26 +00:00 |
|
Robin Dunn
|
f2b79dadee
|
Bump subrelease number
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42298 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-23 20:15:41 +00:00 |
|
Michael Wetherell
|
f8f6c91a0f
|
Added wxBackingFile and wxBackedInputStream.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42279 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-23 14:47:07 +00:00 |
|
Vadim Zeitlin
|
ac70b90bb4
|
why was using std::string and streams disabled by default for mingw32 and cygwin? enabled it back
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42236 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-22 12:50:43 +00:00 |
|
Robin Dunn
|
81bfc17cc6
|
bump subrelease number
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42138 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-19 23:24:08 +00:00 |
|
Vadim Zeitlin
|
479c790cb7
|
must use PKG_PROG_PKG_CONFIG before PKG_CHECK_MODULES; fixes configure for Unicode wxX11 build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42123 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-19 15:12:46 +00:00 |
|
Robert Roebling
|
88bbc3329b
|
Test for KDE and GNOME using session manager vendor.
Use it in mime types initialization.
Add wxUSE_DETECT_SM
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42098 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-18 21:55:54 +00:00 |
|
Robin Dunn
|
64b75e644a
|
Ensure Cairo is installed before setting wxUSE_GRAPHICS_CONTEXT for
wxGTK builds
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42020 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-14 18:07:42 +00:00 |
|
Robin Dunn
|
6850c57605
|
bump subrelease number
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-13 19:01:02 +00:00 |
|
Paul Cornett
|
7067783d90
|
animatectrl typo
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41944 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-11 17:00:24 +00:00 |
|
Vadim Zeitlin
|
3ea50042c9
|
regenaretd after samples/animate addition
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41821 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-09 17:56:09 +00:00 |
|
Robert Roebling
|
f1e3914fde
|
Bump version.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-08 19:49:24 +00:00 |
|
Vadim Zeitlin
|
319c5ed4d2
|
added --enable-aboutdlg
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41697 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-08 12:21:57 +00:00 |
|
Robin Dunn
|
f43426c1b9
|
Bakefile changes for building the graphics context modules, and
setup/configure changes for setting wxUSE_GRAPHICS_CONTEXT.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-10-04 03:13:03 +00:00 |
|
Vadim Zeitlin
|
81c330c6f0
|
fixed confusing double messages about getservbyname_r() test result, made the checking message consistent with gethostbyname_r() one
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41500 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-29 00:03:27 +00:00 |
|
Vadim Zeitlin
|
4353a8df6e
|
add compilation options to allow compiling in just the selected wxUniv themes and not all of them (which is still the default)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41494 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-28 22:55:28 +00:00 |
|
Vadim Zeitlin
|
ca5c6ac3f4
|
Added wxUSE_VARIANT and the related checks, also added wxUSE_OLE_AUTOMATION
to guard wxAutomationObject code which depends on wxVariant
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41416 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-24 13:12:56 +00:00 |
|
Robert Roebling
|
95a4630380
|
[ 1559479 ] wxImageComboBox
Actually wxBitmapComboBox. Also commited configure.
Not yet updated Makefiles.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-23 09:14:49 +00:00 |
|
Michael Wetherell
|
58e65954e9
|
Minor cleanup: use AC_CHECK_DECLS for the gtk_icon_size_lookup check instead of
AC_TRY_COMPILE.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41247 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-16 08:09:43 +00:00 |
|
Robert Roebling
|
6a5c9b3ff7
|
Apply patch [ 1548750 ] wxVsnprintf() various fixes
Part II.
c
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41093 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-09 14:11:21 +00:00 |
|
Vadim Zeitlin
|
5039a2df01
|
define wx_cv_func_snprintf_pos_params when cross-compiling too
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41055 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-07 22:03:11 +00:00 |
|
Vadim Zeitlin
|
15291213d7
|
enable support for printf positional parameters by default
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41030 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-06 09:51:24 +00:00 |
|
Václav Slavík
|
ca766534cf
|
use macros to completely remove wxLogTrace, wxLogDebug etc. in release build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41015 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-05 14:21:08 +00:00 |
|
Michael Wetherell
|
dcfd4ac412
|
A better compile fix for Wine (which lacks pbt.h).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41005 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-04 18:33:31 +00:00 |
|
Michael Wetherell
|
5f41d1bf1d
|
Define HAVE_BOOLEAN when the Windows headers declare 'boolean' to avoid a
conflict with the jpeg headers which will otherwise also declare it.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-04 17:57:17 +00:00 |
|
Robin Dunn
|
5b5d4ef2dd
|
bump subrel number
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40963 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-09-02 19:45:44 +00:00 |
|
Michael Wetherell
|
56632e818f
|
Use WX_CHECK_FUNCS for strtok_r.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40889 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-28 07:53:48 +00:00 |
|
Vadim Zeitlin
|
737d3175f3
|
relax DFB version requirements to work with 0.9.22 and not only the latest 0.9.25
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-27 13:45:58 +00:00 |
|
Václav Slavík
|
b3c861501a
|
initial (not yet working) code for DirectFB port
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40865 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-27 09:42:42 +00:00 |
|
Václav Slavík
|
452b624353
|
set wxUSE_TOOLBAR_NATIVE to 0 when --enable-universal is used
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40767 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-23 10:15:43 +00:00 |
|
Václav Slavík
|
27cc91429d
|
removed wxUSE_TOOLBAR_SIMPLE leftovers from the main sources, it's not used anywhere anymore
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40766 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-23 09:54:29 +00:00 |
|
Michael Wetherell
|
82a2636b8c
|
Switch to AC_CHECK_DECLS instead of WX_CHECK_DECLS.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-22 21:55:01 +00:00 |
|
Michael Wetherell
|
5acfd58da0
|
Add WX_CHECK_DECLS macro and try it out on strtok_r. Otherwise the test for
strtok_r succeeds on Minix though the function is not available.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40754 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-22 21:15:21 +00:00 |
|
Vadim Zeitlin
|
c2e9ada498
|
tidy up configure output, don't show gnomeprint/vfs/hildon for non-GTK ports
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40689 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-19 23:17:07 +00:00 |
|
Michael Wetherell
|
3ecd9f92e4
|
Regereate after updating the m4 macros.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40652 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-16 20:35:04 +00:00 |
|
Vadim Zeitlin
|
8f3773fdfd
|
disable positional printf params for now as there are problems with our vsnprintf() version
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40606 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-14 00:38:23 +00:00 |
|
Michael Wetherell
|
9576853579
|
Add parameter to the --enable-universal_binary option for the path to the SDK.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40549 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-10 13:38:23 +00:00 |
|
Michael Wetherell
|
bc023abbbb
|
Detect and use sys/select.h required by POSIX for select
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40530 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-09 11:18:24 +00:00 |
|
Vadim Zeitlin
|
31714590f3
|
test for sys/soundcard.h was failing because of missing sys/ioctl.h
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-08-05 13:24:02 +00:00 |
|
Vadim Zeitlin
|
2f6c5bb5f2
|
nicer messages for gstreamer detection
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40379 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-07-29 23:54:05 +00:00 |
|
Vadim Zeitlin
|
c9a6600136
|
regenerated after recent changes (MirBSD support; continue even if the system is unknown)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40363 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-07-29 15:13:32 +00:00 |
|
Julian Smart
|
8b6682b97c
|
Respun configure for richtext library
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-06-29 07:55:33 +00:00 |
|
Julian Smart
|
3f60522a05
|
Updated configure for wxAUI
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39592 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-06-06 14:06:31 +00:00 |
|
Vadim Zeitlin
|
e926368418
|
regenerated after wxColour/File/Dir/FontPickerCtrl changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-06-01 00:17:43 +00:00 |
|
Vadim Zeitlin
|
6954625c85
|
regenerated after the recent changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39413 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-05-29 00:32:16 +00:00 |
|
Julian Smart
|
d25774ab97
|
wxToggleButton for wxUniversal: configure changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39297 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-05-23 18:09:50 +00:00 |
|
Vadim Zeitlin
|
a57d600f1a
|
renamed wxComboControl to wxComboCtrl and related wxUSE_XXX and configure switches for consistency with the other ones
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39167 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-05-16 22:57:40 +00:00 |
|
Vadim Zeitlin
|
642bcba929
|
wxUSE_COMBOCONTROL and wxUSE_OWNERDRAWNCOMBOBOX added
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39118 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-05-08 23:57:40 +00:00 |
|
Vadim Zeitlin
|
1b52ba67a1
|
just regenerated with autoconf
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39117 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-05-08 23:55:08 +00:00 |
|
Stefan Neis
|
6ba87b0697
|
Need to do tests for compiler version (to determine C++ libs needed to
successfully link C++ core) in C mode on OS/2.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39103 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-05-07 14:43:41 +00:00 |
|
Vadim Zeitlin
|
e56f4f9e90
|
use CXXFLAGS instead of CFLAGS in several places now that the tests are done using C++ compiler
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38808 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-04-18 22:06:57 +00:00 |
|
Vadim Zeitlin
|
5d7b75542e
|
regenaretd configure after AC_LANG changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-04-18 21:07:06 +00:00 |
|
Robert Roebling
|
2b850ae1a5
|
Rearrange code to make adding wxMimeTypesManagerFactory
at runtim possible.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-03-17 14:13:02 +00:00 |
|
Vadim Zeitlin
|
e5efa97ec1
|
regenerated after changes in configure.in in revisions 1.1116 and 1.1117
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38029 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-03-12 14:44:43 +00:00 |
|
Michael Wetherell
|
d6bf7254f4
|
Add -fno-strict-aliasing to the optimisation flags for gcc as discussed on wx-dev
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37511 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-02-12 01:55:41 +00:00 |
|
Vadim Zeitlin
|
f10e38c48a
|
regenerated with bakefile 0.2.0 m4 files
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37467 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-02-10 20:22:27 +00:00 |
|
Michael Wetherell
|
9e39d88994
|
Remove richedit sample from configure
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37358 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-02-06 18:01:48 +00:00 |
|
Julian Smart
|
5ec3bc4302
|
Regenerated configure for wxToolbook
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37234 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-01-31 14:37:49 +00:00 |
|
Kevin Ollivier
|
7afc46abae
|
Fixes for wxMac Universal binary support. With these changes, I now get a working Universal build simply by passing --enable-universal_build to configure.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2006-01-26 23:54:31 +00:00 |
|