Displaying 4 results from an estimated 4 matches for "bsdsignal".
Did you mean:
bsd_signal
2003 Jun 09
0
[patch] ./configure problem on Solaris
...igure
script cannot find the regex engine.
This is because of the following in configure.in:
LIBXTRA=false
AC_SEARCH_LIBS(xmalloc, iberty, , LIBXTRA=true AC_LIBOBJ(xmalloc))
AC_SEARCH_LIBS(xstrdup, iberty, , LIBXTRA=true AC_LIBOBJ(xstrdup))
AC_SEARCH_LIBS(bsd_signal, bsd, , LIBXTRA=true AC_LIBOBJ(bsdsignal))
if $LIBXTRA; then
LIBS="../lib/libxtra.a $LIBS"
fi
Solaris doesn't have xmalloc and friends available and so LIBS
includes ../lib/libxtra.a.
This causes all future invokations of the compiler to fail like so:
configure:10955: /opt/SUNWspro/bin/cc -o conftest -fast -g -xs...
2004 Jul 20
0
broken configure in tftp-hpa 0.37
...37/configure.in 2004-07-20 18:32:24.000000000 +0300
@@ -129,9 +129,12 @@
OBJROOT=`pwd`
LIBXTRA=false
-AC_SEARCH_LIBS(xmalloc, iberty, , LIBXTRA=true AC_LIBOBJ(xmalloc))
-AC_SEARCH_LIBS(xstrdup, iberty, , LIBXTRA=true AC_LIBOBJ(xstrdup))
-AC_SEARCH_LIBS(bsd_signal, bsd, , LIBXTRA=true AC_LIBOBJ(bsdsignal))
+AC_SEARCH_LIBS(xmalloc, iberty, ,LIBXTRA=true
+[AC_LIBOBJ(xmalloc)])
+AC_SEARCH_LIBS(xstrdup, iberty, ,LIBXTRA=true
+[AC_LIBOBJ(xstrdup)])
+AC_SEARCH_LIBS(bsd_signal, bsd, ,LIBXTRA=true
+[AC_LIBOBJ(bsdsignal)])
if $LIBXTRA; then
XTRALIBS="$OBJROOT/lib/libxtra.a $XTRALIBS"
fi
2003 Jun 09
1
[patch] ./configure problem on Solaris with Sun's CC
...igure
script cannot find the regex engine.
This is because of the following in configure.in:
LIBXTRA=false
AC_SEARCH_LIBS(xmalloc, iberty, , LIBXTRA=true AC_LIBOBJ(xmalloc))
AC_SEARCH_LIBS(xstrdup, iberty, , LIBXTRA=true AC_LIBOBJ(xstrdup))
AC_SEARCH_LIBS(bsd_signal, bsd, , LIBXTRA=true AC_LIBOBJ(bsdsignal))
if $LIBXTRA; then
LIBS="../lib/libxtra.a $LIBS"
fi
Solaris doesn't have xmalloc and friends available and so LIBS
includes ../lib/libxtra.a.
This causes all future invokations of the compiler to fail like so:
configure:10955: /opt/SUNWspro/bin/cc -o conftest -fast -g -xs...
2005 May 30
0
compiling tftp-hpa-040 under Solaris 8
...root at isu001[/usr/src/tftp-hpa-0.40/lib] > ls -al
total 12
drwxrwxr-x 2 root other 512 Oct 9 2004 .
drwxrwxr-x 5 root other 1024 May 30 12:57 ..
-rw-rw-r-- 1 root other 296 May 30 12:12 Makefile
-rw-rw-r-- 1 root other 606 Aug 7 2001 bsdsignal.c
-rw-rw-r-- 1 root other 257 Mar 30 2001 xmalloc.c
-rw-rw-r-- 1 root other 276 Mar 30 2001 xstrdup.c
root at isu001[/usr/src/tftp-hpa-0.40/lib] > make
rm -f libxtra.a
ar cq libxtra.a
ranlib libxtra.a
root at isu001[/usr/src/tftp-hpa-0.40/lib] >
Any cl...