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.4,1.1.1.1.6.5


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/src/physfs CHANGELOG,1.1.1.1.6.4,1.1.1.1.6.5 configure.in,1.1.2.6,1.1.2.7 physfs_internal.h,1.1.1.1.6.3,1.1.1.1.6.4
Date: Thu, 18 Jul 2002 03:24:16 -0400

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

Modified Files:
      Tag: devel-1-0
        CHANGELOG configure.in physfs_internal.h 
Log Message:
fixed a potential crash in PG_FileArchive::LoadSurface
updated PhysFS



Index: CHANGELOG
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/CHANGELOG,v
retrieving revision 1.1.1.1.6.4
retrieving revision 1.1.1.1.6.5
diff -C2 -r1.1.1.1.6.4 -r1.1.1.1.6.5
*** CHANGELOG   15 Jul 2002 08:15:36 -0000      1.1.1.1.6.4
--- CHANGELOG   18 Jul 2002 07:24:14 -0000      1.1.1.1.6.5
***************
*** 3,6 ****
--- 3,11 ----
   */
  
+ 07172002 - Fixed seeking backwards in ZIP_seek(). Changed the error message
+            ERR_TOO_MANY_SYMLINKS to ERR_SYMLINK_LOOP. Patches to build system
+            and unix.c for FreeBSD compatibility. Added physfs.spec to
+            "make dist" archives (thanks, Edward Rudd!).
+ 07152002 - Symlinks in ZIP archives are detected correctly now, I think.
  07142002 - Use GetVolumeInformation() instead of GetDiskFreeSpace() in
             win32.c's mediaInDrive() function. This allows Windows NT 3.x to

Index: configure.in
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/configure.in,v
retrieving revision 1.1.2.6
retrieving revision 1.1.2.7
diff -C2 -r1.1.2.6 -r1.1.2.7
*** configure.in        11 Jul 2002 08:59:29 -0000      1.1.2.6
--- configure.in        18 Jul 2002 07:24:14 -0000      1.1.2.7
***************
*** 227,230 ****
--- 227,241 ----
  fi
  
+ this_is_freebsd=no
+ if test x$we_have_sed = xyes; then
+   AC_MSG_CHECKING([if this is FreeBSD])
+   x=`echo $build_os |tr A-Z a-z |sed "s/.*freebsd.*/freebsd/"`
+   if test x$x = xfreebsd; then
+     this_is_freebsd=yes
+   fi
+ 
+   AC_MSG_RESULT([$this_is_freebsd])
+ fi
+ 
  # Checks for header files.
  AC_HEADER_STDC
***************
*** 243,246 ****
--- 254,264 ----
  AC_CHECK_FUNCS([memset strrchr])
  
+ CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE"
+ LDFLAGS="$LDFLAGS -no-undefined"
+ 
+ if test x$this_is_freebsd = x$yes; then
+   LDFLAGS="$LDFLAGS -pthread"
+ fi
+ 
  dnl Add Makefile conditionals
  AM_CONDITIONAL(BUILD_ZLIB, test x$enable_internal_zlib = xyes)
***************
*** 249,254 ****
  AM_CONDITIONAL(BUILD_BEOS, test x$this_is_beos = xyes)
  AM_CONDITIONAL(BUILD_CYGWIN, test x$this_is_cygwin = xyes)
- 
- LDFLAGS="$LDFLAGS -no-undefined"
  
  AC_OUTPUT([
--- 267,270 ----

Index: physfs_internal.h
===================================================================
RCS file: /cvsroot/paragui/paragui/src/physfs/physfs_internal.h,v
retrieving revision 1.1.1.1.6.3
retrieving revision 1.1.1.1.6.4
diff -C2 -r1.1.1.1.6.3 -r1.1.1.1.6.4
*** physfs_internal.h   15 Jul 2002 08:15:37 -0000      1.1.1.1.6.3
--- physfs_internal.h   18 Jul 2002 07:24:14 -0000      1.1.1.1.6.4
***************
*** 268,272 ****
  #define ERR_IO_ERROR             "I/O error"
  #define ERR_CANT_SET_WRITE_DIR   "Can't set write directory"
! #define ERR_TOO_MANY_SYMLINKS    "Too many symbolic links"
  #define ERR_COMPRESSION          "(De)compression error"
  #define ERR_NOT_IMPLEMENTED      "Not implemented"
--- 268,272 ----
  #define ERR_IO_ERROR             "I/O error"
  #define ERR_CANT_SET_WRITE_DIR   "Can't set write directory"
! #define ERR_SYMLINK_LOOP         "Infinite symbolic link loop"
  #define ERR_COMPRESSION          "(De)compression error"
  #define ERR_NOT_IMPLEMENTED      "Not implemented"




reply via email to

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