Some OS/2 specific improvements.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19083 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
14
configure.in
14
configure.in
@@ -1259,10 +1259,13 @@ dnl install checks
|
|||||||
dnl defines INSTALL with the appropriate command
|
dnl defines INSTALL with the appropriate command
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
|
|
||||||
dnl make install path absolute (if not already); will fail with MSDOS paths
|
dnl make install path absolute (if not already);
|
||||||
|
dnl will fail with (some) MSDOS paths
|
||||||
case ${INSTALL} in
|
case ${INSTALL} in
|
||||||
/* ) # Absolute
|
/* ) # Absolute
|
||||||
;;
|
;;
|
||||||
|
?:* ) # Drive letter, considered as absolute.
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
INSTALL=`pwd`/${INSTALL} ;;
|
INSTALL=`pwd`/${INSTALL} ;;
|
||||||
esac
|
esac
|
||||||
@@ -1415,6 +1418,15 @@ fi
|
|||||||
dnl defines HAVE_LANGINFO_H (GNU libc locale parameters)
|
dnl defines HAVE_LANGINFO_H (GNU libc locale parameters)
|
||||||
AC_CHECK_HEADERS(langinfo.h)
|
AC_CHECK_HEADERS(langinfo.h)
|
||||||
|
|
||||||
|
case "${host}" in
|
||||||
|
*-pc-os2_emx | *-pc-os2-emx )
|
||||||
|
dnl Explicitly link -lintl if langinfo.h is available.
|
||||||
|
if test $ac_cv_header_langinfo_h = "yes"; then
|
||||||
|
LIBS="$LIBS -lintl"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
if test "$wxUSE_GUI" = "yes"; then
|
if test "$wxUSE_GUI" = "yes"; then
|
||||||
if test "$wxUSE_UNIX" = "yes"; then
|
if test "$wxUSE_UNIX" = "yes"; then
|
||||||
dnl defines HAVE_X11_XKBLIB_H
|
dnl defines HAVE_X11_XKBLIB_H
|
||||||
|
Reference in New Issue
Block a user