From owner-freebsd-ports Mon Apr 2 10:21: 5 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9998B37B71F for ; Mon, 2 Apr 2001 10:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f32HK2j96828; Mon, 2 Apr 2001 10:20:02 -0700 (PDT) (envelope-from gnats) Received: from infres.enst.fr (infres-192.enst.fr [137.194.192.1]) by hub.freebsd.org (Postfix) with ESMTP id AFFE537B719 for ; Mon, 2 Apr 2001 10:17:08 -0700 (PDT) (envelope-from quinot@inf.enst.fr) Received: from shalmaneser.enst.fr (shalmaneser.enst.fr [137.194.160.128]) by infres.enst.fr (Postfix) with ESMTP id 8B68B4543B for ; Mon, 2 Apr 2001 19:17:03 +0200 (MET DST) Received: by shalmaneser.enst.fr (Postfix, from userid 11117) id B446C11287; Mon, 2 Apr 2001 19:17:00 +0200 (CEST) Message-Id: <20010402171700.B446C11287@shalmaneser.enst.fr> Date: Mon, 2 Apr 2001 19:17:00 +0200 (CEST) From: thomas@cuivre.fr.eu.org Reply-To: thomas@cuivre.fr.eu.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/26297: New port: devel/florist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >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 -- >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 < 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 < 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 < 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 < 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 < 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 < 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 < 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 < 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 < 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 < 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 < 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 < 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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 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 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 -- 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