diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-01-22 18:03:39 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-01-22 18:03:39 +0000 |
commit | 763ff0bda62e16dfc064a8cd9d75c879befd0cb7 (patch) | |
tree | 8d15e6f576194fe73d8eca605dd9ae9955172a8d /mail/elm+ME | |
parent | b6816b6323cec67a70706c0090a8f75410b35baa (diff) | |
download | ports-763ff0bda62e16dfc064a8cd9d75c879befd0cb7.tar.gz ports-763ff0bda62e16dfc064a8cd9d75c879befd0cb7.zip |
Notes
Diffstat (limited to 'mail/elm+ME')
-rw-r--r-- | mail/elm+ME/scripts/pre-configure | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/mail/elm+ME/scripts/pre-configure b/mail/elm+ME/scripts/pre-configure index 2ae7a156371f..19cfaa9ffdc1 100644 --- a/mail/elm+ME/scripts/pre-configure +++ b/mail/elm+ME/scripts/pre-configure @@ -1,19 +1,22 @@ #!/bin/sh - # -# pre-configure script for Elm port to FreeBSD 2.0 +# pre-configure script for Elm port to FreeBSD # $FreeBSD$ PortsDir=$PORTSDIR - CurDir=$CURDIR - WrkSrc=$WRKSRC +CurDir=$CURDIR +WrkSrc=$WRKSRC - cat > ${WrkSrc}/config.sh << 'EOF' +has_inttypes=undef +[ -r /usr/include/inttypes.h ] && has_inttypes=define + + cat > ${WrkSrc}/config.sh << EOF #!/bin/sh # config.sh # This file was produced by running the Configure script. -Log='$Log' -Header='$Header' +Log='\$Log' +Header='\$Header' bin="${PREFIX}/bin" contains='grep' cppstdin='/usr/bin/cpp' @@ -29,7 +32,7 @@ d_mmap='define' d_socket='define' d_netdb='define' d_netinet_in='define' -d_inttypes='define' +d_inttypes='$has_inttypes' d_nointtypes='undef' n='-n' c='' @@ -247,9 +250,9 @@ d_vfork='define' defbatsub='no subject (file transmission)' defeditor='/usr/bin/vi' editoropts='' -hostname="${Hostname}" +hostname='' phostname='hostname' -mydomain="${Domain}" +mydomain='' autohostname='define' i_memory='define' i_stdarg='define' |