You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Brian Behlendorf <br...@hyperreal.org> on 1997/09/18 02:08:05 UTC

apache port for the Atari

Not Acked.

---------- Forwarded message ----------
Date: Wed, 17 Sep 1997 16:50:30 +0200 (MET DST)
From: Jan Paul Schmidt <Ja...@mni.fh-giessen.de>
To: new-httpd@hyperreal.org
Subject: New Apache port

Hi there!

I like to inform you of my port of Apache 1.2.4 to MiNT, a Unix-like OS
for 16/32 Bit Atari computers. As the modifications are very few, it would
be nice, if you could apply the diffs to the offical source tree. If you
are a bit unhappy, because I'm sending diffs for 1.2.4 and not 1.3a1
please inform me of that, as I did not wanted to start porting a alpha
version.

jps

----------

diff -r apache_1.2.4.orig/src/Configure apache_1.2.4/src/Configure
189a190,195
>     *mint)
>         OS="MiNT"
>         CFLAGS="-DMINT"
>         LIBS="$LIBS -lportlib -lsocket"
>         DEF_WANTHSREGEX=yes
>         ;;
diff -r apache_1.2.4.orig/src/conf.h apache_1.2.4/src/conf.h
63c63,75
< #if defined(MPE)
---
> #if defined(MINT)
> typedef int rlim_t;
> #define HAVE_SYS_RESOURCE_H
> #define JMP_BUF sigjmp_buf
> #define NO_LONG_DOUBLE
> #define USE_FLOCK_SERIALIZED_ACCEPT
> #define _BSD_SOURCE
> #define EAGAIN EACCESS
> int initgroups (char *, int);     
> char *crypt (const char *pw, const char *salt);
> int gethostname (char *name, int namelen);
> 
> #elif defined(MPE)
diff -r apache_1.2.4.orig/src/helpers/GuessOS apache_1.2.4/src/helpers/GuessOS
58a59,61
>     MiNT:*)
>         echo "m68k-atari-mint"; exit 0
> 	;;
diff -r apache_1.2.4.orig/src/http_main.c apache_1.2.4/src/http_main.c
110a111,114
> #ifdef MINT
> long _stksize = 32768;
> #endif
> 
1675c1679
< #if defined(UW)
---
> #if defined(UW) || defined(MINT)
2443a2448,2450
> #ifdef MINT
> 	size_t c; 
> #endif


Re: apache port for the Atari

Posted by Dean Gaudet <dg...@arctic.org>.
+1 for 1.3. 

Dean

On Wed, 17 Sep 1997, Brian Behlendorf wrote:

> 
> Not Acked.
> 
> ---------- Forwarded message ----------
> Date: Wed, 17 Sep 1997 16:50:30 +0200 (MET DST)
> From: Jan Paul Schmidt <Ja...@mni.fh-giessen.de>
> To: new-httpd@hyperreal.org
> Subject: New Apache port
> 
> Hi there!
> 
> I like to inform you of my port of Apache 1.2.4 to MiNT, a Unix-like OS
> for 16/32 Bit Atari computers. As the modifications are very few, it would
> be nice, if you could apply the diffs to the offical source tree. If you
> are a bit unhappy, because I'm sending diffs for 1.2.4 and not 1.3a1
> please inform me of that, as I did not wanted to start porting a alpha
> version.
> 
> jps
> 
> ----------
> 
> diff -r apache_1.2.4.orig/src/Configure apache_1.2.4/src/Configure
> 189a190,195
> >     *mint)
> >         OS="MiNT"
> >         CFLAGS="-DMINT"
> >         LIBS="$LIBS -lportlib -lsocket"
> >         DEF_WANTHSREGEX=yes
> >         ;;
> diff -r apache_1.2.4.orig/src/conf.h apache_1.2.4/src/conf.h
> 63c63,75
> < #if defined(MPE)
> ---
> > #if defined(MINT)
> > typedef int rlim_t;
> > #define HAVE_SYS_RESOURCE_H
> > #define JMP_BUF sigjmp_buf
> > #define NO_LONG_DOUBLE
> > #define USE_FLOCK_SERIALIZED_ACCEPT
> > #define _BSD_SOURCE
> > #define EAGAIN EACCESS
> > int initgroups (char *, int);     
> > char *crypt (const char *pw, const char *salt);
> > int gethostname (char *name, int namelen);
> > 
> > #elif defined(MPE)
> diff -r apache_1.2.4.orig/src/helpers/GuessOS apache_1.2.4/src/helpers/GuessOS
> 58a59,61
> >     MiNT:*)
> >         echo "m68k-atari-mint"; exit 0
> > 	;;
> diff -r apache_1.2.4.orig/src/http_main.c apache_1.2.4/src/http_main.c
> 110a111,114
> > #ifdef MINT
> > long _stksize = 32768;
> > #endif
> > 
> 1675c1679
> < #if defined(UW)
> ---
> > #if defined(UW) || defined(MINT)
> 2443a2448,2450
> > #ifdef MINT
> > 	size_t c; 
> > #endif
> 
>