Changed to libtool's interface vs. release versioning

make install works


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2676 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 1999-06-05 20:42:19 +00:00
parent dbf3cd7a2b
commit 2b6f061f0a
6 changed files with 65 additions and 17 deletions

View file

@ -36,7 +36,7 @@ while test $# -gt 0; do
echo $exec_prefix
;;
--version)
echo @WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@
echo @WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@.@WX_RELEASE_NUMBER@
;;
--cflags)
if test @includedir@ != /usr/include ; then
@ -44,14 +44,14 @@ while test $# -gt 0; do
includes=-I@includedir@
fi
fi
includes="$includes -I@datadir@/@PACKAGE@/include"
includes="$includes -I@libdir@/wx/include"
echo $includes @WXDEBUG_DEFINE@ @TOOLKIT_DEF@ @TOOLKIT_INCLUDE@
;;
--libs)
if test @libdir@ != /usr/lib ; then
libs="-L@libdir@"
fi
echo $libs -lwx_@WX_LIBRARY@ @EXTRA_LIBS@
echo $libs -l@WX_LIBRARY@ @EXTRA_LIBS@
;;
*)
echo "${usage}" 1>&2