search for: tftpd_libs

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

Did you mean: tftp_libs
2004 Jan 14
2
Remap not enabled on some builds...
...ge directory and 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" --- > TF...
2003 Jun 09
0
[patch] ./configure problem on Solaris
...24,7 +124,7 @@ 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" + 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_...
2003 Jun 09
1
[patch] ./configure problem on Solaris with Sun's CC
...24,7 +124,7 @@ 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" + 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_...