]> git.saurik.com Git - cycript.git/commitdiff
Isolate linkage of libreadline and libtermcap.
authorJay Freeman (saurik) <saurik@saurik.com>
Sat, 15 Jun 2013 10:44:26 +0000 (03:44 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sat, 15 Jun 2013 18:08:20 +0000 (11:08 -0700)
Makefile.am
configure
configure.ac

index 8430a18a9102bafbc184b1e02ac3aceb54774548..0d73879d366efd3d4c8f4f154ac84b9a73980166 100644 (file)
@@ -20,7 +20,7 @@ libcycript_la_SOURCES += lex.cy.cpp
 
 bin_PROGRAMS = cycript
 cycript_SOURCES = Console.cpp Display.cpp
-cycript_LDFLAGS = $(LTLIBAPR) -ldl
+cycript_LDFLAGS = $(LTLIBAPR) $(LTLIBREADLINE) $(LTLIBTERMCAP) -ldl
 cycript_LDADD = libcycript.la
 
 ldid = true
index cf19be93e1bdd5e5e14586cf98964287ea50e214..255871245009af98a0eca3eaa2078b0641740d11 100755 (executable)
--- a/configure
+++ b/configure
@@ -652,6 +652,8 @@ SO
 LTFLAGS
 LTLIBICONV
 LIBICONV
+LTLIBTERMCAP
+LTLIBREADLINE
 CY_OBJECTIVEC_FALSE
 CY_OBJECTIVEC_TRUE
 GNUSTEP_CONFIG
 
 
 
+
+
+    cy_save=$LIBS
+    LIBS=
+
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a readline compatible library" >&5
 $as_echo_n "checking for a readline compatible library... " >&6; }
 if ${ax_cv_lib_readline+:} false; then :
@@ -20085,14 +20092,20 @@ done
     fi
   fi
 
-case $vl_cv_lib_readline in #(
+    LTLIBREADLINE=$LIBS
+    LIBS=$cy_save
+
+case $ax_cv_lib_readline in #(
   no) :
     as_fn_error $? "missing \"libreadline\"" "$LINENO" 5 ;; #(
   *) :
      ;;
 esac
 
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing cur_term" >&5
+
+    cy_save=$LIBS
+    LIBS=
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing cur_term" >&5
 $as_echo_n "checking for library containing cur_term... " >&6; }
 if ${ac_cv_search_cur_term+:} false; then :
   $as_echo_n "(cached) " >&6
@@ -20148,6 +20161,9 @@ if test "$ac_res" != no; then :
 
 fi
 
+    LTLIBTERMCAP=$LIBS
+    LIBS=$cy_save
+
 
 ac_ext=c
 ac_cpp='$CPP $CPPFLAGS'
index bf703f25f92683b9c85d0bb676b561fdba6cedad..2a89196ff3fc3c9e1c75387864b0f955f96d0587 100644 (file)
@@ -236,12 +236,20 @@ AS_CASE([$CY_EXECUTE], [1], [
 
 AM_CONDITIONAL([CY_OBJECTIVEC], [test "x$CY_OBJECTIVEC" = x1])
 
-AX_LIB_READLINE
-AS_CASE([$vl_cv_lib_readline], [no], [AC_MSG_ERROR([missing "libreadline"])])
+AC_DEFUN([CY_LT_LIB], [
+    cy_save=$LIBS
+    LIBS=
+    ]$2[
+    ]$1[=$LIBS
+    LIBS=$cy_save
+    AC_SUBST(]$1[)
+])
+
+CY_LT_LIB([LTLIBREADLINE], [AX_LIB_READLINE])
+AS_CASE([$ax_cv_lib_readline], [no], [AC_MSG_ERROR([missing "libreadline"])])
 
 dnl XXX: AX_LIB_READLINE totally lied: it was suposed to figure this out :(
-dnl XXX: this should only be linked into the main binary (not the library)
-AC_SEARCH_LIBS([cur_term], [termcap])
+CY_LT_LIB([LTLIBTERMCAP], [AC_SEARCH_LIBS([cur_term], [termcap])])
 
 dnl XXX: saurik doesn't understand what this does
 dnl AM_ICONV {{{