paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui/src/physfs CHANGELOG,1.1.1.1.6.1,1.1.1.1.6.2


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/src/physfs CHANGELOG,1.1.1.1.6.1,1.1.1.1.6.2 Makefile.am,1.1.1.1.6.6,1.1.1.1.6.7 configure.in,1.1.2.3,1.1.2.4
Date: Wed, 03 Jul 2002 10:30:12 -0400

Update of /cvsroot/paragui/paragui/src/physfs
In directory subversions:/tmp/cvs-serv7543/src/physfs

Modified Files:
      Tag: devel-1-0
        CHANGELOG Makefile.am configure.in 
Log Message:
updated PhysicsFS



Index: CHANGELOG
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/CHANGELOG,v
retrieving revision 1.1.1.1.6.1
retrieving revision 1.1.1.1.6.2
diff -C2 -r1.1.1.1.6.1 -r1.1.1.1.6.2
*** CHANGELOG   21 Jun 2002 20:07:52 -0000      1.1.1.1.6.1
--- CHANGELOG   3 Jul 2002 14:30:10 -0000       1.1.1.1.6.2
***************
*** 3,6 ****
--- 3,17 ----
   */
  
+ 06292002 - Fixed incorrect error message when opening a file for read without
+            defining a search path. LOTS of win32 updates and fixes; lots of
+            things that were broken work now, and we are slowly becoming
+            more compatible with legacy win32 systems. Builds on Cygwin again.
+            All platform drivers (except beos.cpp) had a buffer overflow when
+            detecting mounted CD-ROM drives...it only occurs when a drive is
+            detected, and it probably won't result in your box getting rooted,
+            but upgrade soon anyhow.
+ 06282002 - Reworked build system _AGAIN_.
+ 06222002 - Alexander Pipelka spotted a bug in the file open routines in
+            posix.c; patched.
  06152002 - Autoconf build system will now generate shared libraries on BeOS,
             and (supposedly) Cygwin.

Index: Makefile.am
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/Makefile.am,v
retrieving revision 1.1.1.1.6.6
retrieving revision 1.1.1.1.6.7
diff -C2 -r1.1.1.1.6.6 -r1.1.1.1.6.7
*** Makefile.am 3 Jul 2002 14:13:06 -0000       1.1.1.1.6.6
--- Makefile.am 3 Jul 2002 14:30:10 -0000       1.1.1.1.6.7
***************
*** 1,38 ****
  noinst_LTLIBRARIES = libphysfs.la
  
! if BUILD_ZLIB
! ZLIB_DIR = zlib114
! ZLIB_LIB = zlib114/libz.la
! ZLIB_INC = -I./zlib114
! else
! ZLIB_LIB = -lz
! ZLIB_INC =
! endif
! 
! if BUILD_TEST_PHYSFS
! TEST_DIR = . test
! endif
! 
! SUBDIRS = archivers platform $(ZLIB_DIR) $(TEST_DIR)
! 
! DIST_SUBDIRS = $(SUBDIRS) extras zlib114 test
  
  libphysfs_la_SOURCES =        \
!       physfs.c \
!       physfs_internal.h \
        physfs_byteorder.c
  
! libphysfs_la_LIBADD = \
!       archivers/libarchivers.la \
!       platform/libplatform.la \
!       $(ZLIB_LIB)
! 
! libphysfs_la_INCLUDES = $(ZLIB_INC)
  
  libphysfs_la_LDFLAGS =                \
        -release $(LT_RELEASE)  \
        -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
  
! EXTRA_DIST = \
        CREDITS \
        LICENSE \
--- 1,27 ----
  noinst_LTLIBRARIES = libphysfs.la
  
! SUBDIRS = platform archivers zlib114 extras
! DIST_SUBDIRS = $(SUBDIRS) test
  
  libphysfs_la_SOURCES =        \
!       physfs.c        \
!       physfs_internal.h       \
        physfs_byteorder.c
  
! if BUILD_ZLIB
! ZLIB_LIB = zlib114/libz.la
! else
! ZLIB_LIB =
! endif
  
  libphysfs_la_LDFLAGS =                \
        -release $(LT_RELEASE)  \
        -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
+ libphysfs_la_LIBADD = \
+       archivers/libarchivers.la       \
+       platform/libplatform.la \
+       $(ZLIB_LIB)
  
! EXTRA_DIST =  \
        CREDITS \
        LICENSE \
***************
*** 45,46 ****
--- 34,42 ----
        test_physfs.dsp \
        physfs.h
