Changeset 891 for trunk/auto-reply
- Timestamp:
- 01/29/00 03:12:03 (9 years ago)
- Location:
- trunk/auto-reply
- Files:
-
- 3 modified
-
config.h.in (modified) (1 diff)
-
configure.in (modified) (1 diff)
-
src/Makefile.am (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/auto-reply/config.h.in
r794 r891 62 62 #undef HAVE_SYS_TIME_H 63 63 64 /* Define if you have the stdc++ library (-lstdc++). */65 #undef HAVE_LIBSTDC__66 67 64 /* Name of package */ 68 65 #undef PACKAGE -
trunk/auto-reply/configure.in
r829 r891 62 62 AC_LANG_CPLUSPLUS 63 63 64 AC_CHECK_LIB(stdc++, getc,,65 AC_MSG_ERROR(You need to have libstdc++ installed))66 64 AC_CHECK_HEADER(vector.h,, 67 65 AC_MSG_ERROR(You need to have the libstdc++ headers installed)) -
trunk/auto-reply/src/Makefile.am
r794 r891 1 1 #HACK, FIXME this in a clean manner 2 libdir = $(prefix)/lib/licq /2 libdir = $(prefix)/lib/licq 3 3 plugindir = $(libdir) 4 4 licq_incdir = @LICQ_INCLUDES@ 5 6 5 7 6 INCLUDES = -Wall -fno-rtti -fno-exceptions -I$(srcdir) -I$(licq_incdir) … … 14 13 15 14 licq_autoreply_la_LDFLAGS = -s -module -avoid-version -rpath $(plugindir) 16 licq_autoreply_la_LIBADD =17 15
