dnl Checks for libraries.
-AC_SEARCH_LIBS(cos, m)
-
dnl Thread related checks
AC_CHECK_LIB(pthread, pthread_exit)
if test "x$ac_cv_lib_pthread_pthread_exit" != "xyes" \
save_CXXFLAGS="$CXXFLAGS"
save_CFLAGS="$CFLAGS"
CXXFLAGS="-pthread $CXXFLAGS"
- CFLAGS="-pthread $FLAGS"
+ CFLAGS="-pthread $CFLAGS"
save_LIBS=$LIBS
AC_CHECK_LIB(c_r, pthread_exit)
if test "x$ac_cv_lib_c_r_pthread_exit" != "xyes"; then
LIBS=$save_LIBS
fi
+thread_LIBS="$LIBS"
+LIBS=""
+
+dnl search for network related libraries
AC_SEARCH_LIBS(inet_addr, xnet)
AC_SEARCH_LIBS(socket, socket)
AC_SEARCH_LIBS(main, nsl)
+
+network_LIBS="$LIBS"
+LIBS=""
+
+dnl check for some default libraries
+AC_SEARCH_LIBS(cos, m)
AC_SEARCH_LIBS(dlclose, dl)
base_LIBS="$LIBS"
-opengl_LIBS=""
+LIBS=""
dnl check for glut location
AC_CHECK_HEADER(GL/glut.h)
AC_SUBST(base_LIBS)
AC_SUBST(opengl_LIBS)
+AC_SUBST(thread_LIBS)
+AC_SUBST(network_LIBS)
# The following are C++ items that need to be tested for with the c++
# compiler
endif
if ENABLE_MPLAYER_AS
-MPLAYER_LIBS = $(top_builddir)/src/MultiPlayer/libMultiPlayer.a
+MPLAYER_LIBS = $(top_builddir)/src/MultiPlayer/libMultiPlayer.a $(network_LIBS)
else
MPLAYER_LIBS =
endif
if ENABLE_NETWORK_OLK
-NETWORK_LIBS = $(top_builddir)/src/NetworkOLK/libNetworkOLK.a
+NETWORK_LIBS = $(top_builddir)/src/NetworkOLK/libNetworkOLK.a $(network_LIBS)
else
NETWORK_LIBS =
endif
if WITH_THREADS
-THREAD_LIBS = -lsgthreads
+THREAD_LIBS = -lsgthreads $(thread_LIBS)
else
THREAD_LIBS =
endif
noinst_PROGRAMS = test-gethostname test-mktime test-text test-up test-env-map
est_epsilon_SOURCES = est-epsilon.c
-est_epsilon_LDADD = $(base_LIBS)
gl_info_SOURCES = gl-info.c
gl_info_LDADD = $(opengl_LIBS)
test_env_map_LDADD = $(opengl_LIBS)
test_gethostname_SOURCES = test-gethostname.cxx
-test_gethostname_LDADD = $(base_LIBS)
test_mktime_SOURCES = test-mktime.cxx
-test_mktime_LDADD = $(base_LIBS)
test_text_SOURCES = test-text.cxx
-test_text_LDADD = $(base_LIBS)
test_up_SOURCES = test-up.cxx
-test_up_LDADD = -lsgmath -lsgdebug -lplibsg -lplibul $(base_LIBS)
+test_up_LDADD = -lsgmath -lsgdebug -lplibsg -lplibul