+ 
+ dist-hook:
+       mkdir $(distdir)/docs
+       echo "Docs are generated with the program "Doxygen" 
(http://www.doxygen.org/)," >> $(distdir)/docs/README
+       echo " or can be read online at http://icculus.org/physfs/docs/"; >> 
$(distdir)/docs/README
+       echo >> $(distdir)/docs/README
+ 

Index: configure.in
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/configure.in,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -C2 -r1.1.2.3 -r1.1.2.4
*** configure.in        25 Jun 2002 13:02:08 -0000      1.1.2.3
--- configure.in        3 Jul 2002 14:30:10 -0000       1.1.2.4
***************
*** 40,43 ****
--- 40,44 ----
  
  dnl Detect the canonical host and target build environment
+ AC_CANONICAL_BUILD
  AC_CANONICAL_HOST
  AC_CANONICAL_TARGET
***************
*** 57,61 ****
  AC_PROG_LN_S
  AC_LIBTOOL_WIN32_DLL 
! AC_PROG_LIBTOOL
  
  
--- 58,85 ----
  AC_PROG_LN_S
  AC_LIBTOOL_WIN32_DLL 
! LIBTOOL="libtool"
! AM_PROG_LIBTOOL
! AC_CHECK_PROG(we_have_sed, sed, yes, no)
! 
! dnl ---------------------------------------------------------------------
! dnl Debug mode?
! dnl ---------------------------------------------------------------------
! 
! AC_ARG_ENABLE(debug,
! [  --enable-debug             enable debug mode [default=yes]],
!               , enable_debug=yes)
! if test x$enable_debug = xyes; then
!   if test x$ac_cv_prog_cc_g = xyes; then
!     CFLAGS="-g -O0"
!   else
!     CFLAGS="-O0"
!   fi
!   CFLAGS="$CFLAGS -Werror -Wall"
!   AC_DEFINE(DEBUG)
!   AC_DEFINE(DEBUG_CHATTER)
! else
!   CFLAGS="-O2"
!   AC_DEFINE(NDEBUG)
! fi
  
  
***************
*** 171,177 ****
  fi
  
! AC_CHECK_HEADER(be/kernel/OS.h, this_is_beos=yes)
! if test x$this_is_beos = xyes; then
    LIBS="$LIBS -lroot -lbe"
  fi
  
--- 195,228 ----
  fi
  
! dnl AC_CHECK_HEADER(be/kernel/OS.h, this_is_beos=yes)
! AC_MSG_CHECKING([if this is BeOS])
! if test x$build_os = xbeos; then
!   this_is_beos=yes
    LIBS="$LIBS -lroot -lbe"
+ else
+   this_is_beos=no
+ fi
+ 
+ AC_MSG_RESULT([$this_is_beos])
+ 
+ AC_MSG_CHECKING([if this is Cygwin])
+ if test x$build_os = xcygwin; then
+   this_is_cygwin=yes
+   CFLAGS="$CFLAGS -DWIN32"
+ else
+   this_is_cygwin=no
+ fi
+ 
+ AC_MSG_RESULT([$this_is_cygwin])
+ 
+ this_is_macosx=no
+ if test x$we_have_sed = xyes; then
+   AC_MSG_CHECKING([if this is MacOS X])
+   x=`echo $build_os |sed "s/darwin.*/darwin/"`
+   if test x$x = xdarwin -a x$build_vendor = xapple; then
+     this_is_macosx=yes
+   fi
+ 
+   AC_MSG_RESULT([$this_is_macosx])
  fi
  
***************
*** 195,199 ****
  AM_CONDITIONAL(BUILD_ZLIB, test x$enable_internal_zlib = xyes)
  AM_CONDITIONAL(BUILD_TEST_PHYSFS, test x$enable_testprog = xyes)
! AM_CONDITIONAL(BUILD_BEOS_CPP, test x$this_is_beos = xyes)
  
  LDFLAGS="$LDFLAGS -no-undefined"
--- 246,252 ----
  AM_CONDITIONAL(BUILD_ZLIB, test x$enable_internal_zlib = xyes)
  AM_CONDITIONAL(BUILD_TEST_PHYSFS, test x$enable_testprog = xyes)
! AM_CONDITIONAL(BUILD_MACOSX, test x$this_is_macosx = xyes)
! AM_CONDITIONAL(BUILD_BEOS, test x$this_is_beos = xyes)
! AM_CONDITIONAL(BUILD_CYGWIN, test x$this_is_cygwin = xyes)
  
  LDFLAGS="$LDFLAGS -no-undefined"
***************
*** 203,208 ****
  archivers/Makefile
  platform/Makefile
- test/Makefile
  zlib114/Makefile
  extras/Makefile
  ])
--- 256,264 ----
  archivers/Makefile
  platform/Makefile
  zlib114/Makefile
+ test/Makefile
  extras/Makefile
  ])
+ 
+ dnl end of configure.in ...
+ 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]