aboutsummaryrefslogtreecommitdiff
path: root/cvs/cvsweb.cgi/code/nel/nel-config.in?rev=1.1&content-type=text/x-cvsweb-markup&sortby=log
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2018-08-11 20:21:34 +0200
committerneodarz <neodarz@neodarz.net>2018-08-11 20:21:34 +0200
commit0ea5fc66924303d1bf73ba283a383e2aadee02f2 (patch)
tree2568e71a7ccc44ec23b8bb3f0ff97fb6bf2ed709 /cvs/cvsweb.cgi/code/nel/nel-config.in?rev=1.1&content-type=text/x-cvsweb-markup&sortby=log
downloadnevrax-website-self-hostable-0ea5fc66924303d1bf73ba283a383e2aadee02f2.tar.xz
nevrax-website-self-hostable-0ea5fc66924303d1bf73ba283a383e2aadee02f2.zip
Initial commit
Diffstat (limited to 'cvs/cvsweb.cgi/code/nel/nel-config.in?rev=1.1&content-type=text/x-cvsweb-markup&sortby=log')
-rw-r--r--cvs/cvsweb.cgi/code/nel/nel-config.in?rev=1.1&content-type=text/x-cvsweb-markup&sortby=log/index.html184
1 files changed, 184 insertions, 0 deletions
diff --git a/cvs/cvsweb.cgi/code/nel/nel-config.in?rev=1.1&content-type=text/x-cvsweb-markup&sortby=log/index.html b/cvs/cvsweb.cgi/code/nel/nel-config.in?rev=1.1&content-type=text/x-cvsweb-markup&sortby=log/index.html
new file mode 100644
index 00000000..ff1c30b5
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nel/nel-config.in?rev=1.1&content-type=text/x-cvsweb-markup&sortby=log/index.html
@@ -0,0 +1,184 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML>
+<HEAD><style> A { color:black }</style>
+<!-- hennerik CVSweb $Revision: 1.93 $ -->
+<TITLE>code/nel/nel-config.in - view - 1.1</TITLE></HEAD>
+<BODY BGCOLOR="#eeeeee">
+<table width="100%" border=0 cellspacing=0 cellpadding=1 bgcolor="#aaaaaa"><tr valign=bottom><td><a href="nel-config.in?sortby=log"><IMG SRC="http://www.nevrax.org/inc/img/picto-up.gif" ALT="[BACK]" BORDER="0" WIDTH="14" HEIGHT="13"></a> <b>Return to <A HREF="nel-config.in?sortby=log">nel-config.in</A>
+ CVS log</b> <IMG SRC="http://www.nevrax.org/inc/img/picto-news.gif" ALT="[TXT]" BORDER="0" WIDTH="13" HEIGHT="15"></td><td align=right><IMG SRC="http://www.nevrax.org/inc/img/picto-dir.gif" ALT="[DIR]" BORDER="0" WIDTH="15" HEIGHT="13"> <b>Up to <a href="/cvs/cvsweb.cgi/?sortby=log">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?sortby=log">code</a> / <a href="/cvs/cvsweb.cgi/code/nel/?sortby=log">nel</a></b></td></tr></table><HR noshade><table width="100%"><tr><td bgcolor="#ffffff">File: <a href="/cvs/cvsweb.cgi/?sortby=log">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?sortby=log">code</a> / <a href="/cvs/cvsweb.cgi/code/nel/?sortby=log">nel</a> / <a href="/cvs/cvsweb.cgi/code/nel/nel-config.in?sortby=log">nel-config.in</a>&nbsp;(<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nel/nel-config.in?rev=1.1&amp;sortby=log" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nel/nel-config.in?rev=1.1','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.1</B>, <i>Wed May 2 17:11:33 2001 UTC</i> (14 months, 2 weeks ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>CVS Tags: <b>nel_0_4, demo_0_1</b><PRE>
+ADDED the nel-config.in file and the needed information to generate the nel-config script.
+</PRE>
+</td></tr></table><HR noshade><PRE>#!/bin/sh
+
+#
+# $Id: nel-config.in,v 1.1 2001/05/02 17:11:33 valignat Exp $
+#
+# nel-config
+#
+# Script printing NeL's install library/include paths and some other
+# informations like NeL's version
+#
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+
+lib_dir=@libdir@
+include_dir=@includedir@
+
+usage()
+{
+ &nbsp; &nbsp;cat &lt;&lt;EOF
+Usage: nel-config [OPTIONS] [LIBRARIES]
+Options:
+ &nbsp; [--prefix[=DIR]]
+ &nbsp; [--exec-prefix[=DIR]]
+ &nbsp; [--version]
+ &nbsp; [--libs]
+ &nbsp; [--libtool]
+ &nbsp; [--cflags]
+ &nbsp; [--without-3d]
+ &nbsp; [--without-ai]
+ &nbsp; [--without-network]
+EOF
+ &nbsp; &nbsp;exit $1
+}
+
+if test $# -eq 0
+then
+ &nbsp; &nbsp;usage 1 1&gt;&amp;2
+fi
+
+while test $# -gt 0
+do
+ &nbsp; &nbsp;case &quot;$1&quot; in
+ &nbsp; &nbsp; &nbsp; &nbsp;-*=*) optarg=`echo &quot;$1&quot; | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+ &nbsp; &nbsp; &nbsp; &nbsp;*) optarg= ;;
+ &nbsp; &nbsp;esac
+
+ &nbsp; &nbsp;case $1 in
+ &nbsp; &nbsp; &nbsp; &nbsp;--prefix=*)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;prefix=$optarg
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;local_prefix=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--prefix)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo_prefix=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--exec-prefix=*)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;exec_prefix=$optarg
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;exec_prefix_set=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;local_prefix=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--exec-prefix)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo_exec_prefix=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--version)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo @VERSION@
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;exit 0
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--cflags)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo_cflags=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--libs)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo_libs=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--libtool)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo_libtool=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--without-3d)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;without_3d=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--without-ai)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;without_ai=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;--without-net|--without-network)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;without_net=yes
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp; &nbsp; &nbsp;*)
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;usage 1 1&gt;&amp;2
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
+ &nbsp; &nbsp;esac
+ &nbsp; &nbsp;shift
+done
+
+if test &quot;$local_prefix&quot; = &quot;yes&quot;
+then
+ &nbsp; &nbsp;if test &quot;$exec_prefix_set&quot; != &quot;yes&quot;
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;exec_prefix=$prefix
+ &nbsp; &nbsp;fi
+fi
+
+if test &quot;$echo_prefix&quot; = &quot;yes&quot;
+then
+ &nbsp; &nbsp;echo $prefix
+fi
+
+if test &quot;$echo_exec_prefix&quot; = &quot;yes&quot;
+then
+ &nbsp; &nbsp;echo $exec_prefix
+fi
+
+if test &quot;$echo_cflags&quot; = &quot;yes&quot;
+then
+ &nbsp; &nbsp;cflags=&quot;-I$include_dir/&quot;
+ &nbsp; &nbsp;echo $cflags
+fi
+
+if test &quot;$echo_libs&quot; = &quot;yes&quot;
+then
+ &nbsp; &nbsp;lib_misc=&quot;-lnelmisc&quot;
+ &nbsp; &nbsp;lib_3d=&quot;-lnel3d&quot;
+ &nbsp; &nbsp;lib_ai=&quot;-lnelai&quot;
+ &nbsp; &nbsp;lib_net=&quot;-lnelnet&quot;
+
+ &nbsp; &nbsp;libs=&quot;$lib_misc&quot;
+
+ &nbsp; &nbsp;if test &quot;$without_3d&quot; != &quot;yes&quot;
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;libs=&quot;$libs $lib_3d&quot;
+ &nbsp; &nbsp;fi
+
+ &nbsp; &nbsp;if test &quot;$without_ai&quot; != &quot;yes&quot;
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;libs=&quot;$libs $lib_ai&quot;
+ &nbsp; &nbsp;fi
+
+ &nbsp; &nbsp;if test &quot;$without_net&quot; != &quot;yes&quot;
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;libs=&quot;$libs $lib_net&quot;
+ &nbsp; &nbsp;fi
+
+ &nbsp; &nbsp;echo -L@libdir@ $libs
+fi
+
+if test &quot;$echo_libtool&quot; = &quot;yes&quot;
+then
+ &nbsp; &nbsp;libtool_misc=&quot;$lib_dir/libnelmisc.la&quot;
+ &nbsp; &nbsp;libtool_3d=&quot;$lib_dir/libnel3d.la&quot;
+ &nbsp; &nbsp;libtool_ai=&quot;$lib_dir/libnelai.la&quot;
+ &nbsp; &nbsp;libtool_net=&quot;$lib_dir/libnelnet.la&quot;
+
+ &nbsp; &nbsp;libtool=&quot;$libtool_misc&quot;
+
+ &nbsp; &nbsp;if test &quot;$without_3d&quot; != &quot;yes&quot;
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;libtool=&quot;$libtool $libtool_3d&quot;
+ &nbsp; &nbsp;fi
+
+ &nbsp; &nbsp;if test &quot;$without_ai&quot; != &quot;yes&quot;
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;libtool=&quot;$libtool $libtool_ai&quot;
+ &nbsp; &nbsp;fi
+
+ &nbsp; &nbsp;if test &quot;$without_net&quot; != &quot;yes&quot;
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;libtool=&quot;$libtool $libtool_net&quot;
+ &nbsp; &nbsp;fi
+
+ &nbsp; &nbsp;echo $libtool
+fi
+
+# EOF
+</PRE> \ No newline at end of file