head 1.9; access; symbols LMTP2NNTP_1_4_1:1.8 LMTP2NNTP_1_4_0:1.8 SIO_0_9_3:1.8 SA_1_2_6:1.8 SA_1_2_5:1.8 SA_1_2_4:1.8 SA_1_2_3:1.8 LMTP2NNTP_1_3_0:1.7 LMTP2NNTP_1_3b2:1.7 SA_1_2_2:1.7 LMTP2NNTP_1_3b1:1.7 SA_1_2_1:1.7 LMTP2NNTP_1_3a3:1.7 LMTP2NNTP_1_3a2:1.7 LMTP2NNTP_1_3a1:1.7 SA_1_2_0:1.7 SA_1_1_0:1.6 SIO_0_9_2:1.6 SIO_0_9_1:1.6 LMTP2NNTP_1_2_0:1.6 LMTP2NNTP_1_2b4:1.6 LMTP2NNTP_1_2b3:1.6 LMTP2NNTP_1_2b2:1.6 LMTP2NNTP_1_2b1:1.6 LMTP2NNTP_1_2a8:1.6 SIO_0_9_0:1.6 LMTP2NNTP_1_2a7:1.6 SA_1_0_5:1.6 SA_1_0_4:1.6 SA_1_0_3:1.6 SA_1_0_2:1.5 SA_1_0_1:1.5 SA_1_0_0:1.5 SA_0_9_3:1.5 SA_0_9_2:1.4 LMTP2NNTP_1_2a6:1.4 LMTP2NNTP_1_2a5:1.4 SA_0_9_1:1.4 LMTP2NNTP_1_2a4:1.3 LMTP2NNTP_1_2a3:1.3 SA_0_9_0:1.3 LMTP2NNTP_1_2a1:1.1 LMTP2NNTP_1_1_1:1.1 LMTP2NNTP_1_1_0:1.1 LMTP2NNTP_1_1b4:1.1 LMTP2NNTP_1_1b3:1.1 LMTP2NNTP_1_1b2:1.1 LMTP2NNTP_1_1b1:1.1; locks; strict; comment @# @; 1.9 date 2006.06.10.10.00.17; author rse; state Exp; branches; next 1.8; commitid JpcJR7gM5uNpwrAr; 1.8 date 2005.01.24.15.10.09; author rse; state Exp; branches; next 1.7; 1.7 date 2004.04.02.18.21.07; author rse; state Exp; branches; next 1.6; 1.6 date 2003.01.06.13.11.23; author rse; state Exp; branches; next 1.5; 1.5 date 2002.10.26.15.45.32; author rse; state Exp; branches; next 1.4; 1.4 date 2002.03.15.10.47.36; author rse; state Exp; branches; next 1.3; 1.3 date 2002.01.31.21.35.13; author rse; state Exp; branches; next 1.2; 1.2 date 2002.01.02.12.43.50; author rse; state Exp; branches; next 1.1; 1.1 date 2001.10.08.10.03.54; author rse; state Exp; branches; next ; desc @@ 1.9 log @Adjusted all copyright messages for year 2006 @ text @#!/bin/sh ## ## OSSP sa - Socket Abstraction ## Copyright (c) 2001-2006 Ralf S. Engelschall ## Copyright (c) 2001-2006 The OSSP Project ## Copyright (c) 2001-2005 Cable & Wireless ## ## This file is part of OSSP sa, a socket abstraction library which ## can be found at http://www.ossp.org/pkg/lib/sa/. ## ## Permission to use, copy, modify, and distribute this software for ## any purpose with or without fee is hereby granted, provided that ## the above copyright notice and this permission notice appear in all ## copies. ## ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ## SUCH DAMAGE. ## ## sa-config.in: SA library build utility ## DIFS=' ' prefix="@@prefix@@" exec_prefix="@@exec_prefix@@" sa_prefix="$prefix" sa_exec_prefix="$exec_prefix" sa_bindir="@@bindir@@" sa_libdir="@@libdir@@" sa_includedir="@@includedir@@" sa_mandir="@@mandir@@" sa_datadir="@@datadir@@" sa_acdir="@@datadir@@/aclocal" sa_cflags="@@CFLAGS@@" sa_ldflags="@@LDFLAGS@@" sa_libs="@@LIBS@@" sa_version="@@SA_VERSION_STR@@" help=no version=no usage="sa-config" usage="$usage [--help] [--version] [--all]" usage="$usage [--prefix] [--exec-prefix] [--bindir] [--libdir] [--includedir] [--mandir] [--datadir] [--acdir]" usage="$usage [--cflags] [--ldflags] [--libs]" if [ $# -eq 0 ]; then echo "sa-config:Error: Invalid option" 1>&2 echo "sa-config:Usage: $usage" 1>&2 exit 1 fi output='' output_extra='' all=no prev='' OIFS="$IFS" IFS="$DIFS" for option do if [ ".$prev" != . ]; then eval "$prev=\$option" prev='' continue fi case "$option" in -*=*) optarg=`echo "$option" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg='' ;; esac case "$option" in --help|-h) echo "Usage: $usage" exit 0 ;; --version|-v) echo "OSSP sa $sa_version" exit 0 ;; --all) all=yes ;; --prefix) output="$output $sa_prefix" ;; --exec-prefix) output="$output $sa_exec_prefix" ;; --bindir) output="$output $sa_bindir" ;; --libdir) output="$output $sa_libdir" ;; --includedir) output="$output $sa_includedir" ;; --mandir) output="$output $sa_mandir" ;; --datadir) output="$output $sa_datadir" ;; --acdir) output="$output $sa_acdir" ;; --cflags) output="$output -I$sa_includedir" output_extra="$output_extra $sa_cflags" ;; --ldflags) output="$output -L$sa_libdir" output_extra="$output_extra $sa_ldflags" ;; --libs) output="$output -lsa" output_extra="$output_extra $sa_libs" ;; * ) echo "sa-config:Error: Invalid option" 1>&2 echo "sa-config:Usage: $usage" 1>&2 exit 1; ;; esac done IFS="$OIFS" if [ ".$prev" != . ]; then echo "sa-config:Error: missing argument to --`echo $prev | sed 's/_/-/g'`" 1>&2 exit 1 fi if [ ".$output" != . ]; then if [ ".$all" = .yes ]; then output="$output $output_extra" fi echo $output fi @ 1.8 log @welcome 2005 in OSSP sa, too @ text @d4 2 a5 2 ## Copyright (c) 2001-2005 Ralf S. Engelschall ## Copyright (c) 2001-2005 The OSSP Project @ 1.7 log @Adjusted all copyright messages for new year 2004. @ text @d4 3 a6 3 ## Copyright (c) 2001-2004 Ralf S. Engelschall ## Copyright (c) 2001-2004 The OSSP Project ## Copyright (c) 2001-2004 Cable & Wireless @ 1.6 log @- Adjusted all copyright messages for new year 2003. - Fixed generated owner in distribution tarball. - Prepare for 1.0.3 release @ text @d4 3 a6 3 ## Copyright (c) 2001-2003 Ralf S. Engelschall ## Copyright (c) 2001-2003 The OSSP Project ## Copyright (c) 2001-2003 Cable & Wireless Deutschland @ 1.5 log @strip trailing whitespaces @ text @d4 3 a6 3 ## Copyright (c) 2001-2002 Ralf S. Engelschall ## Copyright (c) 2001-2002 The OSSP Project ## Copyright (c) 2001-2002 Cable & Wireless Deutschland @ 1.4 log @polishing for release @ text @d32 1 a32 1 DIFS=' @ 1.3 log @final polishing for release @ text @d3 1 a3 1 ## SA - OSSP Logging Library d8 2 a9 2 ## This file is part of OSSP SA, a socket abstraction library which ## can be found at http://www.ossp.org/pkg/sa/. @ 1.2 log @bump copyright year @ text @d85 1 a85 1 echo "OSSP SA $sa_version" @ 1.1 log @Various cleanups @ text @d4 3 a6 3 ## Copyright (c) 2001 Ralf S. Engelschall ## Copyright (c) 2001 The OSSP Project ## Copyright (c) 2001 Cable & Wireless Deutschland @