Reorginize the configure script to math the one from FLightGear more closely. Add checks for the presence of GLIB and GTS.
This commit is contained in:
parent
812ab94975
commit
52ef60a056
5 changed files with 95 additions and 53 deletions
120
configure.ac
120
configure.ac
|
@ -53,8 +53,40 @@ AC_SUBST(ARFLAGS)
|
||||||
|
|
||||||
dnl Add gts/glib includes, this will probably need to be made more
|
dnl Add gts/glib includes, this will probably need to be made more
|
||||||
dnl flexible in the future.
|
dnl flexible in the future.
|
||||||
CFLAGS="$CFLAGS `gts-config --cflags`"
|
AC_CHECK_PROG(GLIB, glib-config, yes, no)
|
||||||
CXXFLAGS="$CXXFLAGS `gts-config --cflags`"
|
AC_CHECK_PROG(GTS, gts-config, yes, no)
|
||||||
|
|
||||||
|
if test "$GLIB" = "no"; then
|
||||||
|
echo
|
||||||
|
echo "Unable to find glib-config."
|
||||||
|
echo
|
||||||
|
echo "This program is needed to determine the compiler flags needed for"
|
||||||
|
echo "the glib library. Please make sure this linrary is installed and"
|
||||||
|
echo "the program is in the search path."
|
||||||
|
echo
|
||||||
|
echo "Please read README.gts" for more details.
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$GTS" = "no"; then
|
||||||
|
echo
|
||||||
|
echo "Unable to find gts-config."
|
||||||
|
echo
|
||||||
|
echo "This program is needed to determine the compiler flags needed for"
|
||||||
|
echo "the gts library. Please make sure this linrary is installed and"
|
||||||
|
echo "the program is in the search path."
|
||||||
|
echo
|
||||||
|
echo "Please read README.gts" for more details.
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
SUPPORT_FLAGS="`gts-config --cflags` `glib-config --cflags`"
|
||||||
|
CPPFLAGS="$CPPFLAGS $SUPPORT_FLAGS"
|
||||||
|
CFLAGS="$CFLAGS $SUPPORT_FLAGS"
|
||||||
|
CXXFLAGS="$CXXFLAGS $SUPPORT_FLAGS"
|
||||||
|
|
||||||
dnl Specify if we want logging (testing build) or not (release build)
|
dnl Specify if we want logging (testing build) or not (release build)
|
||||||
# set logging default value
|
# set logging default value
|
||||||
|
@ -98,36 +130,39 @@ AC_PATH_XTRA
|
||||||
dnl Checks for libraries.
|
dnl Checks for libraries.
|
||||||
|
|
||||||
null_LIBS="$LIBS"
|
null_LIBS="$LIBS"
|
||||||
|
LIBS=""
|
||||||
|
|
||||||
AC_CHECK_LIB(m, cos)
|
dnl search for network related libraries
|
||||||
|
AC_SEARCH_LIBS(inet_addr, xnet)
|
||||||
|
AC_SEARCH_LIBS(socket, socket)
|
||||||
|
AC_SEARCH_LIBS(main, nsl)
|
||||||
|
|
||||||
base_LIBS="$LIBS `gts-config --libs`"
|
network_LIBS="$LIBS"
|
||||||
|
LIBS=""
|
||||||
|
|
||||||
AC_CHECK_LIB(socket, socket)
|
dnl check for some default libraries
|
||||||
AC_CHECK_LIB(X11, XCreateWindow)
|
AC_SEARCH_LIBS(cos, m)
|
||||||
AC_CHECK_LIB(Xext, XShmCreateImage)
|
|
||||||
AC_CHECK_LIB(Xi, XGetExtensionVersion)
|
base_LIBS="$LIBS"
|
||||||
AC_CHECK_LIB(ICE, IceOpenConnection)
|
support_LIBS="`gts-config --libs` `glib-config --libs`"
|
||||||
AC_CHECK_LIB(SM, SmcOpenConnection)
|
|
||||||
AC_CHECK_LIB(Xt, XtMalloc)
|
AC_SEARCH_LIBS(XCreateWindow, X11)
|
||||||
AC_CHECK_LIB(Xmu, XmuLookupStandardColormap)
|
AC_SEARCH_LIBS(XShmCreateImage, Xext)
|
||||||
|
AC_SEARCH_LIBS(XGetExtensionVersion, Xi)
|
||||||
|
AC_SEARCH_LIBS(IceOpenConnection, ICE)
|
||||||
|
AC_SEARCH_LIBS(SmcOpenConnection, SM)
|
||||||
|
AC_SEARCH_LIBS(XtMalloc, Xt)
|
||||||
|
AC_SEARCH_LIBS(XmuLookupStandardColormap, Xmu)
|
||||||
|
|
||||||
dnl check for OpenGL related libraries
|
dnl check for OpenGL related libraries
|
||||||
|
|
||||||
if test "x$ac_cv_header_windows_h" != "xyes" ; then
|
if test "x$ac_cv_header_windows_h" != "xyes" ; then
|
||||||
dnl Reasonable stuff for non-windoze variants ... :-)
|
dnl Reasonable stuff for non-windoze variants ... :-)
|
||||||
|
|
||||||
AC_CHECK_LIB(GLcore, glNewList)
|
AC_SEARCH_LIBS(glNewList, [ GL GLcore MesaGL ])
|
||||||
if test "x$ac_cv_lib_GLcore_glNewList" = "xno" ; then
|
if test "x$ac_cv_search_glNewList" = "x-lGLcore"; then
|
||||||
dnl if no GLcore, check for GL
|
dnl if GLcore found, then also check for GL
|
||||||
AC_CHECK_LIB(GL, glNewList)
|
AC_SEARCH_LIBS(glXCreateContext, GL)
|
||||||
if test "x$ac_cv_lib_GL_glNewList" = "xno" ; then
|
|
||||||
dnl if no GL, check for MesaGL
|
|
||||||
AC_CHECK_LIB(MesaGL, glNewList)
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
dnl if GLcore found, then also check for GL
|
|
||||||
AC_CHECK_LIB(GL, glXCreateContext)
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl if using mesa, check for xmesa.h
|
dnl if using mesa, check for xmesa.h
|
||||||
|
@ -139,20 +174,9 @@ if test "x$ac_cv_header_windows_h" != "xyes" ; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CHECK_LIB(GLU, gluLookAt)
|
AC_SEARCH_LIBS(gluLookAt, [ GLU MesaGLU ])
|
||||||
if test "x$ac_cv_lib_GLU_gluLookAt" = "xno" ; then
|
AC_SEARCH_LIBS(glutGetModifiers, [ glut freeglut ])
|
||||||
dnl if no GLU, check for MesaGLU
|
|
||||||
AC_CHECK_LIB(MesaGLU, gluLookAt)
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl check for glut
|
|
||||||
AC_CHECK_LIB(glut, glutGetModifiers)
|
|
||||||
|
|
||||||
dnl test for glutGameModeString, but avoid adding glut a second time into
|
|
||||||
dnl the list of libraries
|
|
||||||
save_LIBS="$LIBS"
|
|
||||||
AC_CHECK_LIB(glut, glutGameModeString)
|
|
||||||
LIBS="$save_LIBS"
|
|
||||||
else
|
else
|
||||||
dnl Win32 is a little wierd because it has to try to handle the various
|
dnl Win32 is a little wierd because it has to try to handle the various
|
||||||
dnl winbloze-isms. We'll just do this manually for now.
|
dnl winbloze-isms. We'll just do this manually for now.
|
||||||
|
@ -198,14 +222,16 @@ if test "x$ac_cv_lib_glut_glutGameModeString" = "xno"; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# needed for plib 1.6.x or later
|
||||||
|
AC_CHECK_LIB(plibul, ulInit,,,)
|
||||||
|
|
||||||
opengl_LIBS="$LIBS"
|
opengl_LIBS="$LIBS"
|
||||||
LIBS="$base_LIBS"
|
LIBS="$base_LIBS"
|
||||||
|
|
||||||
AC_SUBST(base_LIBS)
|
AC_SUBST(base_LIBS)
|
||||||
AC_SUBST(opengl_LIBS)
|
AC_SUBST(opengl_LIBS)
|
||||||
|
AC_SUBST(network_LIBS)
|
||||||
# needed for plib 1.6.x or later
|
AC_SUBST(support_LIBS)
|
||||||
AC_CHECK_LIB(plibul, ulInit,,,)
|
|
||||||
|
|
||||||
AM_CONDITIONAL(HAVE_XWINDOWS, test "x$ac_cv_lib_X11_XCreateWindow" = "xyes" )
|
AM_CONDITIONAL(HAVE_XWINDOWS, test "x$ac_cv_lib_X11_XCreateWindow" = "xyes" )
|
||||||
|
|
||||||
|
@ -228,6 +254,18 @@ AC_CHECK_HEADER(nurbs++/nurbsS.h)
|
||||||
AM_CONDITIONAL(HAVE_NURBS, test "x$ac_cv_header_nurbspp_nurbsS_h" = "xyes" )
|
AM_CONDITIONAL(HAVE_NURBS, test "x$ac_cv_header_nurbspp_nurbsS_h" = "xyes" )
|
||||||
AC_LANG_POP
|
AC_LANG_POP
|
||||||
|
|
||||||
|
AC_CHECK_HEADER(gts.h)
|
||||||
|
if test "x$ac_cv_header_gts_h" != "xyes"; then
|
||||||
|
echo
|
||||||
|
echo "You *must* have the gts library installed on your system to build"
|
||||||
|
echo "TerraGear!"
|
||||||
|
echo
|
||||||
|
echo "Please see README.gts for more details."
|
||||||
|
echo
|
||||||
|
echo "configure aborted."
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
dnl Check if Generic Polygon Clipping library is installed
|
dnl Check if Generic Polygon Clipping library is installed
|
||||||
dnl (from http://www.cs.man.ac.uk/aig/staff/alan/software/)
|
dnl (from http://www.cs.man.ac.uk/aig/staff/alan/software/)
|
||||||
AC_CHECK_HEADERS( gpc.h )
|
AC_CHECK_HEADERS( gpc.h )
|
||||||
|
@ -406,8 +444,8 @@ fi
|
||||||
|
|
||||||
if test "x$ac_cv_header_nurbspp_nurbsS_h" != "xyes"; then
|
if test "x$ac_cv_header_nurbspp_nurbsS_h" != "xyes"; then
|
||||||
echo
|
echo
|
||||||
echo "You *must* have the nurbs++ library installed on your system to build"
|
echo "You must have the nurbs++ library installed on your system to build"
|
||||||
echo "TerraGears GenAirport utility!"
|
echo "the GenAirport utility. This program will not be build now."
|
||||||
echo
|
echo
|
||||||
echo "Please see README.nurbs++ for more details."
|
echo "Please see README.nurbs++ for more details."
|
||||||
echo
|
echo
|
||||||
|
|
|
@ -4,11 +4,11 @@ bin_PROGRAMS = fgfs-tools-server fgfs-tools-client
|
||||||
|
|
||||||
fgfs_tools_server_SOURCES = server.cxx
|
fgfs_tools_server_SOURCES = server.cxx
|
||||||
|
|
||||||
fgfs_tools_server_LDADD = -lsgbucket -lsgmisc -lsgdebug -lsgxml
|
fgfs_tools_server_LDADD = -lsgbucket -lsgmisc -lsgdebug -lsgxml $(network_LIBS)
|
||||||
|
|
||||||
fgfs_tools_client_SOURCES = client.cxx
|
fgfs_tools_client_SOURCES = client.cxx
|
||||||
|
|
||||||
fgfs_tools_client_LDADD = -lsgbucket -lsgmisc -lsgdebug -lsgxml
|
fgfs_tools_client_LDADD = -lsgbucket -lsgmisc -lsgdebug -lsgxml $(network_LIBS)
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
|
|
|
@ -8,12 +8,14 @@ testarray_SOURCES = testarray.cxx
|
||||||
|
|
||||||
testarray_LDADD = \
|
testarray_LDADD = \
|
||||||
$(top_builddir)/src/Lib/Array/libArray.a \
|
$(top_builddir)/src/Lib/Array/libArray.a \
|
||||||
-lsgbucket -lsgmath -lsgmisc -lsgdebug -lsgxml -lz -lgts
|
-lsgbucket -lsgmath -lsgmisc -lsgdebug -lsgxml \
|
||||||
|
$(support_LIBS) -lz
|
||||||
|
|
||||||
testgts_SOURCES = testgts.cxx
|
testgts_SOURCES = testgts.cxx
|
||||||
|
|
||||||
testgts_LDADD = \
|
testgts_LDADD = \
|
||||||
$(top_builddir)/src/Lib/Array/libArray.a \
|
$(top_builddir)/src/Lib/Array/libArray.a \
|
||||||
-lsgbucket -lsgmath -lsgmisc -lsgdebug -lsgxml -lz -lgts
|
-lsgbucket -lsgmath -lsgmisc -lsgdebug -lsgxml \
|
||||||
|
$(support_LIBS) -lz
|
||||||
|
|
||||||
INCLUDES = -I$(top_srcdir)/src
|
INCLUDES = -I$(top_srcdir)/src
|
||||||
|
|
|
@ -4,10 +4,11 @@ arrayfit_SOURCES = arrayfit.cxx
|
||||||
|
|
||||||
arrayfit_LDADD = \
|
arrayfit_LDADD = \
|
||||||
$(top_builddir)/src/Lib/Array/libArray.a \
|
$(top_builddir)/src/Lib/Array/libArray.a \
|
||||||
-lsgbucket -lsgmath -lsgmisc -lsgdebug -lsgxml -lz -lgts
|
-lsgbucket -lsgmath -lsgmisc -lsgdebug -lsgxml \
|
||||||
|
$(support_LIBS) -lz
|
||||||
|
|
||||||
demo_SOURCES = demo.cxx
|
demo_SOURCES = demo.cxx
|
||||||
|
|
||||||
demo_LDADD = -lz -lgts
|
demo_LDADD = $(support_LIBS) -lz
|
||||||
|
|
||||||
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/Lib
|
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/Lib
|
||||||
|
|
|
@ -61,13 +61,14 @@ double round( double a ) {
|
||||||
|
|
||||||
int reads(int fd, char *buf, unsigned int len) {
|
int reads(int fd, char *buf, unsigned int len) {
|
||||||
unsigned int i = 0;
|
unsigned int i = 0;
|
||||||
int res;
|
|
||||||
char c;
|
char c;
|
||||||
|
|
||||||
len--;
|
len--;
|
||||||
while ( (i < len) && ((res = read(fd, &c, 1)) != 0)
|
while ( (i < len) && (read(fd, &c, 1) != 0) )
|
||||||
&& ((c != '\n') && (c != '\r')) )
|
|
||||||
{
|
{
|
||||||
|
if ((c == '\n') || (c == '\r') )
|
||||||
|
break;
|
||||||
|
|
||||||
buf[i++] = c;
|
buf[i++] = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,7 +77,7 @@ int reads(int fd, char *buf, unsigned int len) {
|
||||||
|
|
||||||
buf[i] = '\0';
|
buf[i] = '\0';
|
||||||
|
|
||||||
return res;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -97,9 +98,9 @@ void rawReadDemHdr( fgRAWDEM *raw, char *hdr_file ) {
|
||||||
raw->big_endian = 1;
|
raw->big_endian = 1;
|
||||||
|
|
||||||
/* process each line */
|
/* process each line */
|
||||||
while ( (reads(fileno(hdr), line, 256) != NULL) ) {
|
while ( (reads(fileno(hdr), line, 256) != 0) ) {
|
||||||
|
|
||||||
/* printf("%s", line); */
|
printf("%s", line);
|
||||||
len = strlen(line);
|
len = strlen(line);
|
||||||
|
|
||||||
/* extract key */
|
/* extract key */
|
||||||
|
|
Loading…
Add table
Reference in a new issue