Skip to content

Commit

Permalink
Make physfs itself not link against readline and ncurses (just
Browse files Browse the repository at this point in the history
test_physfs).
  • Loading branch information
icculus committed Dec 7, 2003
1 parent caf828b commit cd08ed5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configure.in
Expand Up @@ -219,7 +219,7 @@ if test x$enable_readline = xyes; then
if test x$have_readline_hdr = xyes -a x$have_readline_lib = xyes; then
if test x$have_history_hdr = xyes -a x$have_history_lib = xyes; then
AC_DEFINE([PHYSFS_HAVE_READLINE], 1, [define if we have readline])
LIBS="$LIBS -lreadline -lcurses"
have_readline="yes"
fi
fi
fi
Expand Down Expand Up @@ -489,6 +489,7 @@ AM_CONDITIONAL(BUILD_TEST_PHYSFS, test x$enable_testprog = xyes)
AM_CONDITIONAL(BUILD_MACOSX, test x$this_is_macosx = xyes)
AM_CONDITIONAL(BUILD_BEOS, test x$this_is_beos = xyes)
AM_CONDITIONAL(BUILD_CYGWIN, test x$this_is_cygwin = xyes)
AM_CONDITIONAL(BUILD_READLINE, test x$have_readline = xyes)

AC_OUTPUT([
Makefile
Expand Down
4 changes: 4 additions & 0 deletions test/Makefile.am
Expand Up @@ -4,6 +4,10 @@ bin_PROGRAMS = test_physfs

INCLUDES = -I$(top_srcdir)

if BUILD_READLINE
test_physfs_LDFLAGS="-lreadline -lcurses"
endif

test_physfs_LDADD = ../libphysfs.la
test_physfs_SOURCES = test_physfs.c

Expand Down

0 comments on commit cd08ed5

Please sign in to comment.