From: Ron Lee Date: Sun, 19 Mar 2000 23:04:18 +0000 (+0000) Subject: fixed broken test for wxUSE_JOYSTICK in configure. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ceded8b9250b37fa64d8e857eb00dc59e0d7620d fixed broken test for wxUSE_JOYSTICK in configure. added joytest sample to samples_dist and samples/configure. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/Makefile.in b/Makefile.in index de2bac5eb1..e493a91229 100644 --- a/Makefile.in +++ b/Makefile.in @@ -870,6 +870,13 @@ SAMPLES_DIST: ALL_GUI_DIST cp $(SAMPDIR)/ipc/*.h $(DISTDIR)/samples/ipc cp $(SAMPDIR)/ipc/*.xpm $(DISTDIR)/samples/ipc + mkdir $(DISTDIR)/samples/joytest + cp $(SAMPDIR)/joytest/Makefile.in $(DISTDIR)/samples/joytest + cp $(SAMPDIR)/joytest/makefile.unx $(DISTDIR)/samples/joytest + cp $(SAMPDIR)/joytest/*.cpp $(DISTDIR)/samples/joytest + cp $(SAMPDIR)/joytest/*.h $(DISTDIR)/samples/joytest + cp $(SAMPDIR)/joytest/*.wav $(DISTDIR)/samples/joytest + mkdir $(DISTDIR)/samples/layout cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout diff --git a/configure b/configure index bff31c003d..6056e81723 100755 --- a/configure +++ b/configure @@ -9281,7 +9281,7 @@ else int main() { /* Ultrix mips cc rejects this. */ -typedef int charset[2]; const charset x; +typedef int charset[2]; const charset x = {0,0}; /* SunOS 4.1.1 cc rejects this. */ char const *const *ccp; char **p; @@ -9356,7 +9356,7 @@ for ac_kw in inline __inline__ __inline; do #include "confdefs.h" int main() { -} $ac_kw foo() { +} int $ac_kw foo() { ; return 0; } EOF if { (eval echo configure:9363: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then @@ -12975,7 +12975,7 @@ fi if test "$TOOLKIT" != "MSW"; then -if test "$wxUSE_JOYSTICK" = 1; then +if test "$wxUSE_JOYSTICK" = "yes"; then for ac_hdr in linux/joystick.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` @@ -13017,14 +13017,14 @@ fi done if test "$ac_cv_header_linux_joystick_h" != "yes"; then - wxUSE_JOYSTICK=0 + wxUSE_JOYSTICK=no echo "configure: warning: Joystick not supported yb this system" 1>&2 fi fi fi -if test "$wxUSE_JOYSTICK" = 1; then +if test "$wxUSE_JOYSTICK" = "yes"; then cat >> confdefs.h <<\EOF #define wxUSE_JOYSTICK 1 EOF diff --git a/configure.in b/configure.in index 0efb1593c5..bee2316ac9 100644 --- a/configure.in +++ b/configure.in @@ -3057,11 +3057,11 @@ dnl --------------------------------------------------------------------------- dnl under MSW we always have joystick support if test "$TOOLKIT" != "MSW"; then -if test "$wxUSE_JOYSTICK" = 1; then +if test "$wxUSE_JOYSTICK" = "yes"; then dnl joystick support is only for Linux 2.1.x or greater AC_CHECK_HEADERS(linux/joystick.h) if test "$ac_cv_header_linux_joystick_h" != "yes"; then - wxUSE_JOYSTICK=0 + wxUSE_JOYSTICK=no AC_MSG_WARN(Joystick not supported yb this system, disabled) fi fi @@ -3069,7 +3069,7 @@ fi fi dnl if !MSW -if test "$wxUSE_JOYSTICK" = 1; then +if test "$wxUSE_JOYSTICK" = "yes"; then AC_DEFINE(wxUSE_JOYSTICK) SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest" fi diff --git a/samples/configure b/samples/configure index 1a376c1a05..839a611c85 100755 --- a/samples/configure +++ b/samples/configure @@ -669,6 +669,7 @@ trap 'rm -fr `echo " image/Makefile internat/Makefile ipc/Makefile + joytest/Makefile layout/Makefile listctrl/Makefile mdi/Makefile @@ -811,6 +812,7 @@ CONFIG_FILES=\${CONFIG_FILES-"Makefile image/Makefile internat/Makefile ipc/Makefile + joytest/Makefile layout/Makefile listctrl/Makefile mdi/Makefile diff --git a/samples/configure.in b/samples/configure.in index d40449739c..ee2ae94fdb 100644 --- a/samples/configure.in +++ b/samples/configure.in @@ -37,6 +37,7 @@ AC_OUTPUT([ image/Makefile internat/Makefile ipc/Makefile + joytest/Makefile layout/Makefile listctrl/Makefile mdi/Makefile