Skip to content

Commit

Permalink
Check for OS/2, in case anyone ever gets autoconf, etc working on the…
Browse files Browse the repository at this point in the history
…ir box.
  • Loading branch information
icculus committed Aug 9, 2002
1 parent bd584d5 commit 04578a0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions configure.in
Expand Up @@ -382,6 +382,20 @@ if test x$we_have_sed = xyes; then
AC_MSG_RESULT([$this_is_atheos])
fi

this_is_os2=no
if test x$we_have_sed = xyes; then
AC_MSG_CHECKING([if this is OS/2])
x=`echo $build_os |tr A-Z a-z |sed "s/.*os2.*/os2/"`
if test x$x = xos2; then
this_is_os2=yes
CFLAGS="$CFLAGS -DOS2"
fi

AC_MSG_RESULT([$this_is_os2])
fi



dnl Some platform might disable this, so check this down here...
if test x$enable_cdrom != xyes; then
AC_DEFINE([PHYSFS_NO_CDROM_SUPPORT], 1, [define if we have no CD support])
Expand Down

0 comments on commit 04578a0

Please sign in to comment.