1
1

* add configure-found libs to the AIX timer component's library dependencies

* add missing return statement from aix timer component open function

This should go to the 1.0 branch.

This commit was SVN r7803.
Этот коммит содержится в:
Brian Barrett 2005-10-18 20:07:50 +00:00
родитель 3a7efaf4d9
Коммит 1af9a68956
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -21,6 +21,7 @@ noinst_LTLIBRARIES = libmca_timer_aix.la
libmca_timer_aix_la_SOURCES = \
timer_aix.h \
timer_aix_component.c
libmca_timer_aix_la_LIBADD = $(timer_aix_LIBS)
EXTRA_DIST = \
$(doc_DATA)

Просмотреть файл

@ -66,4 +66,6 @@ opal_timer_aix_open(void)
opal_timer_aix_freq_mhz = 0;
opal_timer_aix_freq = 0;
#endif
return OPAL_SUCCESS;
}