Displaying 9 results from an estimated 9 matches for "libxtra".
Did you mean:
libxtrap
2003 Jun 09
1
[patch] ./configure problem on Solaris with Sun's CC
Hi,
I have a problem with tftpd-hpa on Solaris-8, in that the configure
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...
2003 Jun 09
0
[patch] ./configure problem on Solaris
Hi,
I have a problem with tftpd-hpa on Solaris-8, in that the configure
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...
2004 Jul 20
0
broken configure in tftp-hpa 0.37
...unexpected token `;;'
./configure: line 11843: ` ;;'
Needed this patch to get things rolling with autoconf 2.59:
--- tftp-hpa-0.36/configure.in 2004-01-15 22:15:46.000000000 +0200
+++ tftp-hpa-0.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(x...
2004 Jan 14
2
Remap not enabled on some builds...
...Good luck!
Erik Dykema
Sent by lev at columbia.edu on November 26, 2003:
I discovered a small problem with the autoconf script for
tftp-hpa-0.34 that prevents one from compiling the binaries with the
remap option enabled on certain systems.
Currently, the script generated by autoconf adds ../lib/libxtra.a to
the library path (LIBS) passed to the linker if it determines that
libiberty is not installed (e.g., on most Linux systems). This path is
passed to the linker when it is invoked by configure and when it is
invoked by make during the actual software build. The problem is that
the path ../lib/li...
2005 May 30
0
compiling tftp-hpa-040 under Solaris 8
...rep... egrep
checking for AIX... no
checking for ANSI C header files... yes
.
.
.
configure: creating ./config.status
config.status: creating MCONFIG
config.status: creating aconfig.h
root at isu001[/usr/src/tftp-hpa-0.40] >
Step 2: compiling the binaries / creating the library "libxtra.a" fails:
root at isu001[/usr/src/tftp-hpa-0.40] > make
echo \#define VERSION \"tftp-hpa `cat version`\" > version.h
make -C lib
make[1]: Entering directory `/usr/share/src/tftp-hpa-0.40/lib'
rm -f libxtra.a
ar cq libxtra.a
ranlib libxtra.a
make[1]: Leaving direc...
2005 Sep 26
0
Trouble compiling tftp hpa under Solaris 10
Hi..
I'm having trouble compiling tftp hpa... when I run make, I get:
make
echo \#define VERSION \"tftp-hpa `cat version`\" > version.h
make -C lib
make[1]: Entering directory `/data/downloads/tftp-hpa-0.40/lib'
rm -f libxtra.a
ar cq libxtra.a
ranlib libxtra.a
make[1]: Leaving directory `/data/downloads/tftp-hpa-0.40/lib'
make -C tftp
make[1]: Entering directory `/data/downloads/tftp-hpa-0.40/tftp'
gcc -g -O2 -D_XPG4_2 -D_XOPEN_SOURCE -D__EXTENSIONS__ -D_BSD_SOURCE
-D_ISO9X_SOURCE -D_OSF_SOURCE -D_XOPEN_SOURCE...
2010 Jan 03
1
tftp-hpa 5.0 fails to build on mips
...ing-prototypes -Wmissing-declarations
-Wnested-externs -Winline -Wwrite-strings -Wundef -Wshadow
-Wsign-compare -pipe -fno-strict-aliasing -I/build/buildd/tftp-hpa-5.0
-c remap.c
gcc -Wl,-z,defs tftpd.o recvfrom.o misc.o remap.o ../common/libcommon.a
-lwrap -lnsl /build/buildd/tftp-hpa-5.0/lib/libxtra.a -o tftpd
/usr/bin/ld.real: non-dynamic relocations refer to dynamic symbol
__progname@@GLIBC_2.0
/usr/bin/ld.real: failed to set dynamic section sizes: Bad value
collect2: ld returned 1 exit status
[...]
---snap---
The full buildlogs are available at:
https://buildd.debian.org/fetch.cgi?pkg=tf...
2020 Jun 16
0
Fix build error with GCC 10 due to multiple definition of `toplevel'
...tore Bonaccorso <carnil at debian.org>
Date: Tue, 16 Jun 2020 14:06:14 +0200
Subject: [PATCH] Fix build error with GCC 10 due to multiple definition of
`toplevel'
GCC is stricter in handling of symbol clashes and throws:
gcc-10 tftp.o main.o ../common/libcommon.a /build/tftp-hpa/lib/libxtra.a -o tftp
/usr/bin/ld: main.o:/build/tftp-hpa/tftp/main.c:98: multiple definition of `toplevel'; tftp.o:/build/tftp-hpa/tftp/tftp.c:51: first defined here
CC: Dominik 'Rathann' Mierzejewski <dominik at greysector.net>
Link: https://bugs.debian.org/957875
Link: https://bugzilla....
2020 Sep 29
0
[PATCH RESEND] tftp-hpa: Fix build error with GCC 10 due to multiple definition of `toplevel'
...tore Bonaccorso <carnil at debian.org>
Date: Tue, 16 Jun 2020 14:06:14 +0200
Subject: [PATCH] Fix build error with GCC 10 due to multiple definition of
`toplevel'
GCC is stricter in handling of symbol clashes and throws:
gcc-10 tftp.o main.o ../common/libcommon.a /build/tftp-hpa/lib/libxtra.a -o tftp
/usr/bin/ld: main.o:/build/tftp-hpa/tftp/main.c:98: multiple definition of `toplevel'; tftp.o:/build/tftp-hpa/tftp/tftp.c:51: first defined here
CC: Dominik 'Rathann' Mierzejewski <dominik at greysector.net>
Link: https://bugs.debian.org/957875
Link: https://bugzilla....