|
From: Bob T. <bt...@us...> - 2003-10-08 04:16:44
|
Update of /cvsroot/benson/benson3
In directory sc8-pr-cvs1:/tmp/cvs-serv12629
Modified Files:
configure configure.ac
Log Message:
This is actually working on win32/cygwin, go figure.
Index: configure
===================================================================
RCS file: /cvsroot/benson/benson3/configure,v
retrieving revision 1.61
retrieving revision 1.62
diff -C2 -r1.61 -r1.62
*** configure 8 Oct 2003 03:53:53 -0000 1.61
--- configure 8 Oct 2003 04:16:37 -0000 1.62
***************
*** 3241,3248 ****
CONF_LIBNSL=yes
!
! case $target in
! *cygwin)
! LIBS=-lcygipc
;;
*linux*)
--- 3241,3248 ----
CONF_LIBNSL=yes
! echo $host_os
! case $host_os in
! *cyg*)
! CONF_LIBS=-lcygipc
;;
*linux*)
***************
*** 5830,5834 ****
--- 5830,5836 ----
fi
+
LIBS=`echo $LIBS | $trpath ' ' '\n' | $sortpath | $uniqpath | $trpath '\n' ' '`
+ LIBS="$LIBS $CONF_LIBS"
CFLAGS=`echo $CFLAGS | $sedpath 's/\-g //g'`
CFLAGS=`echo "$CFLAGS" | $trpath ' ' '\n' | $sortpath | $uniqpath | $trpath '\n' ' '`
Index: configure.ac
===================================================================
RCS file: /cvsroot/benson/benson3/configure.ac,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** configure.ac 8 Oct 2003 03:53:53 -0000 1.9
--- configure.ac 8 Oct 2003 04:16:37 -0000 1.10
***************
*** 26,33 ****
CONF_LIBNSL=yes
!
! case $target in
! *cygwin)
! LIBS=-lcygipc
;;
*linux*)
--- 26,33 ----
CONF_LIBNSL=yes
! echo $host_os
! case $host_os in
! *cyg*)
! CONF_LIBS=-lcygipc
;;
*linux*)
***************
*** 169,173 ****
--- 169,175 ----
fi
+
LIBS=`echo $LIBS | $trpath ' ' '\n' | $sortpath | $uniqpath | $trpath '\n' ' '`
+ LIBS="$LIBS $CONF_LIBS"
CFLAGS=`echo $CFLAGS | $sedpath 's/\-g //g'`
CFLAGS=`echo "$CFLAGS" | $trpath ' ' '\n' | $sortpath | $uniqpath | $trpath '\n' ' '`
|