diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-06-11 07:48:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-06-11 07:48:37 +0000 |
commit | 8c4940698be2f02281e357e88f3a06116cdc5fb4 (patch) | |
tree | f1362f62b1e9dcfbc2a3452c99407030c2dc7b0e | |
parent | 607bee31060fd9ff4edc6b9e1997bb5c905ae6fc (diff) | |
download | fetchmail-8c4940698be2f02281e357e88f3a06116cdc5fb4.tar.gz fetchmail-8c4940698be2f02281e357e88f3a06116cdc5fb4.tar.bz2 fetchmail-8c4940698be2f02281e357e88f3a06116cdc5fb4.zip |
Enable Rhapsody to work.
svn path=/trunk/; revision=2490
-rwxr-xr-x | config.guess | 3 | ||||
-rw-r--r-- | configure.in | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/config.guess b/config.guess index d85c1a5c..5b40242f 100755 --- a/config.guess +++ b/config.guess @@ -424,6 +424,9 @@ EOF echo ns32k-sni-sysv fi exit 0 ;; + *:Rhapsody:*:*) + echo `arch`-apple-rhapsody${UNAME_RELEASE} + exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 diff --git a/configure.in b/configure.in index c3d4a050..f4cc65f8 100644 --- a/configure.in +++ b/configure.in @@ -61,6 +61,13 @@ then LIBS="$LIBS -lkvm" fi +# Check for Rhapsody special case: it doesn't like -s +if test `uname` = "Rhapsody" +then + echo "Removing -s load flag" + LDFLAGS=`echo $LDFLAGS | sed "s/-s //"` +fi + # i18n # Arnaldo Carvalho de Melo <acme@conectiva.com.br> # Sat Nov 7 15:39:03 EDT 1998 |