Skip site navigation (1)Skip section navigation (2)
Date:      Mon,  2 Apr 2001 19:17:00 +0200 (CEST)
From:      thomas@cuivre.fr.eu.org
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/26297: New port: devel/florist
Message-ID:  <20010402171700.B446C11287@shalmaneser.enst.fr>

next in thread | raw e-mail | index | archive | help

>Number:         26297
>Category:       ports
>Synopsis:       New port: devel/florist
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Apr 02 10:20:01 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     thomas@cuivre.fr.eu.org
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD shalmaneser.enst.fr 5.0-CURRENT FreeBSD 5.0-CURRENT #6: Tue Mar 27 16:29:32 CEST 2001 root@shalmaneser.enst.fr:/usr/obj/usr/src/sys/SHALMANESER i386


	
>Description:
	
Florist is the FSU implementaton of IEEE Standard 1003.5b-1996,
the POSIX Ada binding, including real-time extensions. This software
provides access to the UNIX operating system services for application
programs written in the Ada programming language. It is designed to be
self-configuring for a POSIX-compliant system. 

WWW: http://www.cs.fsu.edu/~baker/florist.html

-- 
Thomas Quinot -- <thomas@cuivre.fr.eu.org>
>How-To-Repeat:
	
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	devel/florist
#	devel/florist/files
#	devel/florist/files/patch-aa
#	devel/florist/files/patch-ab
#	devel/florist/Makefile
#	devel/florist/distinfo
#	devel/florist/pkg-comment
#	devel/florist/pkg-descr
#	devel/florist/pkg-plist
#
echo c - devel/florist
mkdir -p devel/florist > /dev/null 2>&1
echo c - devel/florist/files
mkdir -p devel/florist/files > /dev/null 2>&1
echo x - devel/florist/files/patch-aa
sed 's/^X//' >devel/florist/files/patch-aa << 'END-of-devel/florist/files/patch-aa'
Xdiff -ur c-posix.c work/florist-3.13p-src/c-posix.c
X--- c-posix.c	Tue Apr 11 03:19:32 2000
X+++ work/florist-3.13p-src/c-posix.c	Mon Apr  2 18:30:43 2001
X@@ -326,9 +326,9 @@
X void gfuncd(char const name[], char const xname[], int have_it);
X void gmaxi(char const name[], int lower_bound);
X void gmaxii(char const name[], int lower_bound);
X-void gmaxn(char const name[], int lower_bound);
X-void gmaxnn(char const name[], int lower_bound);
X-void gpmaxn(char const name[], int value);
X+void gmaxn(char const name[], unsigned int lower_bound);
X+void gmaxnn(char const name[], unsigned int lower_bound);
X+void gpmaxn(char const name[], unsigned int value);
X void gpmaxr(char const name[], char const oname[]);
X void grename(char const name[], char const oname[]);
X void create_options();
X@@ -2158,18 +2158,18 @@
X    -----
X    generate _Maxima subtype of Natural
X  */
X-void gmaxn(char const name[], int lower_bound) {
X+void gmaxn(char const name[], unsigned int lower_bound) {
X   my_fprintf(fp,"   subtype %s_Maxima is Natural range\n",name);
X-  my_fprintf(fp,"      %d .. Natural'Last;\n",lower_bound);
X+  my_fprintf(fp,"      %u .. Natural'Last;\n",lower_bound);
X }
X 
X /* gmaxnn
X    -----
X    generate _Maxima subtype of Natural with tight bound
X  */
X-void gmaxnn(char const name[], int bound) {
X+void gmaxnn(char const name[], unsigned int bound) {
X   my_fprintf(fp,"   subtype %s_Maxima is Natural range\n",name);
X-  my_fprintf(fp,"      %d .. %d;\n", bound, bound);
X+  my_fprintf(fp,"      %u .. %u;\n", bound, bound);
X }
X 
X /* gmaxi
X@@ -2205,9 +2205,9 @@
X    generate portable maximum constant of type Natural
X    with specified value
X  */
X-void gpmaxn(char const name[], int value) {
X+void gpmaxn(char const name[], unsigned int value) {
X   my_fprintf(fp,"   Portable_%s_Maximum :\n",name);
X-  my_fprintf(fp,"      constant Natural := %d;\n",value);
X+  my_fprintf(fp,"      constant Natural := %u;\n",value);
X }
X 
X /* gpmaxr
X@@ -2702,13 +2702,13 @@
X 
X   my_fprintf(fp,"   subtype Page_Size_Range ");
X #ifdef PAGESIZE
X-  my_fprintf(fp," is Natural range %d .. %d;\n", PAGESIZE, PAGESIZE);
X+  my_fprintf(fp," is Natural range %u .. %u;\n", PAGESIZE, PAGESIZE);
X #else
X #ifdef _SC_PAGESIZE
X-  my_fprintf(fp," is Natural range %d .. %d;\n",
X+  my_fprintf(fp," is Natural range %u .. %u;\n",
X     sysconf(_SC_PAGESIZE),  sysconf(_SC_PAGESIZE));
X #else
X-  my_fprintf(fp," is Natural range 0 .. -1;\n");
X+  my_fprintf(fp," is Natural range 1 .. 0;\n");
X #endif
X #endif
X 
X@@ -2745,7 +2745,7 @@
X #endif
X #endif
X 
X-#ifdef SEM_VALUE_MAX
X+#if defined (SEM_VALUE_MAX) && !defined (__FreeBSD__)
X   gmaxnn("Semaphores_Value",SEM_VALUE_MAX);
X #else
X #ifdef _POSIX_SEM_VALUE_MAX
Xdiff -ur configure.in work/florist-3.13p-src/configure.in
X--- configure.in	Tue Apr 11 03:19:33 2000
X+++ work/florist-3.13p-src/configure.in	Mon Apr  2 18:39:04 2001
X@@ -45,7 +45,7 @@
X EOF
X 
X echo $ac_n "checking whether GNAT has Interrupt_Management... " $ac_c;
X-if (gcc -c gnat_ver.adb 2>/dev/null); then
X+if (${CC} -c gnat_ver.adb 2>/dev/null); then
X  echo "yes"
X  echo "HAVE_INTERRUPT_MANAGEMENT := True" >> gnatprep.config;
X else
X@@ -64,7 +64,7 @@
X EOF
X 
X echo $ac_n "checking whether GNAT has NT_GNAT_Exception... " $ac_c;
X-if (gcc -c gnat_ver.adb 2>/dev/null); then
X+if (${CC} -c gnat_ver.adb 2>/dev/null); then
X  echo "yes"
X  echo "HAVE_NT_GNAT_Exception := True" >> gnatprep.config;
X else
X@@ -80,7 +80,7 @@
X EOF
X 
X echo $ac_n "checking whether GNAT has Abort_Defer soft link... " $ac_c;
X-if (gcc -c gnat_ver.adb 2>/dev/null); then
X+if (${CC} -c gnat_ver.adb 2>/dev/null); then
X  echo "yes"
X  echo "HAVE_Soft_Abort_Defer := True" >> gnatprep.config;
X else
X@@ -97,7 +97,7 @@
X EOF
X 
X echo $ac_n "checking whether Set_Exc_Stack_Addr needs Self_ID... " $ac_c;
X-if (gcc -c gnat_ver.adb 2>/dev/null); then
X+if (${CC} -c gnat_ver.adb 2>/dev/null); then
X  echo "no"
X  echo "HAVE_Set_Exc_Stack_Addr_With_Self_ID := False" >> gnatprep.config;
X else
X@@ -171,7 +171,7 @@
X    ;;
X  OSF1)
X    echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
X-   case `gcc -dumpmachine` in
X+   case `${CC} -dumpmachine` in
X       *-*-osf4.0[bc])
X 	cp ./configs/pconfig.OSF1-4.0b ./pconfig.h.in;
X 	cat ./configs/Config.Default >> ./Config;
X@@ -214,6 +214,8 @@
X #  pthread.h must follow sched.h, since
X #  pthread.h redefines symbols in sched.h;
X #  the effect is to detect the problem and drop pthread.h
X+# for FreeBSD 5, sys/time.h must precede sched.h because the latter
X+#  requires struct timespec.
X AC_POSIX_HEADERS(\
X  aio.h\
X  dirent.h\
X@@ -223,6 +225,8 @@
X  locale.h\
X  mqueue.h\
X  pwd.h\
X+ time.h\
X+ sys/time.h\
X  sched.h\
X  pthread.h\
X  semaphore.h\
X@@ -237,8 +241,6 @@
X  limits.h\
X  sys/wait.h\
X  termios.h\
X- time.h\
X- sys/time.h\
X  unistd.h\
X  utime.h\
X )
END-of-devel/florist/files/patch-aa
echo x - devel/florist/files/patch-ab
sed 's/^X//' >devel/florist/files/patch-ab << 'END-of-devel/florist/files/patch-ab'
Xdiff -ur configure work/florist-3.13p-src/configure
X--- configure	Tue Apr 11 03:19:33 2000
X+++ work/florist-3.13p-src/configure	Mon Apr  2 18:39:08 2001
X@@ -1,7 +1,7 @@
X #! /bin/sh
X 
X # Guess values for system-dependent variables and create Makefiles.
X-# Generated automatically using autoconf version 2.12 
X+# Generated automatically using autoconf version 2.13 
X # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
X #
X # This configure script is free software; the Free Software Foundation
X@@ -49,6 +49,7 @@
X # Initialize some other variables.
X subdirs=
X MFLAGS= MAKEFLAGS=
X+SHELL=${CONFIG_SHELL-/bin/sh}
X # Maximum number of lines to put in a shell here document.
X ac_max_here_lines=12
X 
X@@ -332,7 +333,7 @@
X     verbose=yes ;;
X 
X   -version | --version | --versio | --versi | --vers)
X-    echo "configure generated by autoconf version 2.12"
X+    echo "configure generated by autoconf version 2.13"
X     exit 0 ;;
X 
X   -with-* | --with-*)
X@@ -495,9 +496,11 @@
X # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
X ac_cpp='$CPP $CPPFLAGS'
X ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
X-ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
X+ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
X cross_compiling=$ac_cv_prog_cc_cross
X 
X+ac_exeext=
X+ac_objext=o
X if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
X   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
X   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
X@@ -529,15 +532,16 @@
X # Extract the first word of "gcc", so it can be a program name with args.
X set dummy gcc; ac_word=$2
X echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
X-echo "configure:533: checking for $ac_word" >&5
X+echo "configure:536: checking for $ac_word" >&5
X if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   if test -n "$CC"; then
X   ac_cv_prog_CC="$CC" # Let the user override the test.
X else
X-  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}:"
X-  for ac_dir in $PATH; do
X+  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
X+  ac_dummy="$PATH"
X+  for ac_dir in $ac_dummy; do
X     test -z "$ac_dir" && ac_dir=.
X     if test -f $ac_dir/$ac_word; then
X       ac_cv_prog_CC="gcc"
X@@ -558,16 +562,17 @@
X   # Extract the first word of "cc", so it can be a program name with args.
X set dummy cc; ac_word=$2
X echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
X-echo "configure:562: checking for $ac_word" >&5
X+echo "configure:566: checking for $ac_word" >&5
X if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   if test -n "$CC"; then
X   ac_cv_prog_CC="$CC" # Let the user override the test.
X else
X-  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}:"
X+  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
X   ac_prog_rejected=no
X-  for ac_dir in $PATH; do
X+  ac_dummy="$PATH"
X+  for ac_dir in $ac_dummy; do
X     test -z "$ac_dir" && ac_dir=.
X     if test -f $ac_dir/$ac_word; then
X       if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
X@@ -602,25 +607,61 @@
X   echo "$ac_t""no" 1>&6
X fi
X 
X+  if test -z "$CC"; then
X+    case "`uname -s`" in
X+    *win32* | *WIN32*)
X+      # Extract the first word of "cl", so it can be a program name with args.
X+set dummy cl; ac_word=$2
X+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
X+echo "configure:617: checking for $ac_word" >&5
X+if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
X+  echo $ac_n "(cached) $ac_c" 1>&6
X+else
X+  if test -n "$CC"; then
X+  ac_cv_prog_CC="$CC" # Let the user override the test.
X+else
X+  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
X+  ac_dummy="$PATH"
X+  for ac_dir in $ac_dummy; do
X+    test -z "$ac_dir" && ac_dir=.
X+    if test -f $ac_dir/$ac_word; then
X+      ac_cv_prog_CC="cl"
X+      break
X+    fi
X+  done
X+  IFS="$ac_save_ifs"
X+fi
X+fi
X+CC="$ac_cv_prog_CC"
X+if test -n "$CC"; then
X+  echo "$ac_t""$CC" 1>&6
X+else
X+  echo "$ac_t""no" 1>&6
X+fi
X+ ;;
X+    esac
X+  fi
X   test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }
X fi
X 
X echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
X-echo "configure:610: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
X+echo "configure:649: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
X 
X ac_ext=c
X # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
X ac_cpp='$CPP $CPPFLAGS'
X ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
X-ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
X+ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
X cross_compiling=$ac_cv_prog_cc_cross
X 
X-cat > conftest.$ac_ext <<EOF
X-#line 620 "configure"
X+cat > conftest.$ac_ext << EOF
X+
X+#line 660 "configure"
X #include "confdefs.h"
X+
X main(){return(0);}
X EOF
X-if { (eval echo configure:624: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:665: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   ac_cv_prog_cc_works=yes
X   # If we can't run a trivial program, we are probably using a cross compiler.
X   if (./conftest; exit) 2>/dev/null; then
X@@ -634,18 +675,24 @@
X   ac_cv_prog_cc_works=no
X fi
X rm -fr conftest*
X+ac_ext=c
X+# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
X+ac_cpp='$CPP $CPPFLAGS'
X+ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
X+ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
X+cross_compiling=$ac_cv_prog_cc_cross
X 
X echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
X if test $ac_cv_prog_cc_works = no; then
X   { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
X fi
X echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
X-echo "configure:644: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
X+echo "configure:691: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
X echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
X cross_compiling=$ac_cv_prog_cc_cross
X 
X echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
X-echo "configure:649: checking whether we are using GNU C" >&5
X+echo "configure:696: checking whether we are using GNU C" >&5
X if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X@@ -654,7 +701,7 @@
X   yes;
X #endif
X EOF
X-if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:658: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
X+if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:705: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
X   ac_cv_prog_gcc=yes
X else
X   ac_cv_prog_gcc=no
X@@ -665,11 +712,15 @@
X 
X if test $ac_cv_prog_gcc = yes; then
X   GCC=yes
X-  ac_test_CFLAGS="${CFLAGS+set}"
X-  ac_save_CFLAGS="$CFLAGS"
X-  CFLAGS=
X-  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
X-echo "configure:673: checking whether ${CC-cc} accepts -g" >&5
X+else
X+  GCC=
X+fi
X+
X+ac_test_CFLAGS="${CFLAGS+set}"
X+ac_save_CFLAGS="$CFLAGS"
X+CFLAGS=
X+echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
X+echo "configure:724: checking whether ${CC-cc} accepts -g" >&5
X if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X@@ -684,16 +735,20 @@
X fi
X 
X echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
X-  if test "$ac_test_CFLAGS" = set; then
X-    CFLAGS="$ac_save_CFLAGS"
X-  elif test $ac_cv_prog_cc_g = yes; then
X+if test "$ac_test_CFLAGS" = set; then
X+  CFLAGS="$ac_save_CFLAGS"
X+elif test $ac_cv_prog_cc_g = yes; then
X+  if test "$GCC" = yes; then
X     CFLAGS="-g -O2"
X   else
X-    CFLAGS="-O2"
X+    CFLAGS="-g"
X   fi
X else
X-  GCC=
X-  test "${CFLAGS+set}" = set || CFLAGS="-g"
X+  if test "$GCC" = yes; then
X+    CFLAGS="-O2"
X+  else
X+    CFLAGS=
X+  fi
X fi
X 
X 
X@@ -725,7 +780,7 @@
X EOF
X 
X echo $ac_n "checking whether GNAT has Interrupt_Management... " $ac_c;
X-if (gcc -c gnat_ver.adb 2>/dev/null); then
X+if (${CC} -c gnat_ver.adb 2>/dev/null); then
X  echo "yes"
X  echo "HAVE_INTERRUPT_MANAGEMENT := True" >> gnatprep.config;
X else
X@@ -744,7 +799,7 @@
X EOF
X 
X echo $ac_n "checking whether GNAT has NT_GNAT_Exception... " $ac_c;
X-if (gcc -c gnat_ver.adb 2>/dev/null); then
X+if (${CC} -c gnat_ver.adb 2>/dev/null); then
X  echo "yes"
X  echo "HAVE_NT_GNAT_Exception := True" >> gnatprep.config;
X else
X@@ -760,7 +815,7 @@
X EOF
X 
X echo $ac_n "checking whether GNAT has Abort_Defer soft link... " $ac_c;
X-if (gcc -c gnat_ver.adb 2>/dev/null); then
X+if (${CC} -c gnat_ver.adb 2>/dev/null); then
X  echo "yes"
X  echo "HAVE_Soft_Abort_Defer := True" >> gnatprep.config;
X else
X@@ -777,7 +832,7 @@
X EOF
X 
X echo $ac_n "checking whether Set_Exc_Stack_Addr needs Self_ID... " $ac_c;
X-if (gcc -c gnat_ver.adb 2>/dev/null); then
X+if (${CC} -c gnat_ver.adb 2>/dev/null); then
X  echo "no"
X  echo "HAVE_Set_Exc_Stack_Addr_With_Self_ID := False" >> gnatprep.config;
X else
X@@ -851,7 +906,7 @@
X    ;;
X  OSF1)
X    echo "Using Configuration for" ${UNAME_SYSTEM} ${UNAME_RELEASE};
X-   case `gcc -dumpmachine` in
X+   case `${CC} -dumpmachine` in
X       *-*-osf4.0[bc])
X 	cp ./configs/pconfig.OSF1-4.0b ./pconfig.h.in;
X 	cat ./configs/Config.Default >> ./Config;
X@@ -894,8 +949,10 @@
X #  pthread.h must follow sched.h, since
X #  pthread.h redefines symbols in sched.h;
X #  the effect is to detect the problem and drop pthread.h
X+# for FreeBSD 5, sys/time.h must precede sched.h because the latter
X+#  requires struct timespec.
X echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
X-echo "configure:899: checking how to run the C preprocessor" >&5
X+echo "configure:956: checking how to run the C preprocessor" >&5
X # On Suns, sometimes $CPP names a directory.
X if test -n "$CPP" && test -d "$CPP"; then
X   CPP=
X@@ -910,14 +967,14 @@
X   # On the NeXT, cc -E runs the code through the compiler's parser,
X   # not just through cpp.
X   cat > conftest.$ac_ext <<EOF
X-#line 914 "configure"
X+#line 971 "configure"
X #include "confdefs.h"
X #include <assert.h>
X Syntax Error
X EOF
X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
X-{ (eval echo configure:920: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X-ac_err=`grep -v '^ *+' conftest.out`
X+{ (eval echo configure:977: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X+ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
X if test -z "$ac_err"; then
X   :
X else
X@@ -927,14 +984,31 @@
X   rm -rf conftest*
X   CPP="${CC-cc} -E -traditional-cpp"
X   cat > conftest.$ac_ext <<EOF
X-#line 931 "configure"
X+#line 988 "configure"
X+#include "confdefs.h"
X+#include <assert.h>
X+Syntax Error
X+EOF
X+ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
X+{ (eval echo configure:994: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X+ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
X+if test -z "$ac_err"; then
X+  :
X+else
X+  echo "$ac_err" >&5
X+  echo "configure: failed program was:" >&5
X+  cat conftest.$ac_ext >&5
X+  rm -rf conftest*
X+  CPP="${CC-cc} -nologo -E"
X+  cat > conftest.$ac_ext <<EOF
X+#line 1005 "configure"
X #include "confdefs.h"
X #include <assert.h>
X Syntax Error
X EOF
X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
X-{ (eval echo configure:937: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X-ac_err=`grep -v '^ *+' conftest.out`
X+{ (eval echo configure:1011: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X+ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
X if test -z "$ac_err"; then
X   :
X else
X@@ -947,6 +1021,8 @@
X rm -f conftest*
X fi
X rm -f conftest*
X+fi
X+rm -f conftest*
X   ac_cv_prog_CPP="$CPP"
X fi
X   CPP="$ac_cv_prog_CPP"
X@@ -970,6 +1046,8 @@
X  locale.h\
X  mqueue.h\
X  pwd.h\
X+ time.h\
X+ sys/time.h\
X  sched.h\
X  pthread.h\
X  semaphore.h\
X@@ -984,8 +1062,6 @@
X  limits.h\
X  sys/wait.h\
X  termios.h\
X- time.h\
X- sys/time.h\
X  unistd.h\
X  utime.h\
X 
X@@ -994,22 +1070,22 @@
X # CFLAGS="$CFLAGS -Werror"
X ac_safe=`echo "$ac_hdr" | tr './\055' '___'`
X echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
X-echo "configure:998: checking for $ac_hdr" >&5
X+echo "configure:1074: checking for $ac_hdr" >&5
X if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 1003 "configure"
X+#line 1079 "configure"
X #include "confdefs.h"
X #include <$ac_hdr>
X EOF
X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
X-{ (eval echo configure:1008: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X-ac_err=`grep -v '^ *+' conftest.out`
X+{ (eval echo configure:1084: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X+ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
X if test -z "$ac_err"; then
X   rm -rf conftest*
X   cat > conftest.$ac_ext <<EOF
X-#line 1013 "configure"
X+#line 1089 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X #include <$ac_hdr>
X@@ -1017,7 +1093,7 @@
X 
X ; return 0; }
X EOF
X-if { (eval echo configure:1021: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:1097: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_header_$ac_safe=yes"
X else
X@@ -1077,22 +1153,22 @@
X # CFLAGS="$CFLAGS -Werror"
X ac_safe=`echo "$ac_hdr" | tr './\055' '___'`
X echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
X-echo "configure:1081: checking for $ac_hdr" >&5
X+echo "configure:1157: checking for $ac_hdr" >&5
X if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 1086 "configure"
X+#line 1162 "configure"
X #include "confdefs.h"
X #include <$ac_hdr>
X EOF
X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
X-{ (eval echo configure:1091: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X-ac_err=`grep -v '^ *+' conftest.out`
X+{ (eval echo configure:1167: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X+ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
X if test -z "$ac_err"; then
X   rm -rf conftest*
X   cat > conftest.$ac_ext <<EOF
X-#line 1096 "configure"
X+#line 1172 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X #include <$ac_hdr>
X@@ -1100,7 +1176,7 @@
X 
X ; return 0; }
X EOF
X-if { (eval echo configure:1104: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:1180: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_header_$ac_safe=yes"
X else
X@@ -1137,22 +1213,22 @@
X # CFLAGS="$CFLAGS -Werror"
X ac_safe=`echo "xti.h" | tr './\055' '___'`
X echo $ac_n "checking for xti.h""... $ac_c" 1>&6
X-echo "configure:1141: checking for xti.h" >&5
X+echo "configure:1217: checking for xti.h" >&5
X if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 1146 "configure"
X+#line 1222 "configure"
X #include "confdefs.h"
X #include <xti.h>
X EOF
X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
X-{ (eval echo configure:1151: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X-ac_err=`grep -v '^ *+' conftest.out`
X+{ (eval echo configure:1227: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X+ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
X if test -z "$ac_err"; then
X   rm -rf conftest*
X   cat > conftest.$ac_ext <<EOF
X-#line 1156 "configure"
X+#line 1232 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X #include <xti.h>
X@@ -1160,7 +1236,7 @@
X 
X ; return 0; }
X EOF
X-if { (eval echo configure:1164: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:1240: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_header_$ac_safe=yes"
X else
X@@ -1194,22 +1270,22 @@
X # CFLAGS="$CFLAGS -Werror"
X ac_safe=`echo "tli.h" | tr './\055' '___'`
X echo $ac_n "checking for tli.h""... $ac_c" 1>&6
X-echo "configure:1198: checking for tli.h" >&5
X+echo "configure:1274: checking for tli.h" >&5
X if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 1203 "configure"
X+#line 1279 "configure"
X #include "confdefs.h"
X #include <tli.h>
X EOF
X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
X-{ (eval echo configure:1208: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X-ac_err=`grep -v '^ *+' conftest.out`
X+{ (eval echo configure:1284: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
X+ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
X if test -z "$ac_err"; then
X   rm -rf conftest*
X   cat > conftest.$ac_ext <<EOF
X-#line 1213 "configure"
X+#line 1289 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X #include <tli.h>
X@@ -1217,7 +1293,7 @@
X 
X ; return 0; }
X EOF
X-if { (eval echo configure:1221: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:1297: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_header_$ac_safe=yes"
X else
X@@ -1256,7 +1332,7 @@
X CFLAGS=$ac_old_cflags
X 
X cat > conftest.$ac_ext <<EOF
X-#line 1260 "configure"
X+#line 1336 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X int main() {
X@@ -1264,7 +1340,7 @@
X    hdr.msg_controllen = 0;
X ; return 0; }
X EOF
X-if { (eval echo configure:1268: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:1344: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   echo "Socket interface Looks like BSD 4.4";
X 
X@@ -1311,12 +1387,12 @@
X  fi;
X fi
X echo $ac_n "checking for getaddrinfo""... $ac_c" 1>&6
X-echo "configure:1315: checking for getaddrinfo" >&5
X+echo "configure:1391: checking for getaddrinfo" >&5
X if eval "test \"`echo '$''{'ac_cv_func_getaddrinfo'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 1320 "configure"
X+#line 1396 "configure"
X #include "confdefs.h"
X /* System header to define __stub macros and hopefully few prototypes,
X     which can conflict with char getaddrinfo(); below.  */
X@@ -1339,7 +1415,7 @@
X 
X ; return 0; }
X EOF
X-if { (eval echo configure:1343: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1419: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_func_getaddrinfo=yes"
X else
X@@ -1365,12 +1441,12 @@
X 
X 
X echo $ac_n "checking for pthread_self in -lpthread""... $ac_c" 1>&6
X-echo "configure:1369: checking for pthread_self in -lpthread" >&5
X+echo "configure:1445: checking for pthread_self in -lpthread" >&5
X ac_lib_var=`echo pthread_pthread_self | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lpthread $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1374 "configure"
X+#line 1450 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char pthread_self();
X@@ -1379,7 +1455,7 @@
X pthread_self()
X ; return 0; }
X EOF
X-if { (eval echo configure:1383: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1399,12 +1475,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for __pthread_self in -lpthread""... $ac_c" 1>&6
X-echo "configure:1403: checking for __pthread_self in -lpthread" >&5
X+echo "configure:1479: checking for __pthread_self in -lpthread" >&5
X ac_lib_var=`echo pthread___pthread_self | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lpthread $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1408 "configure"
X+#line 1484 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char __pthread_self();
X@@ -1413,7 +1489,7 @@
X __pthread_self()
X ; return 0; }
X EOF
X-if { (eval echo configure:1417: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1493: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1433,12 +1509,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for pthread_self in -lpthreads""... $ac_c" 1>&6
X-echo "configure:1437: checking for pthread_self in -lpthreads" >&5
X+echo "configure:1513: checking for pthread_self in -lpthreads" >&5
X ac_lib_var=`echo pthreads_pthread_self | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lpthreads $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1442 "configure"
X+#line 1518 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char pthread_self();
X@@ -1447,7 +1523,7 @@
X pthread_self()
X ; return 0; }
X EOF
X-if { (eval echo configure:1451: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1527: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1467,12 +1543,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for pthread_self in -ldce""... $ac_c" 1>&6
X-echo "configure:1471: checking for pthread_self in -ldce" >&5
X+echo "configure:1547: checking for pthread_self in -ldce" >&5
X ac_lib_var=`echo dce_pthread_self | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-ldce $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1476 "configure"
X+#line 1552 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char pthread_self();
X@@ -1481,7 +1557,7 @@
X pthread_self()
X ; return 0; }
X EOF
X-if { (eval echo configure:1485: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1561: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1501,12 +1577,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for pthread_self in -l:libdce.a""... $ac_c" 1>&6
X-echo "configure:1505: checking for pthread_self in -l:libdce.a" >&5
X+echo "configure:1581: checking for pthread_self in -l:libdce.a" >&5
X ac_lib_var=`echo :libdce.a_pthread_self | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-l:libdce.a $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1510 "configure"
X+#line 1586 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char pthread_self();
X@@ -1515,7 +1591,7 @@
X pthread_self()
X ; return 0; }
X EOF
X-if { (eval echo configure:1519: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1595: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1535,12 +1611,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for pthread_self in -lthread""... $ac_c" 1>&6
X-echo "configure:1539: checking for pthread_self in -lthread" >&5
X+echo "configure:1615: checking for pthread_self in -lthread" >&5
X ac_lib_var=`echo thread_pthread_self | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lthread $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1544 "configure"
X+#line 1620 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char pthread_self();
X@@ -1549,7 +1625,7 @@
X pthread_self()
X ; return 0; }
X EOF
X-if { (eval echo configure:1553: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1629: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1582,12 +1658,12 @@
X 
X 
X echo $ac_n "checking for aio_read in -laio""... $ac_c" 1>&6
X-echo "configure:1586: checking for aio_read in -laio" >&5
X+echo "configure:1662: checking for aio_read in -laio" >&5
X ac_lib_var=`echo aio_aio_read | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-laio $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1591 "configure"
X+#line 1667 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char aio_read();
X@@ -1596,7 +1672,7 @@
X aio_read()
X ; return 0; }
X EOF
X-if { (eval echo configure:1600: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1676: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1619,12 +1695,12 @@
X 
X 
X echo $ac_n "checking for clock_gettime in -lposix4""... $ac_c" 1>&6
X-echo "configure:1623: checking for clock_gettime in -lposix4" >&5
X+echo "configure:1699: checking for clock_gettime in -lposix4" >&5
X ac_lib_var=`echo posix4_clock_gettime | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lposix4 $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1628 "configure"
X+#line 1704 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char clock_gettime();
X@@ -1633,7 +1709,7 @@
X clock_gettime()
X ; return 0; }
X EOF
X-if { (eval echo configure:1637: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1713: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1653,12 +1729,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for clock_gettime in -lrt""... $ac_c" 1>&6
X-echo "configure:1657: checking for clock_gettime in -lrt" >&5
X+echo "configure:1733: checking for clock_gettime in -lrt" >&5
X ac_lib_var=`echo rt_clock_gettime | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lrt $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1662 "configure"
X+#line 1738 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char clock_gettime();
X@@ -1667,7 +1743,7 @@
X clock_gettime()
X ; return 0; }
X EOF
X-if { (eval echo configure:1671: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1747: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1692,12 +1768,12 @@
X 
X 
X echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
X-echo "configure:1696: checking for gethostbyname in -lnsl" >&5
X+echo "configure:1772: checking for gethostbyname in -lnsl" >&5
X ac_lib_var=`echo nsl_gethostbyname | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lnsl $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1701 "configure"
X+#line 1777 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char gethostbyname();
X@@ -1706,7 +1782,7 @@
X gethostbyname()
X ; return 0; }
X EOF
X-if { (eval echo configure:1710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1729,12 +1805,12 @@
X 
X 
X echo $ac_n "checking for t_bind in -lnsl""... $ac_c" 1>&6
X-echo "configure:1733: checking for t_bind in -lnsl" >&5
X+echo "configure:1809: checking for t_bind in -lnsl" >&5
X ac_lib_var=`echo nsl_t_bind | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lnsl $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1738 "configure"
X+#line 1814 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char t_bind();
X@@ -1743,7 +1819,7 @@
X t_bind()
X ; return 0; }
X EOF
X-if { (eval echo configure:1747: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1823: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1763,12 +1839,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for t_bind in -lnsl_s""... $ac_c" 1>&6
X-echo "configure:1767: checking for t_bind in -lnsl_s" >&5
X+echo "configure:1843: checking for t_bind in -lnsl_s" >&5
X ac_lib_var=`echo nsl_s_t_bind | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lnsl_s $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1772 "configure"
X+#line 1848 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char t_bind();
X@@ -1777,7 +1853,7 @@
X t_bind()
X ; return 0; }
X EOF
X-if { (eval echo configure:1781: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1857: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1802,12 +1878,12 @@
X 
X 
X echo $ac_n "checking for socketpair in -lsocket""... $ac_c" 1>&6
X-echo "configure:1806: checking for socketpair in -lsocket" >&5
X+echo "configure:1882: checking for socketpair in -lsocket" >&5
X ac_lib_var=`echo socket_socketpair | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lsocket $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1811 "configure"
X+#line 1887 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char socketpair();
X@@ -1816,7 +1892,7 @@
X socketpair()
X ; return 0; }
X EOF
X-if { (eval echo configure:1820: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1896: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1836,12 +1912,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for socketpair in -lBSD""... $ac_c" 1>&6
X-echo "configure:1840: checking for socketpair in -lBSD" >&5
X+echo "configure:1916: checking for socketpair in -lBSD" >&5
X ac_lib_var=`echo BSD_socketpair | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lBSD $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1845 "configure"
X+#line 1921 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char socketpair();
X@@ -1850,7 +1926,7 @@
X socketpair()
X ; return 0; }
X EOF
X-if { (eval echo configure:1854: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1930: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1870,12 +1946,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for socketpair in -lbsd""... $ac_c" 1>&6
X-echo "configure:1874: checking for socketpair in -lbsd" >&5
X+echo "configure:1950: checking for socketpair in -lbsd" >&5
X ac_lib_var=`echo bsd_socketpair | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lbsd $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1879 "configure"
X+#line 1955 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char socketpair();
X@@ -1884,7 +1960,7 @@
X socketpair()
X ; return 0; }
X EOF
X-if { (eval echo configure:1888: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:1964: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1911,12 +1987,12 @@
X 
X 
X echo $ac_n "checking for accept in -lsocket""... $ac_c" 1>&6
X-echo "configure:1915: checking for accept in -lsocket" >&5
X+echo "configure:1991: checking for accept in -lsocket" >&5
X ac_lib_var=`echo socket_accept | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lsocket $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1920 "configure"
X+#line 1996 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char accept();
X@@ -1925,7 +2001,7 @@
X accept()
X ; return 0; }
X EOF
X-if { (eval echo configure:1929: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:2005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1945,12 +2021,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for accept in -lBSD""... $ac_c" 1>&6
X-echo "configure:1949: checking for accept in -lBSD" >&5
X+echo "configure:2025: checking for accept in -lBSD" >&5
X ac_lib_var=`echo BSD_accept | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lBSD $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1954 "configure"
X+#line 2030 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char accept();
X@@ -1959,7 +2035,7 @@
X accept()
X ; return 0; }
X EOF
X-if { (eval echo configure:1963: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:2039: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -1979,12 +2055,12 @@
X else
X   echo "$ac_t""no" 1>&6
X echo $ac_n "checking for accept in -lbsd""... $ac_c" 1>&6
X-echo "configure:1983: checking for accept in -lbsd" >&5
X+echo "configure:2059: checking for accept in -lbsd" >&5
X ac_lib_var=`echo bsd_accept | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lbsd $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 1988 "configure"
X+#line 2064 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char accept();
X@@ -1993,7 +2069,7 @@
X accept()
X ; return 0; }
X EOF
X-if { (eval echo configure:1997: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:2073: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -2020,12 +2096,12 @@
X 
X 
X echo $ac_n "checking for h_errno in -lresolv""... $ac_c" 1>&6
X-echo "configure:2024: checking for h_errno in -lresolv" >&5
X+echo "configure:2100: checking for h_errno in -lresolv" >&5
X ac_lib_var=`echo resolv_h_errno | tr ':.-/+' '____p'`
X ac_save_LIBS="$LIBS"
X LIBS="-lresolv $LIBS"
X cat > conftest.$ac_ext <<EOF
X-#line 2029 "configure"
X+#line 2105 "configure"
X #include "confdefs.h"
X /* Override any gcc2 internal prototype to avoid an error.  */
X char h_errno();
X@@ -2034,7 +2110,7 @@
X h_errno()
X ; return 0; }
X EOF
X-if { (eval echo configure:2038: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:2114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_lib_$ac_lib_var=yes"
X else
X@@ -2060,12 +2136,12 @@
X echo "LIBS=${LIBS}" >> Config
X 
X echo $ac_n "checking for global variable or macro t_errno""... $ac_c" 1>&6
X-echo "configure:2064: checking for global variable or macro t_errno" >&5
X+echo "configure:2140: checking for global variable or macro t_errno" >&5
X if eval "test \"`echo '$''{'ac_cv_comp_t_errno'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2069 "configure"
X+#line 2145 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X EOF
X@@ -2091,12 +2167,12 @@
X fi
X 
X echo $ac_n "checking for global variable or macro t_nerr""... $ac_c" 1>&6
X-echo "configure:2095: checking for global variable or macro t_nerr" >&5
X+echo "configure:2171: checking for global variable or macro t_nerr" >&5
X if eval "test \"`echo '$''{'ac_cv_comp_t_nerr'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2100 "configure"
X+#line 2176 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X EOF
X@@ -2122,12 +2198,12 @@
X fi
X 
X echo $ac_n "checking for struct msghdr component msg_control""... $ac_c" 1>&6
X-echo "configure:2126: checking for struct msghdr component msg_control" >&5
X+echo "configure:2202: checking for struct msghdr component msg_control" >&5
X if eval "test \"`echo '$''{'ac_cv_comp_msg_control'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2131 "configure"
X+#line 2207 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X struct msghdr x;
X@@ -2135,7 +2211,7 @@
X x.msg_control = x.msg_control;
X ; return 0; }
X EOF
X-if { (eval echo configure:2139: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:2215: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_comp_msg_control=yes"
X else
X@@ -2157,12 +2233,12 @@
X fi
X 
X echo $ac_n "checking for struct msghdr component msg_controllen""... $ac_c" 1>&6
X-echo "configure:2161: checking for struct msghdr component msg_controllen" >&5
X+echo "configure:2237: checking for struct msghdr component msg_controllen" >&5
X if eval "test \"`echo '$''{'ac_cv_comp_msg_controllen'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2166 "configure"
X+#line 2242 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X struct msghdr x;
X@@ -2170,7 +2246,7 @@
X x.msg_controllen = x.msg_controllen;
X ; return 0; }
X EOF
X-if { (eval echo configure:2174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:2250: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_comp_msg_controllen=yes"
X else
X@@ -2192,12 +2268,12 @@
X fi
X 
X echo $ac_n "checking for struct msghdr component msg_flags""... $ac_c" 1>&6
X-echo "configure:2196: checking for struct msghdr component msg_flags" >&5
X+echo "configure:2272: checking for struct msghdr component msg_flags" >&5
X if eval "test \"`echo '$''{'ac_cv_comp_msg_flags'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2201 "configure"
X+#line 2277 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X struct msghdr x;
X@@ -2205,7 +2281,7 @@
X x.msg_flags = x.msg_flags;
X ; return 0; }
X EOF
X-if { (eval echo configure:2209: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:2285: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_comp_msg_flags=yes"
X else
X@@ -2227,12 +2303,12 @@
X fi
X 
X echo $ac_n "checking for struct sigevent component sigev_notify_function""... $ac_c" 1>&6
X-echo "configure:2231: checking for struct sigevent component sigev_notify_function" >&5
X+echo "configure:2307: checking for struct sigevent component sigev_notify_function" >&5
X if eval "test \"`echo '$''{'ac_cv_comp_sigev_notify_function'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2236 "configure"
X+#line 2312 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X struct sigevent x;
X@@ -2240,7 +2316,7 @@
X x.sigev_notify_function = x.sigev_notify_function;
X ; return 0; }
X EOF
X-if { (eval echo configure:2244: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:2320: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_comp_sigev_notify_function=yes"
X else
X@@ -2262,7 +2338,7 @@
X fi
X 
X echo $ac_n "checking for struct sigaction component sa_sigaction overlaying sa_handler""... $ac_c" 1>&6
X-echo "configure:2266: checking for struct sigaction component sa_sigaction overlaying sa_handler" >&5
X+echo "configure:2342: checking for struct sigaction component sa_sigaction overlaying sa_handler" >&5
X if eval "test \"`echo '$''{'ac_cv_comp_sa_sigaction'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X@@ -2270,7 +2346,7 @@
X   eval "ac_cv_comp_sa_sigaction=nu"
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2274 "configure"
X+#line 2350 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X main()
X@@ -2284,7 +2360,7 @@
X   }
X }
X EOF
X-if { (eval echo configure:2288: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
X+if { (eval echo configure:2364: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
X then
X   eval "ac_cv_comp_sa_sigaction=yes"
X else
X@@ -2357,12 +2433,12 @@
X 
X do
X   echo $ac_n "checking for struct $ac_struct""... $ac_c" 1>&6
X-echo "configure:2361: checking for struct $ac_struct" >&5
X+echo "configure:2437: checking for struct $ac_struct" >&5
X if eval "test \"`echo '$''{'ac_cv_struct_$ac_struct'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2366 "configure"
X+#line 2442 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X struct $ac_struct x;
X@@ -2370,7 +2446,7 @@
X 
X ; return 0; }
X EOF
X-if { (eval echo configure:2374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X+if { (eval echo configure:2450: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
X   rm -rf conftest*
X   eval "ac_cv_struct_$ac_struct=yes"
X else
X@@ -2425,12 +2501,12 @@
X 
X do
X   echo $ac_n "checking for $ac_typ""... $ac_c" 1>&6
X-echo "configure:2429: checking for $ac_typ" >&5
X+echo "configure:2505: checking for $ac_typ" >&5
X if eval "test \"`echo '$''{'ac_cv_type_$ac_typ'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2434 "configure"
X+#line 2510 "configure"
X #include "confdefs.h"
X #include "pconfig.h"
X EOF
X@@ -2745,12 +2821,12 @@
X 
X do
X echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
X-echo "configure:2749: checking for $ac_func" >&5
X+echo "configure:2825: checking for $ac_func" >&5
X if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
X   echo $ac_n "(cached) $ac_c" 1>&6
X else
X   cat > conftest.$ac_ext <<EOF
X-#line 2754 "configure"
X+#line 2830 "configure"
X #include "confdefs.h"
X /* System header to define __stub macros and hopefully few prototypes,
X     which can conflict with char $ac_func(); below.  */
X@@ -2773,7 +2849,7 @@
X 
X ; return 0; }
X EOF
X-if { (eval echo configure:2777: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
X+if { (eval echo configure:2853: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
X   rm -rf conftest*
X   eval "ac_cv_func_$ac_func=yes"
X else
X@@ -2845,7 +2921,7 @@
X     echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
X     exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
X   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
X-    echo "$CONFIG_STATUS generated by autoconf version 2.12"
X+    echo "$CONFIG_STATUS generated by autoconf version 2.13"
X     exit 0 ;;
X   -help | --help | --hel | --he | --h)
X     echo "\$ac_cs_usage"; exit 0 ;;
X@@ -2864,9 +2940,11 @@
X  s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF
X $ac_vpsub
X $extrasub
X+s%@SHELL@%$SHELL%g
X s%@CFLAGS@%$CFLAGS%g
X s%@CPPFLAGS@%$CPPFLAGS%g
X s%@CXXFLAGS@%$CXXFLAGS%g
X+s%@FFLAGS@%$FFLAGS%g
X s%@DEFS@%$DEFS%g
X s%@LDFLAGS@%$LDFLAGS%g
X s%@LIBS@%$LIBS%g
END-of-devel/florist/files/patch-ab
echo x - devel/florist/Makefile
sed 's/^X//' >devel/florist/Makefile << 'END-of-devel/florist/Makefile'
X# New ports collection makefile for:	asis
X# Date created:				02 Apr 2001
X# Whom:					Thomas Quinot <thomas@cuivre.fr.eu.org>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	florist
XPORTVERSION=	3.13p
XCATEGORIES=	devel
XMASTER_SITES=	\
X	ftp://ftp.lip6.fr/pub/gnat/${PORTVERSION}/ \
X	ftp://cs.nyu.edu/pub/gnat/${PORTVERSION}/
XDISTNAME=	florist-${PORTVERSION}-src
XEXTRACT_SUFX=	.tgz
X
XMAINTAINER=	thomas@cuivre.fr.eu.org
X
XBUILD_DEPENDS=	adagcc:${PORTSDIR}/lang/gnat
X
XGNU_CONFIGURE=		yes
XCONFIGURE_ENV=		CC=adagcc
XMAKE_ENV=		CC=adagcc
XMAKE_ARGS=		GCC_ADDITIONAL_FLAGS=-pthread
X
XUSE_GMAKE=	yes
X
Xdo-install:
X	@ ${MKDIR} ${PREFIX}/lib/florist || true
X	@ ${INSTALL_DATA} ${WRKSRC}/floristlib/*.ad? ${WRKSRC}/floristlib/*.ali ${PREFIX}/lib/florist
X	@ ${INSTALL_DATA} ${WRKSRC}/floristlib/libflorist* ${PREFIX}/lib/florist
X
X.if !defined(NOPORTDOCS)
X	@ ${MKDIR} ${PREFIX}/share/doc/florist || true
X	@ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/florist
X.endif
X
X.include <bsd.port.mk>
END-of-devel/florist/Makefile
echo x - devel/florist/distinfo
sed 's/^X//' >devel/florist/distinfo << 'END-of-devel/florist/distinfo'
XMD5 (florist-3.13p-src.tgz) = c0136de04691ba62339ce814bd947575
END-of-devel/florist/distinfo
echo x - devel/florist/pkg-comment
sed 's/^X//' >devel/florist/pkg-comment << 'END-of-devel/florist/pkg-comment'
XFSU implementaton of IEEE Standard 1003.5b-1996, the POSIX Ada binding.
END-of-devel/florist/pkg-comment
echo x - devel/florist/pkg-descr
sed 's/^X//' >devel/florist/pkg-descr << 'END-of-devel/florist/pkg-descr'
XFlorist is the FSU implementaton of IEEE Standard 1003.5b-1996,
Xthe POSIX Ada binding, including real-time extensions. This software
Xprovides access to the UNIX operating system services for application
Xprograms written in the Ada programming language. It is designed to be
Xself-configuring for a POSIX-compliant system. 
X
XWWW: http://www.cs.fsu.edu/~baker/florist.html
X
X-- 
XThomas Quinot -- <thomas@cuivre.fr.eu.org>
END-of-devel/florist/pkg-descr
echo x - devel/florist/pkg-plist
sed 's/^X//' >devel/florist/pkg-plist << 'END-of-devel/florist/pkg-plist'
Xlib/florist/ada_streams.ads
Xlib/florist/ada_streams.ali
Xlib/florist/ada_task_identification.ads
Xlib/florist/ada_task_identification.ali
Xlib/florist/deps.adb
Xlib/florist/deps.ads
Xlib/florist/deps5c.adb
Xlib/florist/deps5c.ads
Xlib/florist/gnat_ver.ali
Xlib/florist/gnatprep.adb
Xlib/florist/gnatprep.ads
Xlib/florist/posix-asynchronous_io.adb
Xlib/florist/posix-asynchronous_io.ads
Xlib/florist/posix-asynchronous_io.ali
Xlib/florist/posix-c.adb
Xlib/florist/posix-c.ads
Xlib/florist/posix-c.ali
Xlib/florist/posix-calendar.adb
Xlib/florist/posix-calendar.ads
Xlib/florist/posix-calendar.ali
Xlib/florist/posix-condition_variables.adb
Xlib/florist/posix-condition_variables.ads
Xlib/florist/posix-condition_variables.ali
Xlib/florist/posix-configurable_file_limits.adb
Xlib/florist/posix-configurable_file_limits.ads
Xlib/florist/posix-configurable_file_limits.ali
Xlib/florist/posix-configurable_system_limits.adb
Xlib/florist/posix-configurable_system_limits.ads
Xlib/florist/posix-configurable_system_limits.ali
Xlib/florist/posix-error_codes.ads
Xlib/florist/posix-error_codes.ali
Xlib/florist/posix-event_management.adb
Xlib/florist/posix-event_management.ads
Xlib/florist/posix-file_locking.adb
Xlib/florist/posix-file_locking.ads
Xlib/florist/posix-file_locking.ali
Xlib/florist/posix-file_status.adb
Xlib/florist/posix-file_status.ads
Xlib/florist/posix-file_status.ali
Xlib/florist/posix-files.adb
Xlib/florist/posix-files.ads
Xlib/florist/posix-files.ali
Xlib/florist/posix-generic_shared_memory.adb
Xlib/florist/posix-generic_shared_memory.ads
Xlib/florist/posix-generic_shared_memory.ali
Xlib/florist/posix-group_database.adb
Xlib/florist/posix-group_database.ads
Xlib/florist/posix-group_database.ali
Xlib/florist/posix-implementation-ok_signals.ads
Xlib/florist/posix-implementation-ok_signals.ali
Xlib/florist/posix-implementation.adb
Xlib/florist/posix-implementation.ads
Xlib/florist/posix-implementation.ali
Xlib/florist/posix-io.adb
Xlib/florist/posix-io.ads
Xlib/florist/posix-io.ali
Xlib/florist/posix-limits.ads
Xlib/florist/posix-limits.ali
Xlib/florist/posix-memory_locking.adb
Xlib/florist/posix-memory_locking.ads
Xlib/florist/posix-memory_locking.ali
Xlib/florist/posix-memory_mapping.adb
Xlib/florist/posix-memory_mapping.ads
Xlib/florist/posix-memory_mapping.ali
Xlib/florist/posix-memory_range_locking.adb
Xlib/florist/posix-memory_range_locking.ads
Xlib/florist/posix-memory_range_locking.ali
Xlib/florist/posix-message_queues.adb
Xlib/florist/posix-message_queues.ads
Xlib/florist/posix-message_queues.ali
Xlib/florist/posix-mutexes.adb
Xlib/florist/posix-mutexes.ads
Xlib/florist/posix-mutexes.ali
Xlib/florist/posix-options.ads
Xlib/florist/posix-options.ali
Xlib/florist/posix-page_alignment.adb
Xlib/florist/posix-page_alignment.ads
Xlib/florist/posix-page_alignment.ali
Xlib/florist/posix-permissions-implementation.adb
Xlib/florist/posix-permissions-implementation.ads
Xlib/florist/posix-permissions-implementation.ali
Xlib/florist/posix-permissions.adb
Xlib/florist/posix-permissions.ads
Xlib/florist/posix-permissions.ali
Xlib/florist/posix-process_environment.adb
Xlib/florist/posix-process_environment.ads
Xlib/florist/posix-process_environment.ali
Xlib/florist/posix-process_identification.adb
Xlib/florist/posix-process_identification.ads
Xlib/florist/posix-process_identification.ali
Xlib/florist/posix-process_primitives.adb
Xlib/florist/posix-process_primitives.ads
Xlib/florist/posix-process_primitives.ali
Xlib/florist/posix-process_scheduling.adb
Xlib/florist/posix-process_scheduling.ads
Xlib/florist/posix-process_scheduling.ali
Xlib/florist/posix-process_times.adb
Xlib/florist/posix-process_times.ads
Xlib/florist/posix-process_times.ali
Xlib/florist/posix-semaphores.adb
Xlib/florist/posix-semaphores.ads
Xlib/florist/posix-semaphores.ali
Xlib/florist/posix-shared_memory_objects.adb
Xlib/florist/posix-shared_memory_objects.ads
Xlib/florist/posix-shared_memory_objects.ali
Xlib/florist/posix-signals.adb
Xlib/florist/posix-signals.ads
Xlib/florist/posix-signals.ali
Xlib/florist/posix-sockets-internet.adb
Xlib/florist/posix-sockets-internet.ads
Xlib/florist/posix-sockets-iso.ads
Xlib/florist/posix-sockets-local.adb
Xlib/florist/posix-sockets-local.ads
Xlib/florist/posix-sockets.adb
Xlib/florist/posix-sockets.ads
Xlib/florist/posix-supplement_to_ada_io.adb
Xlib/florist/posix-supplement_to_ada_io.ads
Xlib/florist/posix-supplement_to_ada_io.ali
Xlib/florist/posix-terminal_functions.adb
Xlib/florist/posix-terminal_functions.ads
Xlib/florist/posix-terminal_functions.ali
Xlib/florist/posix-timers.adb
Xlib/florist/posix-timers.ads
Xlib/florist/posix-timers.ali
Xlib/florist/posix-unsafe_process_primitives.adb
Xlib/florist/posix-unsafe_process_primitives.ads
Xlib/florist/posix-unsafe_process_primitives.ali
Xlib/florist/posix-user_database.adb
Xlib/florist/posix-user_database.ads
Xlib/florist/posix-user_database.ali
Xlib/florist/posix-xti-internet.adb
Xlib/florist/posix-xti-internet.ads
Xlib/florist/posix-xti-iso.ads
Xlib/florist/posix-xti-mosi.ads
Xlib/florist/posix-xti.adb
Xlib/florist/posix-xti.ads
Xlib/florist/posix.adb
Xlib/florist/posix.ads
Xlib/florist/posix.ali
Xlib/florist/posix_asynchronous_io.ads
Xlib/florist/posix_asynchronous_io.ali
Xlib/florist/posix_c.ads
Xlib/florist/posix_calendar.ads
Xlib/florist/posix_calendar.ali
Xlib/florist/posix_condition_variables.ads
Xlib/florist/posix_condition_variables.ali
Xlib/florist/posix_configurable_file_limits.ads
Xlib/florist/posix_configurable_file_limits.ali
Xlib/florist/posix_configurable_system_limits.ads
Xlib/florist/posix_configurable_system_limits.ali
Xlib/florist/posix_error_codes.ads
Xlib/florist/posix_error_codes.ali
Xlib/florist/posix_file_locking.ads
Xlib/florist/posix_file_locking.ali
Xlib/florist/posix_file_status.ads
Xlib/florist/posix_file_status.ali
Xlib/florist/posix_files.ads
Xlib/florist/posix_files.ali
Xlib/florist/posix_generic_shared_memory.ads
Xlib/florist/posix_generic_shared_memory.ali
Xlib/florist/posix_group_database.ads
Xlib/florist/posix_group_database.ali
Xlib/florist/posix_io.ads
Xlib/florist/posix_io.ali
Xlib/florist/posix_limits.ads
Xlib/florist/posix_limits.ali
Xlib/florist/posix_memory_locking.ads
Xlib/florist/posix_memory_locking.ali
Xlib/florist/posix_memory_mapping.ads
Xlib/florist/posix_memory_mapping.ali
Xlib/florist/posix_memory_range_locking.ads
Xlib/florist/posix_memory_range_locking.ali
Xlib/florist/posix_message_queues.ads
Xlib/florist/posix_message_queues.ali
Xlib/florist/posix_mutexes.ads
Xlib/florist/posix_mutexes.ali
Xlib/florist/posix_options.ads
Xlib/florist/posix_options.ali
Xlib/florist/posix_page_alignment.ads
Xlib/florist/posix_page_alignment.ali
Xlib/florist/posix_permissions.ads
Xlib/florist/posix_permissions.ali
Xlib/florist/posix_process_environment.ads
Xlib/florist/posix_process_environment.ali
Xlib/florist/posix_process_identification.ads
Xlib/florist/posix_process_identification.ali
Xlib/florist/posix_process_primitives.ads
Xlib/florist/posix_process_primitives.ali
Xlib/florist/posix_process_scheduling.ads
Xlib/florist/posix_process_scheduling.ali
Xlib/florist/posix_process_times.ads
Xlib/florist/posix_process_times.ali
Xlib/florist/posix_semaphores.ads
Xlib/florist/posix_semaphores.ali
Xlib/florist/posix_shared_memory_objects.ads
Xlib/florist/posix_shared_memory_objects.ali
Xlib/florist/posix_signals.ads
Xlib/florist/posix_signals.ali
Xlib/florist/posix_supplement_to_ada_io.ads
Xlib/florist/posix_supplement_to_ada_io.ali
Xlib/florist/posix_terminal_functions.ads
Xlib/florist/posix_terminal_functions.ali
Xlib/florist/posix_timers.ads
Xlib/florist/posix_timers.ali
Xlib/florist/posix_unsafe_process_primitives.ads
Xlib/florist/posix_unsafe_process_primitives.ali
Xlib/florist/posix_user_database.ads
Xlib/florist/posix_user_database.ali
Xlib/florist/system_storage_elements.ads
X
Xlib/florist/libflorist-shared.so
Xlib/florist/libflorist.a
X
X@exec /sbin/ldconfig -m %D/lib/florist
X@unexec /sbin/ldconfig -R
X
Xshare/doc/florist/README
X
X@dirrm lib/florist
X@dirrm share/doc/florist
END-of-devel/florist/pkg-plist
exit

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010402171700.B446C11287>