This is the mail archive of the sid@sources.redhat.com mailing list for the SID project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: configury tweak


I just committed the following patch.  Approved by fche off list.

Thanks,

AG


2003-05-06  Anthony Green  <green@redhat.com>

	* configure.in: The "clog" symbol is found in both libm and old
	versions of libstdc++.  We want the one in libstdc++.  Reorder the
	library tests to place -lm after -lstdc++.
	* configure: Rebuilt.


Index: sid/component/configure.in
===================================================================
RCS file: /cvs/cvsfiles/devo/sid/component/configure.in,v
retrieving revision 1.43.2.2
diff -c -r1.43.2.2 configure.in
*** configure.in	2002/12/11 22:02:32	1.43.2.2
--- configure.in	2003/05/06 17:08:06
***************
*** 18,25 ****
  AC_HEADER_STDC
  AC_HEADER_TIME
  
- AC_CHECK_LIB(stdc++, main)
  AC_CHECK_LIB(m, main)
  
  dnl For lcd component only.
  dnl Check if we can link curses programs without libtermcap.
--- 18,25 ----
  AC_HEADER_STDC
  AC_HEADER_TIME
  
  AC_CHECK_LIB(m, main)
+ AC_CHECK_LIB(stdc++, main)
  
  dnl For lcd component only.
  dnl Check if we can link curses programs without libtermcap.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]