0.8.10claws71
authorChristoph Hohmann <reboot@gmx.ch>
Sun, 2 Mar 2003 17:25:26 +0000 (17:25 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Sun, 2 Mar 2003 17:25:26 +0000 (17:25 +0000)
* src/common/passcrypt.c
        use POSIX includes

ChangeLog.claws
configure.ac
src/common/passcrypt.c

index 4ebdbd872163baa611c6c487d35492044d15977a..406d35d6994bb3d23938af8854855900f310bcf1 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-02 [christoph] 0.8.10claws71
+
+       * src/common/passcrypt.c
+               use POSIX includes
+
 2003-03-02 [christoph] 0.8.10claws70
 
        * configure.ac
index 91529b85517ae7a7c011d7be46ceb9a0f15b0f9e..7c114841ca9064a752757bd40d3f30e10adb18fc 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=10
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws70
+EXTRA_VERSION=claws71
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 74a8f068d4de4eeca16554a2d0075deea4850e32..7481e1a6f73d12de1de3b903962fd065edf9f4b8 100644 (file)
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  */
 
+#define _XOPEN_SOURCE
+
 #include <sys/types.h>
 #include <stdio.h>
 #include <memory.h>
 #include <ctype.h>
+#include <stdlib.h>
 #include <unistd.h>
-#include "crypt.h"
 
 #include <glib.h>