search for: tftp_lib

Displaying 3 results from an estimated 3 matches for "tftp_lib".

Did you mean: tftp_libs
2004 Jan 14
2
Remap not enabled on some builds...
...d therefore causes some of the tests run by configure to fail. One of these is the regcomp test; if it fails, it prevents WITH_REGEX from being defined and thereby prevents the remap features from being built into the binaries. One can avoid this problem by adding ../lib/libxtra.a to TFTPD_LIBS and TFTP_LIBS without adding it to LIBS in the autoconf script. Here is the diff between the original and modified configure.in files: 127c127 < LIBS="../lib/libxtra.a $LIBS" --- > PROG_LIBS="../lib/libxtra.a $LIBS" 162c162 < TFTPD_LIBS="$LIBS" --- > TFTPD_LIBS=&quo...
2003 Jun 09
0
[patch] ./configure problem on Solaris
...sdsignal)) if $LIBXTRA; then - LIBS="../lib/libxtra.a $LIBS" + XTRA_LIBS="../lib/libxtra.a" fi dnl @@ -159,7 +159,7 @@ ]) ],:) -TFTPD_LIBS="$LIBS" +TFTPD_LIBS="$LIBS $XTRA_LIBS" LIBS="$common_libs" dnl @@ -187,8 +187,8 @@ ]) ],:) -TFTP_LIBS="$LIBS" -LIBS="$common_libs" +TFTP_LIBS="$LIBS $XTRA_LIBS" +LIBS="$common_libs $XTRA_LIBS" AC_SUBST(TFTP_LIBS) AC_SUBST(TFTPD_LIBS)
2003 Jun 09
1
[patch] ./configure problem on Solaris with Sun's CC
...sdsignal)) if $LIBXTRA; then - LIBS="../lib/libxtra.a $LIBS" + XTRA_LIBS="../lib/libxtra.a" fi dnl @@ -159,7 +159,7 @@ ]) ],:) -TFTPD_LIBS="$LIBS" +TFTPD_LIBS="$LIBS $XTRA_LIBS" LIBS="$common_libs" dnl @@ -187,8 +187,8 @@ ]) ],:) -TFTP_LIBS="$LIBS" -LIBS="$common_libs" +TFTP_LIBS="$LIBS $XTRA_LIBS" +LIBS="$common_libs $XTRA_LIBS" AC_SUBST(TFTP_LIBS) AC_SUBST(TFTPD_LIBS)