Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alberta3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ians-nmh-siebert
alberta
alberta3
Commits
53409c23
Commit
53409c23
authored
23 years ago
by
Daniel Koester
Browse files
Options
Downloads
Patches
Plain Diff
Added some SUN support (-lnsl for xdr-routines)
parent
2a723980
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config.h.in
+6
-0
6 additions, 0 deletions
config.h.in
configure.ac
+9
-6
9 additions, 6 deletions
configure.ac
with
15 additions
and
6 deletions
config.h.in
+
6
−
0
View file @
53409c23
...
...
@@ -36,6 +36,9 @@
/* Define to 1 if you have the `MesaGL' library (-lMesaGL). */
#undef HAVE_LIBMESAGL
/* Define to 1 if you have the `nsl' library (-lnsl). */
#undef HAVE_LIBNSL
/* Define to 1 if you have the `X11' library (-lX11). */
#undef HAVE_LIBX11
...
...
@@ -54,6 +57,9 @@
/* Define to 1 if you have the `pow' function. */
#undef HAVE_POW
/* Define to 1 if you have the <rpc/xdr.h> header file. */
#undef HAVE_RPC_XDR_H
/* Define to 1 if you have the `sqrt' function. */
#undef HAVE_SQRT
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
9
−
6
View file @
53409c23
...
...
@@ -50,7 +50,7 @@ AC_FUNC_VPRINTF
AC_HEADER_STDC
AC_CHECK_HEADERS([malloc.h unistd.h X11/Xlib.h X11/Xutil.h],,
[AC_MSG_ERROR([Exiting...])])
AC_CHECK_HEADERS([GL/gl.h GL/glx.h])
AC_CHECK_HEADERS([GL/gl.h GL/glx.h
rpc/xdr.h
])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
...
...
@@ -64,6 +64,8 @@ AC_PATH_XTRA
# Prevent -g from being set here automatically...
# ******************************************************************************
CFLAGS=
FFLAGS=
AM_CFLAGS=
AM_FFLAGS=
...
...
@@ -81,11 +83,12 @@ plot_for_ibm=false
plot_for_tit=false
case "$build_vendor" in
*sgi*) AC_MSG_RESULT([Building for SGI system, using -n32 linker flag...])
object_type=-n32;;
*ibm*) AC_MSG_RESULT([Building for IBM system, affects PLOT_Ansi...])
plot_for_ibm=true
plot_for_sun=false;;
*sgi*) AC_MSG_RESULT([Building for SGI system, affects PLOT_Ansi...]);;
*ibm*) AC_MSG_RESULT([Building for IBM system, affects PLOT_Ansi...])
plot_for_ibm=true
plot_for_sun=false;;
*sun*) AC_MSG_RESULT([Building fo a SUN system, affects PLOT_Ansi and xdr-routines...])
AC_CHECK_LIB(nsl, main);;
esac
case "$build" in
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment