menu sample added

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6389 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-03-01 23:37:09 +00:00
parent 6d072a854f
commit bc9027cc74
4 changed files with 295 additions and 314 deletions

598
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -3410,7 +3410,7 @@ if test "$wxUSE_GUI" = "yes"; then
dnl TODO some samples are never built so far: dnl TODO some samples are never built so far:
dnl ipc, mfc, nativdlg, oleauto, ownerdrw, proplist dnl ipc, mfc, nativdlg, oleauto, ownerdrw, proplist
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS controls dialogs dragimag drawing dynamic \ SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS controls dialogs dragimag drawing dynamic \
font fractal image minimal richedit" font fractal image menu minimal richedit"
dnl this is needed to be able to find AFM files dnl this is needed to be able to find AFM files
CPPFLAGS="$CPPFLAGS \$(EXTRADEFS) \$(APPEXTRADEFS)" CPPFLAGS="$CPPFLAGS \$(EXTRADEFS) \$(APPEXTRADEFS)"

8
samples/configure vendored
View File

@@ -2,7 +2,7 @@
# From configure.in Id: configure.in # From configure.in Id: configure.in
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.14 # Generated automatically using autoconf version 2.13
# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
# #
# This configure script is free software; the Free Software Foundation # This configure script is free software; the Free Software Foundation
@@ -334,7 +334,7 @@ EOF
verbose=yes ;; verbose=yes ;;
-version | --version | --versio | --versi | --vers) -version | --version | --versio | --versi | --vers)
echo "configure generated by autoconf version 2.14" echo "configure generated by autoconf version 2.13"
exit 0 ;; exit 0 ;;
-with-* | --with-*) -with-* | --with-*)
@@ -628,7 +628,7 @@ do
echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
-version | --version | --versio | --versi | --vers | --ver | --ve | --v) -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
echo "$CONFIG_STATUS generated by autoconf version 2.14" echo "$CONFIG_STATUS generated by autoconf version 2.13"
exit 0 ;; exit 0 ;;
-help | --help | --hel | --he | --h) -help | --help | --hel | --he | --h)
echo "\$ac_cs_usage"; exit 0 ;; echo "\$ac_cs_usage"; exit 0 ;;
@@ -664,6 +664,7 @@ trap 'rm -fr `echo "
layout/Makefile layout/Makefile
listctrl/Makefile listctrl/Makefile
mdi/Makefile mdi/Makefile
menu/Makefile
minifram/Makefile minifram/Makefile
minimal/Makefile minimal/Makefile
newgrid/Makefile newgrid/Makefile
@@ -801,6 +802,7 @@ CONFIG_FILES=\${CONFIG_FILES-"Makefile
layout/Makefile layout/Makefile
listctrl/Makefile listctrl/Makefile
mdi/Makefile mdi/Makefile
menu/Makefile
minifram/Makefile minifram/Makefile
minimal/Makefile minimal/Makefile
newgrid/Makefile newgrid/Makefile

View File

@@ -32,6 +32,7 @@ AC_OUTPUT([
layout/Makefile layout/Makefile
listctrl/Makefile listctrl/Makefile
mdi/Makefile mdi/Makefile
menu/Makefile
minifram/Makefile minifram/Makefile
minimal/Makefile minimal/Makefile
newgrid/Makefile newgrid/Makefile