mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
stuff in LIBS moved to PROG_LIBS again. Otherwise linking perl module (and maybe some other stuff as well) tries to link all that with the module.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1938 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
6729317cac
commit
59e310c723
@ -658,6 +658,11 @@ AM_CONDITIONAL(HAVE_STATIC_PERL, test "$want_perl" = "static")
|
||||
AM_CONDITIONAL(NEED_TPARM, test "$need_tparm" = "yes")
|
||||
AM_CONDITIONAL(USE_CURSES, test "$want_terminfo" != "yes" -a "$want_termcap" != "yes")
|
||||
|
||||
# move LIBS to PROG_LIBS so they're not tried to be used when linking eg. perl libraries
|
||||
PROG_LIBS=$LIBS
|
||||
LIBS=
|
||||
AC_SUBST(PROG_LIBS)
|
||||
|
||||
dnl **
|
||||
dnl ** Keep all the libraries here so each frontend doesn't need to
|
||||
dnl ** keep track of them all
|
||||
|
@ -11,7 +11,8 @@ botti_DEPENDENCIES = @COMMON_NOUI_LIBS@
|
||||
botti_LDADD = \
|
||||
@COMMON_NOUI_LIBS@ \
|
||||
@PERL_LINK_LIBS@ \
|
||||
@PERL_LINK_FLAGS@
|
||||
@PERL_LINK_FLAGS@ \
|
||||
@PROG_LIBS
|
||||
|
||||
botti_SOURCES = \
|
||||
irssi.c
|
||||
|
@ -19,7 +19,8 @@ irssi_LDADD = \
|
||||
@COMMON_LIBS@ \
|
||||
@PERL_LINK_LIBS@ \
|
||||
@PERL_FE_LINK_LIBS@ \
|
||||
@PERL_LINK_FLAGS@
|
||||
@PERL_LINK_FLAGS@ \
|
||||
@PROG_LIBS@
|
||||
|
||||
tparm_sources = \
|
||||
tparm.c
|
||||
|
Loading…
Reference in New Issue
Block a user