source: trunk/athena/bin/athdir/configure.ac @ 24934

Revision 24934, 402 bytes checked in by geofft, 13 years ago (diff)
In athdir: * In configure.ac, add libathdir's LIBS to LIBS, not LDFLAGS. If the linker is picky about the order of objects on the command line (as Natty's appears to be), this fixes a FTBFS.
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT
3AC_CONFIG_SRCDIR([athdir.c])
4
5AC_PROG_CC
6AC_PROG_INSTALL
7AC_PROG_MKDIR_P
8
9PKG_CHECK_MODULES([ATHDIR], [athdir])
10
11AC_MSG_NOTICE([Adding athdir CFLAGS ${ATHDIR_CFLAGS}])
12CFLAGS="${ATHDIR_CFLAGS} ${CFLAGS}"
13AC_MSG_NOTICE([Adding athdir LDFLAGS ${ATHDIR_LIBS}])
14LIBS="${ATHDIR_LIBS} ${LIBS}"
15
16AC_CONFIG_FILES([Makefile])
17AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.