diff options
author | Dalibor Topic <robilad@yahoo.com> | 2006-04-17 10:21:21 +0000 |
---|---|---|
committer | Dalibor Topic <robilad@yahoo.com> | 2006-04-17 10:21:21 +0000 |
commit | f7de6be796df127b8c622de8313c104813ec72f1 (patch) | |
tree | 96ae262610892b165fe3dd0e835ba011af0d2103 /configure.ac | |
parent | f5c80ec0aca7bd5f1e95903a3ad51bcd5040b43c (diff) | |
download | classpath-f7de6be796df127b8c622de8313c104813ec72f1.tar.gz |
small fix for libtool warnings
2006-04-17 Dalibor Topic <robilad@kaffe.org>
* configure.ac:
Added CLASSPATH_CONVENIENCE substitution for convenience library LDFLAGS.
* native/fdlibm/Makefile.am,
native/jni/classpath/Makefile.am:
Don't use -module and -version-info for convenience libraries LDFLAGS.
Fixes libtool warnings.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 65b1921f0..f5e4395f7 100644 --- a/configure.ac +++ b/configure.ac @@ -33,6 +33,9 @@ esac CLASSPATH_MODULE="${cp_module} -version-info ${LIBVERSION} -no-undefined" AC_SUBST(CLASSPATH_MODULE) +CLASSPATH_CONVENIENCE="-no-undefined" +AC_SUBST(CLASSPATH_CONVENIENCE) + AC_PREREQ(2.59) AM_INIT_AUTOMAKE([1.9.0 gnu std-options tar-ustar]) AC_CONFIG_HEADERS([include/config.h]) |