Update of /cvsroot/wxlua/wxLua/build/autoconf
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv20101/build/autoconf
Modified Files:
configure.ac
Log Message:
fixed missing -l in front of STC lib and OpenGL one
Index: configure.ac
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/autoconf/configure.ac,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -d -r1.42 -r1.43
*** configure.ac 6 May 2007 10:02:13 -0000 1.42
--- configure.ac 8 May 2007 18:26:04 -0000 1.43
***************
*** 240,244 ****
dnl before WX_LIBS we want the lib of STC
WX_LIKE_LIBNAME([_WX_STC_LIBNAME], [wx], [stc])
! LIBS="$LIBS $_WX_STC_LIBNAME $WX_LIBS"
dnl check for this component presence
--- 240,244 ----
dnl before WX_LIBS we want the lib of STC
WX_LIKE_LIBNAME([_WX_STC_LIBNAME], [wx], [stc])
! LIBS="$LIBS -l$_WX_STC_LIBNAME $WX_LIBS"
dnl check for this component presence
***************
*** 271,275 ****
# add to the library to link to the wxSTC lib
WX_LIKE_LIBNAME([_WX_STC_LIBNAME], [wx], [stc])
! WX_LIBS="$_WX_STC_LIBNAME $WX_LIBS"
else
WXBUILD_STR="$($WX_CONFIG_WITH_ARGS --selected_config)"
--- 271,275 ----
# add to the library to link to the wxSTC lib
WX_LIKE_LIBNAME([_WX_STC_LIBNAME], [wx], [stc])
! WX_LIBS="-l$_WX_STC_LIBNAME $WX_LIBS"
else
WXBUILD_STR="$($WX_CONFIG_WITH_ARGS --selected_config)"
***************
*** 360,364 ****
dnl before WX_LIBS we want the lib of GL
WX_LIKE_LIBNAME([_WX_GL_LIBNAME], [wx], [gl])
! LIBS="$LIBS $_WX_GL_LIBNAME $WX_LIBS"
dnl check for this component presence
--- 360,364 ----
dnl before WX_LIBS we want the lib of GL
WX_LIKE_LIBNAME([_WX_GL_LIBNAME], [wx], [gl])
! LIBS="$LIBS -l$_WX_GL_LIBNAME $WX_LIBS"
dnl check for this component presence
***************
*** 388,392 ****
# won't have linking errors
WX_LIKE_LIBNAME([_WX_GL_LIBNAME], [wx], [gl])
! WX_LIBS="$_WX_GL_LIBNAME $WX_LIBS"
fi
--- 388,392 ----
# won't have linking errors
WX_LIKE_LIBNAME([_WX_GL_LIBNAME], [wx], [gl])
! WX_LIBS="-l$_WX_GL_LIBNAME $WX_LIBS"
fi
|