*** empty log message ***
This commit is contained in:
parent
cb1f305074
commit
13035b0f17
8
ase/configure
vendored
8
ase/configure
vendored
@ -850,7 +850,7 @@ if test -n "$ac_init_help"; then
|
|||||||
Optional Features:
|
Optional Features:
|
||||||
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
||||||
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
||||||
--enable-char choose a default charater type (wchar/mchar)
|
--enable-wchar user wchar_t a default charater type
|
||||||
--enable-reentrant defined _REENTRANT
|
--enable-reentrant defined _REENTRANT
|
||||||
|
|
||||||
Some influential environment variables:
|
Some influential environment variables:
|
||||||
@ -10815,11 +10815,11 @@ _ACEOF
|
|||||||
# Check whether --enable-char or --disable-char was given.
|
# Check whether --enable-char or --disable-char was given.
|
||||||
if test "${enable_char+set}" = set; then
|
if test "${enable_char+set}" = set; then
|
||||||
enableval="$enable_char"
|
enableval="$enable_char"
|
||||||
char_is=$enableval
|
wchar_is=$enableval
|
||||||
else
|
else
|
||||||
char_is=wchar
|
wchar_is=yes
|
||||||
fi;
|
fi;
|
||||||
if test "$char_is" = "wchar"
|
if test "$wchar_is" = "yes"
|
||||||
then
|
then
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
cat >>confdefs.h <<\_ACEOF
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
AC_PREREQ(2.53)
|
AC_PREREQ(2.53)
|
||||||
AC_INIT([xpkit], [deb-0.1.0])
|
AC_INIT([xpkit], [deb-0.1.0])
|
||||||
AC_REVISION([$Revision: 1.46 $])
|
AC_REVISION([$Revision: 1.47 $])
|
||||||
AC_CONFIG_HEADER([xp/config.h])
|
AC_CONFIG_HEADER([xp/config.h])
|
||||||
|
|
||||||
# Checks for programs.
|
# Checks for programs.
|
||||||
@ -60,9 +60,9 @@ AC_CHECK_SIZEOF(long double)
|
|||||||
#AC_CHECK_FUNCS([memset])
|
#AC_CHECK_FUNCS([memset])
|
||||||
|
|
||||||
AC_ARG_ENABLE(char,
|
AC_ARG_ENABLE(char,
|
||||||
[--enable-char choose a default charater type (wchar/mchar)],
|
[--enable-wchar user wchar_t a default charater type],
|
||||||
char_is=$enableval,char_is=wchar)
|
wchar_is=$enableval,wchar_is=yes)
|
||||||
if test "$char_is" = "wchar"
|
if test "$wchar_is" = "yes"
|
||||||
then
|
then
|
||||||
AC_DEFINE([XP_CHAR_IS_WCHAR],[],[char is wchar])
|
AC_DEFINE([XP_CHAR_IS_WCHAR],[],[char is wchar])
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user